From 696f6414c0492de93384ce7b7847b73d62e0e46e Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Thu, 10 Sep 2026 14:27:50 +1000 Subject: [PATCH 01/19] update acr to api version 2026-09-01-preview --- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 98d834ad7f5..43a9907deda 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -31,7 +31,7 @@ azure-mgmt-cdn==12.0.0 azure-mgmt-cognitiveservices==15.0.0b4 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 -azure-mgmt-containerregistry==15.1.0b2 +azure-mgmt-containerregistry==15.1.0b3 azure-mgmt-containerregistrytasks==1.0.0b1 azure-mgmt-containerservice==41.6.0 azure-mgmt-core==1.6.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index b69fe9c2582..d4e16253639 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -31,7 +31,7 @@ azure-mgmt-cdn==12.0.0 azure-mgmt-cognitiveservices==15.0.0b4 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 -azure-mgmt-containerregistry==15.1.0b2 +azure-mgmt-containerregistry==15.1.0b3 azure-mgmt-containerregistrytasks==1.0.0b1 azure-mgmt-containerservice==41.6.0 azure-mgmt-core==1.6.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 8944cbb9483..9c82e9488d2 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -31,7 +31,7 @@ azure-mgmt-cdn==12.0.0 azure-mgmt-cognitiveservices==15.0.0b4 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 -azure-mgmt-containerregistry==15.1.0b2 +azure-mgmt-containerregistry==15.1.0b3 azure-mgmt-containerregistrytasks==1.0.0b1 azure-mgmt-containerservice==41.6.0 azure-mgmt-core==1.6.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 6279aa819f4..dc0ad9e344b 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -78,7 +78,7 @@ 'azure-mgmt-cognitiveservices==15.0.0b4', # 15.0.0b4 version supports compute operations which is in PrPr, pls don't remove it without consulting our team 'azure-mgmt-compute~=34.1.0', 'azure-mgmt-containerinstance==10.2.0b1', - 'azure-mgmt-containerregistry==15.1.0b2', + 'azure-mgmt-containerregistry==15.1.0b3', 'azure-mgmt-containerregistrytasks==1.0.0b1', 'azure-mgmt-containerservice~=41.6.0', 'azure-mgmt-cosmosdb==10.0.0', From fd028695aa2da803bb38cad9db732ce849d6a2da Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Thu, 10 Sep 2026 20:11:48 +1000 Subject: [PATCH 02/19] test(acr): delete task role assignments by ID Capture the IDs returned by role assignment creation and use them for cleanup. Avoid enumerating unrelated inherited assignments, which can exceed the recorder's 128 KiB response limit. --- .../tests/latest/test_acr_task_abac_commands.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_task_abac_commands.py b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_task_abac_commands.py index a74c9922c1b..88e1d60ac71 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_task_abac_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_task_abac_commands.py @@ -248,8 +248,9 @@ def test_acr_rbac_auto_task(self): if os.environ.get(ENV_LIVE_TEST, False): time.sleep(30) with mock.patch('azure.cli.command_modules.role.custom._gen_guid', side_effect=self.create_guid): - self.cmd('role assignment create --role "Container Registry Repository Contributor" --assignee {principal_id} --scope {registry_resource_id}', - checks=[self.check('principalId', '{principal_id}')]) + response = self.cmd('role assignment create --role "Container Registry Repository Contributor" --assignee {principal_id} --scope {registry_resource_id}', + checks=[self.check('principalId', '{principal_id}')]).get_output_in_json() + self.kwargs['repository_contributor_assignment_id'] = response['id'] # Wait for the role assignment to propagate if os.environ.get(ENV_LIVE_TEST, False): @@ -261,8 +262,9 @@ def test_acr_rbac_auto_task(self): # Assign Control Plane permissions with mock.patch('azure.cli.command_modules.role.custom._gen_guid', side_effect=self.create_guid): - self.cmd('role assignment create --role "AcrPush" --assignee {principal_id} --scope {registry_resource_id}', - checks=[self.check('principalId', '{principal_id}')]) + response = self.cmd('role assignment create --role "AcrPush" --assignee {principal_id} --scope {registry_resource_id}', + checks=[self.check('principalId', '{principal_id}')]).get_output_in_json() + self.kwargs['acr_push_assignment_id'] = response['id'] # Wait for the role assignment to propagate if os.environ.get(ENV_LIVE_TEST, False): @@ -282,9 +284,9 @@ def test_acr_rbac_auto_task(self): self.check('credentials.sourceRegistry.identity', '{identity}'), self.check('credentials.sourceRegistry.loginMode', '{auth_mode}')]) - # Remove role assignement - self.cmd('role assignment delete --role "AcrPush" --assignee {principal_id} --scope {registry_resource_id}', expect_failure=False) - self.cmd('role assignment delete --role "Container Registry Repository Contributor" --assignee {principal_id} --scope {registry_resource_id}', expect_failure=False) + # Delete by ID to avoid recording unrelated inherited role assignments. + self.cmd('role assignment delete --ids {acr_push_assignment_id}', expect_failure=False) + self.cmd('role assignment delete --ids {repository_contributor_assignment_id}', expect_failure=False) if os.environ.get(ENV_LIVE_TEST, False): time.sleep(45) From 3b0396c661b25b7fed062875bf5e98df955384b7 Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Thu, 10 Sep 2026 20:12:07 +1000 Subject: [PATCH 03/19] test(acr): check home zone redundancy after geo-replication creation Move the existing home-replication assertion after the first geo-replication is created, matching the observed service lifecycle. Preserve all zone redundancy assertions without adding retries or changing CLI behavior. --- .../command_modules/acr/tests/latest/test_acr_commands.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_commands.py b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_commands.py index 96af7fbc4aa..b16d9e88567 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_commands.py @@ -935,15 +935,16 @@ def test_acr_with_zone_redundancy(self, resource_group, resource_group_location) self.kwargs["home_location"] = result["location"] - self.cmd('acr replication show --name {home_location} --registry {registry_2} --resource-group {rg}', - checks=[self.check('zoneRedundancy', 'Enabled')]) - self.cmd('acr replication create --registry {registry_1} -g {rg} --location {location_2} --zone-redundancy Enabled', checks=[self.check('zoneRedundancy', 'Enabled')]) self.cmd('acr replication create --registry {registry_2} -g {rg} --location {location_2}', checks=[self.check('zoneRedundancy', 'Disabled')]) + # The home replication is created with the first geo-replication. + self.cmd('acr replication show --name {home_location} --registry {registry_2} --resource-group {rg}', + checks=[self.check('zoneRedundancy', 'Enabled')]) + self.cmd('acr replication create --registry {registry_2} -g {rg} --location {location_3} --zone-redundancy Disabled', checks=[self.check('zoneRedundancy', 'Disabled')]) From 9531cd70f3c2d1c9ef767847b09d875fc4418681 Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Thu, 10 Sep 2026 20:23:31 +1000 Subject: [PATCH 04/19] test(acr): refresh recordings for SDK 15.1.0b3 --- .../recordings/test_acr_abac_build.yaml | 306 +- .../latest/recordings/test_acr_abac_run.yaml | 304 +- .../latest/recordings/test_acr_abac_task.yaml | 1067 ++-- .../latest/recordings/test_acr_agentpool.yaml | 1502 +++--- .../latest/recordings/test_acr_cache.yaml | 518 +- .../test_acr_cache_managed_identity.yaml | 366 +- .../test_acr_connectedregistry.yaml | 4302 +++++++++-------- ...gistry_dedicated_endpoint_not_enabled.yaml | 373 +- .../recordings/test_acr_create_abac.yaml | 394 +- .../recordings/test_acr_create_normal.yaml | 158 +- .../test_acr_create_normal_check_health.yaml | 453 +- .../test_acr_create_replication.yaml | 805 ++- .../recordings/test_acr_create_webhook.yaml | 427 +- .../test_acr_create_with_audits.yaml | 118 +- .../test_acr_create_with_data_endpoint.yaml | 267 + ...h_domain_name_label_scope_name_in_use.yaml | 38 +- ..._domain_name_label_scope_tenant_reuse.yaml | 376 +- ..._acr_create_with_dual_stack_endpoints.yaml | 267 + ...test_acr_create_with_managed_registry.yaml | 382 +- ..._create_with_metadata_search_disabled.yaml | 406 +- ...r_create_with_metadata_search_enabled.yaml | 440 +- ...eate_with_regional_endpoints_disabled.yaml | 100 +- ...reate_with_regional_endpoints_enabled.yaml | 154 +- ...writable_cache_repos_default_disabled.yaml | 1823 +++++++ ...ate_with_writable_cache_repos_enabled.yaml | 1511 ++++++ .../test_acr_encryption_with_cmk.yaml | 372 +- .../recordings/test_acr_export_policy.yaml | 192 +- .../latest/recordings/test_acr_identity.yaml | 1294 ++--- .../recordings/test_acr_import_no_wait.yaml | 61 +- ...st_acr_import_with_regional_endpoints.yaml | 316 +- .../latest/recordings/test_acr_login.yaml | 56 +- .../test_acr_login_expose_token.yaml | 73 +- .../recordings/test_acr_network_rule.yaml | 425 +- .../recordings/test_acr_rbac_auto_task.yaml | 1044 ++-- .../latest/recordings/test_acr_task.yaml | 736 +-- .../latest/recordings/test_acr_taskrun.yaml | 146 +- .../test_acr_with_anonymous_pull.yaml | 138 +- ...est_acr_with_dedicated_data_endpoints.yaml | 253 +- .../test_acr_with_dual_stack_endpoints.yaml | 164 + .../test_acr_with_private_endpoint.yaml | 774 +-- .../test_acr_with_public_network_access.yaml | 108 +- ...r_with_public_network_access_disabled.yaml | 84 +- .../test_acr_with_zone_redundancy.yaml | 752 +-- .../test_check_name_availability.yaml | 10 +- ...est_check_name_availability_dnl_scope.yaml | 12 +- .../test_repository_token_create.yaml | 680 ++- 46 files changed, 13737 insertions(+), 10810 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_data_endpoint.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_dual_stack_endpoints.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dual_stack_endpoints.yaml diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_build.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_build.yaml index f28bc67810d..e6f0567dbae 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_build.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_build.yaml @@ -11,36 +11,38 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://graph.microsoft.com/v1.0/me response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity","businessPhones":["+1 - (425) 4219965"],"displayName":"Clark Porter","givenName":"Clark","jobTitle":"SENIOR - SOFTWARE ENGINEER","mail":"test@example.com","mobilePhone":null,"officeLocation":"HOME - OFFICE","preferredLanguage":null,"surname":"Porter","userPrincipalName":"test@example.com","id":"68abb7a6-9056-4d60-bf87-3b50a45559cd"}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity","businessPhones":[],"displayName":"Nihal + Varadachari","givenName":"Nihal","jobTitle":"Software Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"MELBOURNE-FRESH","preferredLanguage":null,"surname":"Varadachari","userPrincipalName":"test@example.com","id":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35"}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - - '405' + - '397' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:09 GMT + - Thu, 10 Sep 2026 06:54:23 GMT odata-version: - '4.0' request-id: - - 03803039-39c0-4653-8cbb-05332e32391c + - f5871edb-829a-40d8-a749-bf1e09cd2a2d strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF00011248"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF0000548F"}}' x-ms-resource-unit: - '1' status: @@ -65,23 +67,23 @@ interactions: ParameterSetName: - -n -g -l --sku --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:10.6607722+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:38:10.6607722Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879372+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879766+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:25.7952884Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:33.9658592+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:33.9659001+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:16 GMT + - Thu, 10 Sep 2026 06:54:33 GMT expires: - '-1' pragma: @@ -93,13 +95,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cb201c52-c311-4fed-ac63-15b5cc4eadb3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ad854220-a402-4230-a175-713cb0e082c2 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 94C1E782E29A4399BA9C2B45BFEE7421 Ref B: BY1AA1072316054 Ref C: 2026-03-24T01:38:10Z' + - 'Ref A: 2C7C9234BE174C75BB5CCF2DDF794491 Ref B: SYD281080711031 Ref C: 2026-09-10T06:54:23Z' status: code: 200 message: OK @@ -117,21 +119,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:10.6607722Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbmvrnh3db4pco5dttt6deqxujjmbq545loyn5zs3uxgulgwi7vqcuropsltrkwhtk/providers/Microsoft.ContainerRegistry/registries/clirega6yybw2wzc4r6x","name":"clirega6yybw2wzc4r6x","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}}]}' headers: cache-control: - no-cache content-length: - - '2777' + - '3999' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:18 GMT + - Thu, 10 Sep 2026 06:54:34 GMT expires: - '-1' pragma: @@ -145,7 +147,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2E01C1B24D9F42DAB4A4F1E61FB32166 Ref B: BY1AA1072316042 Ref C: 2026-03-24T01:38:17Z' + - 'Ref A: 3C93AEA87469482699CD57A6C7C55FF1 Ref B: SYD281080709023 Ref C: 2026-09-10T06:54:34Z' status: code: 200 message: OK @@ -163,23 +165,23 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:10.6607722+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:38:10.6607722Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879372+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879766+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:25.7952884Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:33.9658592+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:33.9659001+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:17 GMT + - Thu, 10 Sep 2026 06:54:35 GMT expires: - '-1' pragma: @@ -193,7 +195,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0517B2AFF51D40CAB5A6A475BADBC4BF Ref B: BY1AA1072318060 Ref C: 2026-03-24T01:38:18Z' + - 'Ref A: C7C01501D1144852958AF7E14CF42089 Ref B: SYD281080712062 Ref C: 2026-09-10T06:54:35Z' status: code: 200 message: OK @@ -218,12 +220,12 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T01:38:18+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:18.4760135+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-09-10T06:54:37+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:37.0745035+00:00"}}' headers: cache-control: - no-cache @@ -232,7 +234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:17 GMT + - Thu, 10 Sep 2026 06:54:36 GMT expires: - '-1' pragma: @@ -244,13 +246,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8b71d6ba-fdf2-4bba-b221-d472bc6ec257 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b14d3eba-37f1-4427-b68e-212ef60b03af x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: B00F4722D6874F62B2F43034FFAA827B Ref B: BY1AA1072315025 Ref C: 2026-03-24T01:38:18Z' + - 'Ref A: 45A3375CA494494BBED8C4A9F3265949 Ref B: SYD281080707062 Ref C: 2026-09-10T06:54:36Z' status: code: 200 message: OK @@ -268,21 +270,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T01:38:18+00:00","runType":"QuickRun","createTime":"2026-03-24T01:38:18.5764389+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:18.4760135+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Running","lastUpdatedTime":"2026-09-10T06:54:37+00:00","runType":"QuickRun","createTime":"2026-09-10T06:54:37.1242652+00:00","startTime":"2026-09-10T06:54:37.5237627+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:37.0745035+00:00"}}' headers: cache-control: - no-cache content-length: - - '668' + - '717' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:18 GMT + - Thu, 10 Sep 2026 06:54:37 GMT expires: - '-1' pragma: @@ -294,11 +296,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b7139107-507c-4a39-b389-9f7a32d57276 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ea7d4db5-bee3-4873-9b66-ce297bf6a257 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 0EE761366B094E0BB7D1A04B8831EBFC Ref B: BY1AA1072320052 Ref C: 2026-03-24T01:38:18Z' + - 'Ref A: 40E05E6CFDFC4AC8A03A092B788F46B8 Ref B: SYD281080712062 Ref C: 2026-09-10T06:54:37Z' status: code: 200 message: OK @@ -316,13 +318,13 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-03-24T01:38:35+00:00","runType":"QuickRun","createTime":"2026-03-24T01:38:18.5764389+00:00","startTime":"2026-03-24T01:38:18.8650802+00:00","finishTime":"2026-03-24T01:38:35.1444105+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed - during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:18.4760135+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-09-10T06:54:53+00:00","runType":"QuickRun","createTime":"2026-09-10T06:54:37.1242652+00:00","startTime":"2026-09-10T06:54:37.5237627+00:00","finishTime":"2026-09-10T06:54:53.8671489+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed + during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:37.0745035+00:00"}}' headers: cache-control: - no-cache @@ -331,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:48 GMT + - Thu, 10 Sep 2026 06:55:08 GMT expires: - '-1' pragma: @@ -343,11 +345,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/10371fb4-1776-46dd-b0ff-eba4ef5a49a7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/1f34b0e8-185f-4443-b7a8-255abbf989f3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EA8A147BBB5D4F0B876EE48A117DA41C Ref B: BY1AA1072318029 Ref C: 2026-03-24T01:38:48Z' + - 'Ref A: 0F654411C28945BB8415BE49D32A5568 Ref B: SYD281080710060 Ref C: 2026-09-10T06:55:08Z' status: code: 200 message: OK @@ -365,40 +367,44 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2768abb7a6-9056-4d60-bf87-3b50a45559cd%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%274b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '92' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:49 GMT + - Thu, 10 Sep 2026 06:55:10 GMT odata-version: - '4.0' request-id: - - 40b44183-252f-4943-b39a-7f831ca3b487 + - e3eca9d1-2f75-4305-bb7b-8072cf195902 strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"PH2PEPF00003463"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF00005C26"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["68abb7a6-9056-4d60-bf87-3b50a45559cd"], "types": ["user", "group", + body: '{"ids": ["4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -416,38 +422,40 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.user","id":"68abb7a6-9056-4d60-bf87-3b50a45559cd","businessPhones":["+1 - (425) 4219965"],"displayName":"Clark Porter","givenName":"Clark","jobTitle":"SENIOR - SOFTWARE ENGINEER","mail":"test@example.com","mobilePhone":null,"officeLocation":"HOME - OFFICE","preferredLanguage":null,"surname":"Porter","userPrincipalName":"test@example.com"}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.user","id":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","businessPhones":[],"displayName":"Nihal + Varadachari","givenName":"Nihal","jobTitle":"Software Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"MELBOURNE-FRESH","preferredLanguage":null,"surname":"Varadachari","userPrincipalName":"test@example.com"}]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - - '458' + - '450' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:49 GMT + - Thu, 10 Sep 2026 06:55:12 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - f9aa67ed-22a8-45bd-b8df-1381d8d0ae34 + - 1cdb93dd-9b49-4e4d-9143-3b54a7f36ca9 strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"002","RoleInstance":"PH3PEPF000273E6"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SY3PEPF0001CB59"}}' x-ms-resource-unit: - '3' status: @@ -467,9 +475,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27 response: body: string: '{"value":[{"properties":{"roleName":"Container Registry Repository @@ -484,7 +492,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:49 GMT + - Thu, 10 Sep 2026 06:55:12 GMT expires: - '-1' pragma: @@ -496,17 +504,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/af721914-cad8-4a28-91a4-c94364c368af + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/53a9b3af-e6a1-4b49-86b7-b0b73f1f12af x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4EE1D7CE1F294E8483EA4BCE0DE3ACA4 Ref B: SJC211051203051 Ref C: 2026-03-24T01:38:49Z' + - 'Ref A: 2E29E7410B034A678B92432BF3229869 Ref B: SYD281080711052 Ref C: 2026-09-10T06:55:12Z' status: code: 200 message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c", - "principalId": "68abb7a6-9056-4d60-bf87-3b50a45559cd", "principalType": "User"}}' + "principalId": "4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35", "principalType": "User"}}' headers: Accept: - application/json @@ -523,12 +531,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"68abb7a6-9056-4d60-bf87-3b50a45559cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T01:38:50.0080366Z","updatedOn":"2026-03-24T01:38:50.1720388Z","createdBy":null,"updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T06:55:13.9260189Z","updatedOn":"2026-09-10T06:55:14.2310309Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -537,7 +545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:38:50 GMT + - Thu, 10 Sep 2026 06:55:16 GMT expires: - '-1' pragma: @@ -549,13 +557,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/faa137e4-54f2-4447-afa1-21dbed038e08 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/97fbfb1f-58bb-4bef-a59a-e932f2012022 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 06A166D5F83444BE8B0AA9D03642FFAE Ref B: BY1AA1072320029 Ref C: 2026-03-24T01:38:49Z' + - 'Ref A: 087FF686E6E24254B978C9608106C108 Ref B: SYD281080712034 Ref C: 2026-09-10T06:55:13Z' status: code: 201 message: Created @@ -573,21 +581,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:10.6607722Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmzxhvaxbvfweafu6mxpab3rfgeg6sygd6qd5yl5d7ne6wqhxgvw2j2k2vubcouidl/providers/Microsoft.ContainerRegistry/registries/cliregtk6ob55if3mmei","name":"cliregtk6ob55if3mmei","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2777' + - '4001' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:39:35 GMT + - Thu, 10 Sep 2026 06:56:01 GMT expires: - '-1' pragma: @@ -601,7 +609,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D583685C93B14BD5894D2F0B5185CFDB Ref B: SJC211051203051 Ref C: 2026-03-24T01:39:36Z' + - 'Ref A: 1EC8E203B0AA4EFB991D9ACC79CE27B0 Ref B: SYD281080706062 Ref C: 2026-09-10T06:56:01Z' status: code: 200 message: OK @@ -619,23 +627,23 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:10.6607722+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:38:10.6607722Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879372+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879766+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:25.7952884Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:33.9658592+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:33.9659001+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:39:35 GMT + - Thu, 10 Sep 2026 06:56:02 GMT expires: - '-1' pragma: @@ -649,7 +657,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 19BCB2FE5648431DBD1F020DF11A2EF3 Ref B: BY1AA1072320029 Ref C: 2026-03-24T01:39:36Z' + - 'Ref A: E6EAB15D8EF14923A96D78D05BC7F1C1 Ref B: SYD281080708052 Ref C: 2026-09-10T06:56:02Z' status: code: 200 message: OK @@ -674,12 +682,12 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T01:39:36+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:39:36.5329918+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-09-10T06:56:03+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:03.6181641+00:00"}}' headers: cache-control: - no-cache @@ -688,7 +696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:39:36 GMT + - Thu, 10 Sep 2026 06:56:03 GMT expires: - '-1' pragma: @@ -700,13 +708,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/0127e761-4fd7-484a-9dfe-ce1a4d441177 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c5960ebb-549a-405b-9bc5-bef8336472ed x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 7B5ED62AB8A64962A727AFF019A2B682 Ref B: BY1AA1072319034 Ref C: 2026-03-24T01:39:36Z' + - 'Ref A: E009C3D3A0B544ECB0906E60CB2EB9FA Ref B: SYD281080710060 Ref C: 2026-09-10T06:56:03Z' status: code: 200 message: OK @@ -724,21 +732,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T01:39:36+00:00","runType":"QuickRun","createTime":"2026-03-24T01:39:36.6170831+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:39:36.5329918+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Running","lastUpdatedTime":"2026-09-10T06:56:03+00:00","runType":"QuickRun","createTime":"2026-09-10T06:56:03.691382+00:00","startTime":"2026-09-10T06:56:03.9804726+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:03.6181641+00:00"}}' headers: cache-control: - no-cache content-length: - - '668' + - '716' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:39:36 GMT + - Thu, 10 Sep 2026 06:56:04 GMT expires: - '-1' pragma: @@ -750,11 +758,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a6a8ee4e-0dbe-481f-a032-5f8eb6195d06 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e7545c41-017c-41f2-99aa-2b0fd1297072 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7CD0551C485A4AB796A9958FA6C928C2 Ref B: BY1AA1072318034 Ref C: 2026-03-24T01:39:36Z' + - 'Ref A: 91E3D4836BEE4F40B4FFE691D1FA58C6 Ref B: SYD281080707052 Ref C: 2026-09-10T06:56:04Z' status: code: 200 message: OK @@ -772,21 +780,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-03-24T01:39:56+00:00","runType":"QuickRun","createTime":"2026-03-24T01:39:36.6170831+00:00","startTime":"2026-03-24T01:39:36.8563422+00:00","finishTime":"2026-03-24T01:39:56.6293377+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"myimage","tag":"tag","digest":"sha256:c44e879aa6de337f9a07e072eaaf8215092c13c65a952fa40a41091d74fd77c8"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:39:36.5329918+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:56:23+00:00","runType":"QuickRun","createTime":"2026-09-10T06:56:03.691382+00:00","startTime":"2026-09-10T06:56:03.9804726+00:00","finishTime":"2026-09-10T06:56:23.4977186+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"myimage","tag":"tag","digest":"sha256:23bec6635a023a96fb562bc9e7926ca7728064a5c817c300e060dc0ae5e49d6a"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:03.6181641+00:00"}}' headers: cache-control: - no-cache content-length: - - '942' + - '941' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:06 GMT + - Thu, 10 Sep 2026 06:56:34 GMT expires: - '-1' pragma: @@ -798,11 +806,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ea48ab4c-cb6c-47e5-ad9a-efe0492e0639 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/520f3bec-b4bb-41ad-9a35-c4e8023501d7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2FBF98894C57403CBA97ACF7CE7373AC Ref B: SJC211051205031 Ref C: 2026-03-24T01:40:07Z' + - 'Ref A: C79EEB11940A4F3D86F650036499CC32 Ref B: SYD281080710054 Ref C: 2026-09-10T06:56:34Z' status: code: 200 message: OK @@ -820,23 +828,23 @@ interactions: ParameterSetName: - -n -g --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:10.6607722+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:38:10.6607722Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879372+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879766+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:25.7952884Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:33.9658592+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:33.9659001+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:07 GMT + - Thu, 10 Sep 2026 06:56:35 GMT expires: - '-1' pragma: @@ -850,7 +858,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B2459851AAF6468FA555AC7A82F310E4 Ref B: BY1AA1072317031 Ref C: 2026-03-24T01:40:07Z' + - 'Ref A: E469CFDD54D045B1AEE9212F9C7E6369 Ref B: SYD281080707062 Ref C: 2026-09-10T06:56:36Z' status: code: 200 message: OK @@ -872,23 +880,23 @@ interactions: ParameterSetName: - -n -g --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:07.9238261+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:38:10.6607722Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879372+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879766+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:38.1799697+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:25.7952884Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:33.9658592+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:33.9659001+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:07 GMT + - Thu, 10 Sep 2026 06:56:37 GMT expires: - '-1' pragma: @@ -900,13 +908,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5250169c-069a-4876-ade7-6dde60740982 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/06dc63b4-bc6c-4be8-a888-e48f7edd4f8a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 337305F774DD421A9D856F42165CA7B5 Ref B: BY1AA1072317052 Ref C: 2026-03-24T01:40:07Z' + - 'Ref A: DE694E0A8FF1422293335AF3DFF2C14E Ref B: SYD281080706062 Ref C: 2026-09-10T06:56:36Z' status: code: 200 message: OK @@ -924,21 +932,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --auth-mode --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:38:10.6607722Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmzxhvaxbvfweafu6mxpab3rfgeg6sygd6qd5yl5d7ne6wqhxgvw2j2k2vubcouidl/providers/Microsoft.ContainerRegistry/registries/cliregtk6ob55if3mmei","name":"cliregtk6ob55if3mmei","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2777' + - '4001' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:07 GMT + - Thu, 10 Sep 2026 06:56:38 GMT expires: - '-1' pragma: @@ -952,7 +960,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 666F327D976B4CE682F4B005DCE3FAA0 Ref B: SJC211051203031 Ref C: 2026-03-24T01:40:08Z' + - 'Ref A: 796A43C180B84AA09E20071F705B0996 Ref B: SYD281080710062 Ref C: 2026-09-10T06:56:38Z' status: code: 200 message: OK @@ -970,23 +978,23 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --auth-mode --image --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:07.9238261+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:38:10.6607722Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879372+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879766+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:38.1799697+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:25.7952884Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:33.9658592+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:33.9659001+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:08 GMT + - Thu, 10 Sep 2026 06:56:39 GMT expires: - '-1' pragma: @@ -1000,7 +1008,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FE65B0713B374E8898AF9F033DF851C8 Ref B: SJC211051201025 Ref C: 2026-03-24T01:40:08Z' + - 'Ref A: 4780FA2C1B074CB9AB63F0235BD9719C Ref B: SYD281080707031 Ref C: 2026-09-10T06:56:39Z' status: code: 200 message: OK @@ -1020,27 +1028,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:38:10.6607722+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:07.9238261+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:38:10.6607722Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879372+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:38:17.5879766+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:38.1799697+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:25.7952884Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:33.9658592+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:33.9659001+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:08 GMT + - Thu, 10 Sep 2026 06:56:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-6411e140-2722-11f1-8b6d-70a8a51b6037?api-version=2026-03-01-preview&t=639099132091444060&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Hm6zEGQWL4m0RZLuf7mmV2n8C1F_alaLCt_jlwO5ztgDoBbJZgZQyfMNfavXXcAxb6oYvZW85EWn8PcjfQB3qMyL9ciD605WZVl6GikivHFZaDKwNSoNIeneFTrbtoXlwGUZhQizR-MnSaLsst8xjqr461AP9EJ7J5-sP-ySP24fDqtd6PbX3qUZHSLdTQVXVPVkETiUcEQ3rnxXRsECGsDaq_I04F9n6ml0gXsLIni9foHjUMxfR3uF6sP6tap_l3DsBnTKCmP7DYEy7WpUeVG_QWNGCcGeSPjihiYSdz4iDa4w1yI5oy1dqpjdUOZ7pkc5XnCDVC3ICYjls2GI_w&h=V7RD2yWVurOlaG9gu6g_09O_zoz_VTfqD9ZjiH3zph4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-c6eef79b-ace4-11f1-9583-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202009575796&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ox2LVAowy68ZiCNlMgRqXVtQLKyGknVU4dceCfrxt8LWXpKdu2vHP1wfRLdBnj3jOwAI93keZQu5NusO5WyNVX2V7Kg0m6QsbzKxVYsHtr7OyZeY9Z7R6H5szuTFR1ElvqiuvVP0W4nVbfKUFwZsnii31SqQFCBofYIOTmPj7e4c78QvmVvV6n4NW-m-mqGwi9KF4f4bnn-qVsqWBiA9HtEExQ02BWwSt6RXXjr9Y8iPJUj9AvTMrmJDvctj-2i_igYbcE_cqQl49sTB437NUMsytdSxcncdmEcglloyj0Dw5NqIrzETaRQsplNp1I7nQHsIezmJ6MzfWXKG7jrIJQ&h=uVK8X1TiUqkiWNEBfH692XY1Yctm2tOJV1ZsotFdxHM pragma: - no-cache strict-transport-security: @@ -1050,13 +1058,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8cf52d4e-75c8-4137-bf60-53e79de70df0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/552b3cbe-c25e-4815-94d1-f143c71c6366 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 8B6CA024AB114D75931D55DAE665C796 Ref B: BY1AA1072320060 Ref C: 2026-03-24T01:40:08Z' + - 'Ref A: D5037228B1BB45429BDB1A311D77F3A9 Ref B: SYD281080707023 Ref C: 2026-09-10T06:56:40Z' status: code: 202 message: Accepted @@ -1074,9 +1082,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-6411e140-2722-11f1-8b6d-70a8a51b6037?api-version=2026-03-01-preview&t=639099132091444060&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Hm6zEGQWL4m0RZLuf7mmV2n8C1F_alaLCt_jlwO5ztgDoBbJZgZQyfMNfavXXcAxb6oYvZW85EWn8PcjfQB3qMyL9ciD605WZVl6GikivHFZaDKwNSoNIeneFTrbtoXlwGUZhQizR-MnSaLsst8xjqr461AP9EJ7J5-sP-ySP24fDqtd6PbX3qUZHSLdTQVXVPVkETiUcEQ3rnxXRsECGsDaq_I04F9n6ml0gXsLIni9foHjUMxfR3uF6sP6tap_l3DsBnTKCmP7DYEy7WpUeVG_QWNGCcGeSPjihiYSdz4iDa4w1yI5oy1dqpjdUOZ7pkc5XnCDVC3ICYjls2GI_w&h=V7RD2yWVurOlaG9gu6g_09O_zoz_VTfqD9ZjiH3zph4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-c6eef79b-ace4-11f1-9583-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202009575796&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ox2LVAowy68ZiCNlMgRqXVtQLKyGknVU4dceCfrxt8LWXpKdu2vHP1wfRLdBnj3jOwAI93keZQu5NusO5WyNVX2V7Kg0m6QsbzKxVYsHtr7OyZeY9Z7R6H5szuTFR1ElvqiuvVP0W4nVbfKUFwZsnii31SqQFCBofYIOTmPj7e4c78QvmVvV6n4NW-m-mqGwi9KF4f4bnn-qVsqWBiA9HtEExQ02BWwSt6RXXjr9Y8iPJUj9AvTMrmJDvctj-2i_igYbcE_cqQl49sTB437NUMsytdSxcncdmEcglloyj0Dw5NqIrzETaRQsplNp1I7nQHsIezmJ6MzfWXKG7jrIJQ&h=uVK8X1TiUqkiWNEBfH692XY1Yctm2tOJV1ZsotFdxHM response: body: string: '' @@ -1086,11 +1094,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:40:09 GMT + - Thu, 10 Sep 2026 06:56:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-6411e140-2722-11f1-8b6d-70a8a51b6037?api-version=2026-03-01-preview&t=639099132094469625&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KwpTPiPAPOgfGIcfSrAkgXgjN9u6l4wRxwkHFLtWw1aTIRPL00FxFBW0kVaAqBfYbXtbnaYyldbq80fzoU9DXannSrvu4ASLEAYDQH_-gQ6Ll0a9N7Ecb0qRZ32NoPNPBUKavirrJhrhi2FK-ZSkSJaCUv2kvMUNzPOSB-mGpKsCGI39sPwjxFdrnqXVZY8v0aV7rkngxSjtZkd1QhcBdgzJZu6WIuVWCcTVieVKcESJK_BBHteeYCz4aHErtpcjBPlM3E3tH4nMpqSiD_hixjl5Q51q3qp4RPh5s8DeUldCal1rI7NgOa_Xfw66f3635OVwWanBg-ZjHeLBM3n7vQ&h=zYUH3DmgBXR1Y_R-ZbEwxV7ljNGuSHLAcA8OlhQwEL4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-c6eef79b-ace4-11f1-9583-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202022414022&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=JwYaaLVOlvW46acXczSMV6ub7O0k9e3Vr28764folZ9wzTaR9BUtQWuWIPsYJ-rxh3yH-Yn0XEpBKG_NVXg5qBYHzgtgg1xnoLs8RFLMR7ylVTgDV6KD9QxTYPJhbV4aLz-d_mnbREMwulvH7dC-71wv21PpG4QBcmOeWKQQ5eSLAnwrgMD0jCfOkIzqbF-EAcN1ht7Ag6kor3ulq10mGX9gSUtwM-NXwpTPBo5JiZt3ePAaEBLWN5qLmedOsrQ30L099F1l8UaK5Ktk6wWICUzUI4i1rYnA2uN4K29kDeT0hUoPwYA1uFShuVVstQ4pkBph62MzeUhl5PfoZyuCGQ&h=3FxUKxfyn1DN3uSndO-g7rLzavZDwm8QTI7is6Y7sVk pragma: - no-cache strict-transport-security: @@ -1100,11 +1108,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/da163333-0f56-4627-8103-14ae4f1fb8dc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1537376b-9042-4404-85db-66c159a9cf8d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EA00D504377F4B899E1A88C98F576BC1 Ref B: SJC211051201019 Ref C: 2026-03-24T01:40:09Z' + - 'Ref A: DB3C4F4A03D24A5B96D919AF862C8F90 Ref B: SYD281080709025 Ref C: 2026-09-10T06:56:41Z' status: code: 202 message: Accepted @@ -1122,9 +1130,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-6411e140-2722-11f1-8b6d-70a8a51b6037?api-version=2026-03-01-preview&t=639099132094469625&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KwpTPiPAPOgfGIcfSrAkgXgjN9u6l4wRxwkHFLtWw1aTIRPL00FxFBW0kVaAqBfYbXtbnaYyldbq80fzoU9DXannSrvu4ASLEAYDQH_-gQ6Ll0a9N7Ecb0qRZ32NoPNPBUKavirrJhrhi2FK-ZSkSJaCUv2kvMUNzPOSB-mGpKsCGI39sPwjxFdrnqXVZY8v0aV7rkngxSjtZkd1QhcBdgzJZu6WIuVWCcTVieVKcESJK_BBHteeYCz4aHErtpcjBPlM3E3tH4nMpqSiD_hixjl5Q51q3qp4RPh5s8DeUldCal1rI7NgOa_Xfw66f3635OVwWanBg-ZjHeLBM3n7vQ&h=zYUH3DmgBXR1Y_R-ZbEwxV7ljNGuSHLAcA8OlhQwEL4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-c6eef79b-ace4-11f1-9583-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202022414022&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=JwYaaLVOlvW46acXczSMV6ub7O0k9e3Vr28764folZ9wzTaR9BUtQWuWIPsYJ-rxh3yH-Yn0XEpBKG_NVXg5qBYHzgtgg1xnoLs8RFLMR7ylVTgDV6KD9QxTYPJhbV4aLz-d_mnbREMwulvH7dC-71wv21PpG4QBcmOeWKQQ5eSLAnwrgMD0jCfOkIzqbF-EAcN1ht7Ag6kor3ulq10mGX9gSUtwM-NXwpTPBo5JiZt3ePAaEBLWN5qLmedOsrQ30L099F1l8UaK5Ktk6wWICUzUI4i1rYnA2uN4K29kDeT0hUoPwYA1uFShuVVstQ4pkBph62MzeUhl5PfoZyuCGQ&h=3FxUKxfyn1DN3uSndO-g7rLzavZDwm8QTI7is6Y7sVk response: body: string: '' @@ -1134,7 +1142,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:40:19 GMT + - Thu, 10 Sep 2026 06:56:53 GMT expires: - '-1' pragma: @@ -1146,11 +1154,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/89bddd3b-6dee-4425-8bab-029e8c7eb03f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c34d6fca-2687-4b2a-abb4-99ef836f4174 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 42E03EB9ACD0463C8756357696B015CE Ref B: BY1AA1072317025 Ref C: 2026-03-24T01:40:19Z' + - 'Ref A: BB2033338C8A45A4BCC20BC05887879A Ref B: SYD281080707054 Ref C: 2026-09-10T06:56:52Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_run.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_run.yaml index b413d772863..69c4c2abb85 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_run.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_run.yaml @@ -11,36 +11,38 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://graph.microsoft.com/v1.0/me response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity","businessPhones":["+1 - (425) 4219965"],"displayName":"Clark Porter","givenName":"Clark","jobTitle":"SENIOR - SOFTWARE ENGINEER","mail":"test@example.com","mobilePhone":null,"officeLocation":"HOME - OFFICE","preferredLanguage":null,"surname":"Porter","userPrincipalName":"test@example.com","id":"68abb7a6-9056-4d60-bf87-3b50a45559cd"}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity","businessPhones":[],"displayName":"Nihal + Varadachari","givenName":"Nihal","jobTitle":"Software Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"MELBOURNE-FRESH","preferredLanguage":null,"surname":"Varadachari","userPrincipalName":"test@example.com","id":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35"}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - - '405' + - '397' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:20 GMT + - Thu, 10 Sep 2026 06:56:59 GMT odata-version: - '4.0' request-id: - - 7f1363a7-f9bb-45c0-a6fb-c327cdf21973 + - 9b662492-a57b-48fc-83a4-00ecca1cc273 strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"PH2PEPF00002F78"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SY2PEPF00014B65"}}' x-ms-resource-unit: - '1' status: @@ -65,23 +67,23 @@ interactions: ParameterSetName: - -n -g -l --sku --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:22.2701311+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:40:22.2701311Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:40:33.8598285+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:40:33.859883+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:02.2809264Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210449+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210782+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:33 GMT + - Thu, 10 Sep 2026 06:57:09 GMT expires: - '-1' pragma: @@ -93,13 +95,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8c013079-f6a4-4923-b63e-bf8453b3c20a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/1d2d26c6-8543-4618-a285-890b705ae027 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 5FC5C6EE04C64CA2B6A139154A2725A5 Ref B: SJC211051205031 Ref C: 2026-03-24T01:40:21Z' + - 'Ref A: BFCD4057C13141AFAF2598ACEDFA82E3 Ref B: SYD281080705040 Ref C: 2026-09-10T06:57:00Z' status: code: 200 message: OK @@ -117,21 +119,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:22.2701311Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264Z"}}]}' headers: cache-control: - no-cache content-length: - - '2777' + - '3403' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:34 GMT + - Thu, 10 Sep 2026 06:57:10 GMT expires: - '-1' pragma: @@ -145,7 +147,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 763FCA2EF28A4CBFA838D5C79B38DDCB Ref B: BY1AA1072318034 Ref C: 2026-03-24T01:40:34Z' + - 'Ref A: B4BA339B07864F08BA53845923D510CF Ref B: SYD281080706062 Ref C: 2026-09-10T06:57:10Z' status: code: 200 message: OK @@ -163,23 +165,23 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:22.2701311+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:40:22.2701311Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:40:33.8598285+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:40:33.859883+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:02.2809264Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210449+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210782+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:34 GMT + - Thu, 10 Sep 2026 06:57:11 GMT expires: - '-1' pragma: @@ -193,7 +195,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DD816023CA804684A449DCDCC2587A25 Ref B: BY1AA1072318036 Ref C: 2026-03-24T01:40:34Z' + - 'Ref A: 5016833A2D7144F7B46ABA6E5484BB94 Ref B: SYD281080708025 Ref C: 2026-09-10T06:57:11Z' status: code: 200 message: OK @@ -218,12 +220,12 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T01:40:35+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:34.8454722+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-09-10T06:57:13+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:12.5600289+00:00"}}' headers: cache-control: - no-cache @@ -232,7 +234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:34 GMT + - Thu, 10 Sep 2026 06:57:12 GMT expires: - '-1' pragma: @@ -244,13 +246,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/9352e345-d0f9-412e-9f56-dc22a8b2fe5b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/534e59e5-e711-4cfd-806b-11a1956e08f0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 95B0C0E164884270BFD6EF0CA9EB359B Ref B: BY1AA1072315036 Ref C: 2026-03-24T01:40:34Z' + - 'Ref A: AE66C519EE16409A91B860A567D8D858 Ref B: SYD281080710023 Ref C: 2026-09-10T06:57:12Z' status: code: 200 message: OK @@ -268,12 +270,12 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Running","lastUpdatedTime":"2026-03-24T01:40:35+00:00","runType":"QuickRun","createTime":"2026-03-24T01:40:35.0077518+00:00","startTime":"2026-03-24T01:40:35.3170174+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:34.8454722+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Running","lastUpdatedTime":"2026-09-10T06:57:13+00:00","runType":"QuickRun","createTime":"2026-09-10T06:57:13.0598241+00:00","startTime":"2026-09-10T06:57:13.4609079+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:12.5600289+00:00"}}' headers: cache-control: - no-cache @@ -282,7 +284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:40:35 GMT + - Thu, 10 Sep 2026 06:57:13 GMT expires: - '-1' pragma: @@ -294,11 +296,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1ef3832c-206a-4db4-9a82-62c5ef0b8dbc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4c78cf26-9764-4b08-a081-0845a76c8561 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ED6C9D0648D142E1BAAA4312D6555747 Ref B: BY1AA1072319034 Ref C: 2026-03-24T01:40:35Z' + - 'Ref A: 4064D6600BC643D986AC9C3CB2476EE0 Ref B: SYD281080708040 Ref C: 2026-09-10T06:57:13Z' status: code: 200 message: OK @@ -316,22 +318,22 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-03-24T01:40:49+00:00","runType":"QuickRun","createTime":"2026-03-24T01:40:35.0077518+00:00","startTime":"2026-03-24T01:40:35.3170174+00:00","finishTime":"2026-03-24T01:40:49.3302445+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed - during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:34.8454722+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-09-10T06:57:23+00:00","runType":"QuickRun","createTime":"2026-09-10T06:57:13.0598241+00:00","startTime":"2026-09-10T06:57:13.4609079+00:00","finishTime":"2026-09-10T06:57:23.758882+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed + during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:12.5600289+00:00"}}' headers: cache-control: - no-cache content-length: - - '823' + - '822' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:04 GMT + - Thu, 10 Sep 2026 06:57:45 GMT expires: - '-1' pragma: @@ -343,11 +345,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/fd83bf0d-10af-495b-8c8a-d1df22aeb9f2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/a6bd6a58-b877-4954-900b-1d309785ddc9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 31C77D59CD6E421D85D16497E43F44EA Ref B: SJC211051204035 Ref C: 2026-03-24T01:41:05Z' + - 'Ref A: BE659C5F8A954A50B72FC81283A75F24 Ref B: SYD281080712042 Ref C: 2026-09-10T06:57:44Z' status: code: 200 message: OK @@ -365,40 +367,44 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2768abb7a6-9056-4d60-bf87-3b50a45559cd%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%274b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '92' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:05 GMT + - Thu, 10 Sep 2026 06:57:46 GMT odata-version: - '4.0' request-id: - - 9876ccfc-cd32-407e-9ce6-cfd0f3866117 + - 66228cdc-a77e-4ddb-af87-ba4ec1d20ae0 strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF00011248"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF0000548F"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["68abb7a6-9056-4d60-bf87-3b50a45559cd"], "types": ["user", "group", + body: '{"ids": ["4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -416,38 +422,40 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.user","id":"68abb7a6-9056-4d60-bf87-3b50a45559cd","businessPhones":["+1 - (425) 4219965"],"displayName":"Clark Porter","givenName":"Clark","jobTitle":"SENIOR - SOFTWARE ENGINEER","mail":"test@example.com","mobilePhone":null,"officeLocation":"HOME - OFFICE","preferredLanguage":null,"surname":"Porter","userPrincipalName":"test@example.com"}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.user","id":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","businessPhones":[],"displayName":"Nihal + Varadachari","givenName":"Nihal","jobTitle":"Software Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"MELBOURNE-FRESH","preferredLanguage":null,"surname":"Varadachari","userPrincipalName":"test@example.com"}]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - - '458' + - '450' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:05 GMT + - Thu, 10 Sep 2026 06:57:47 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - be87462f-4983-4bb6-92b0-888cd6fd3188 + - 314f5f8d-f2ab-4a9f-820e-68f6a20c541e strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF00011248"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SY3PEPF0001CB59"}}' x-ms-resource-unit: - '3' status: @@ -467,9 +475,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27 response: body: string: '{"value":[{"properties":{"roleName":"Container Registry Repository @@ -484,7 +492,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:05 GMT + - Thu, 10 Sep 2026 06:57:47 GMT expires: - '-1' pragma: @@ -496,17 +504,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d92272c9-314c-4e12-b442-69af1eb9cf60 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/26476868-ee68-470f-8c22-1b89778d8499 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD95D01A01094A1D8233F7E264F18541 Ref B: SJC211051205007 Ref C: 2026-03-24T01:41:06Z' + - 'Ref A: 884B168CBBB24C87BC775862B7AD8247 Ref B: SYD281080712036 Ref C: 2026-09-10T06:57:47Z' status: code: 200 message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c", - "principalId": "68abb7a6-9056-4d60-bf87-3b50a45559cd", "principalType": "User"}}' + "principalId": "4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35", "principalType": "User"}}' headers: Accept: - application/json @@ -523,12 +531,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"68abb7a6-9056-4d60-bf87-3b50a45559cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T01:41:06.7645316Z","updatedOn":"2026-03-24T01:41:06.9605305Z","createdBy":null,"updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T06:57:48.6624075Z","updatedOn":"2026-09-10T06:57:48.8244117Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -537,7 +545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:07 GMT + - Thu, 10 Sep 2026 06:57:50 GMT expires: - '-1' pragma: @@ -549,13 +557,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/e6ec1c38-e3f9-474c-aae9-4a97eb7b7c7c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/052ee076-399f-4352-87ef-47a4fdce0e7a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FD4510BC778C47F08C8E01615D770AAD Ref B: BY1AA1072319031 Ref C: 2026-03-24T01:41:06Z' + - 'Ref A: 7C5C4B1DF9AB43DBA8BC6CF2DD5C7698 Ref B: SYD281080711052 Ref C: 2026-09-10T06:57:48Z' status: code: 201 message: Created @@ -573,21 +581,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:22.2701311Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpajmznmkefukxkqfsmqooye3d7fvbbdnnhuthxyxira4x3ikxyysm3updxnhipiou/providers/Microsoft.ContainerRegistry/registries/cliregrnsa6bvrzhvq3x","name":"cliregrnsa6bvrzhvq3x","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:16.3426904Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:16.3426904Z"}}]}' headers: cache-control: - no-cache content-length: - - '2777' + - '4001' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:52 GMT + - Thu, 10 Sep 2026 06:58:35 GMT expires: - '-1' pragma: @@ -601,7 +609,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8DE3FB690FD345A9B185757093EA663A Ref B: BY1AA1072320034 Ref C: 2026-03-24T01:41:52Z' + - 'Ref A: 8CD49ED877A24F018E45103F4CB92627 Ref B: SYD281080709029 Ref C: 2026-09-10T06:58:35Z' status: code: 200 message: OK @@ -619,23 +627,23 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:22.2701311+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:40:22.2701311Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:40:33.8598285+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:40:33.859883+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:02.2809264Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210449+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210782+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:52 GMT + - Thu, 10 Sep 2026 06:58:36 GMT expires: - '-1' pragma: @@ -649,7 +657,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F0229B5F64614CC78CE778E83469EC34 Ref B: BY1AA1072315062 Ref C: 2026-03-24T01:41:53Z' + - 'Ref A: 5D424579BD6D4B439E2E0F181A9820BD Ref B: SYD281080706054 Ref C: 2026-09-10T06:58:36Z' status: code: 200 message: OK @@ -674,12 +682,12 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T01:41:53+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:41:53.3661601+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-09-10T06:58:37+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:58:37.7174521+00:00"}}' headers: cache-control: - no-cache @@ -688,7 +696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:53 GMT + - Thu, 10 Sep 2026 06:58:37 GMT expires: - '-1' pragma: @@ -700,13 +708,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/0116bd05-ae4a-4050-9dfd-96647df5073f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5661005b-d2a5-49f3-a232-f88f05521be1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2E5682CC993E482487758F38323A4A82 Ref B: SJC211051205027 Ref C: 2026-03-24T01:41:53Z' + - 'Ref A: 1C18EB11A2344337806316D3192BED05 Ref B: SYD281080711036 Ref C: 2026-09-10T06:58:37Z' status: code: 200 message: OK @@ -724,21 +732,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T01:41:53+00:00","runType":"QuickRun","createTime":"2026-03-24T01:41:53.404039+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:41:53.3661601+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Running","lastUpdatedTime":"2026-09-10T06:58:38+00:00","runType":"QuickRun","createTime":"2026-09-10T06:58:37.8242887+00:00","startTime":"2026-09-10T06:58:38.1597307+00:00","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:58:37.7174521+00:00"}}' headers: cache-control: - no-cache content-length: - - '667' + - '717' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:41:52 GMT + - Thu, 10 Sep 2026 06:58:38 GMT expires: - '-1' pragma: @@ -750,11 +758,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2b9fc409-299b-4aae-a186-90ac2457e17b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/43bd8560-1623-490d-b350-002b9ccc9fee x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D976CA762C9F49688C953FC1C26B62B1 Ref B: SJC211051201033 Ref C: 2026-03-24T01:41:53Z' + - 'Ref A: CBDD2DE69579489BBA2D23E24C58190D Ref B: SYD281080705023 Ref C: 2026-09-10T06:58:38Z' status: code: 200 message: OK @@ -772,21 +780,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-03-24T01:42:04+00:00","runType":"QuickRun","createTime":"2026-03-24T01:41:53.404039+00:00","startTime":"2026-03-24T01:41:53.6965651+00:00","finishTime":"2026-03-24T01:42:04.6808752+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"hello-world","tag":"cf2","digest":"sha256:92c7f9c92844bbbb5d0a101b22f7c2a7949e40f8ea90c8b3bc396879d95e899a"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:41:53.3661601+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:58:48+00:00","runType":"QuickRun","createTime":"2026-09-10T06:58:37.8242887+00:00","startTime":"2026-09-10T06:58:38.1597307+00:00","finishTime":"2026-09-10T06:58:48.2895331+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"hello-world","tag":"cf2","digest":"sha256:92c7f9c92844bbbb5d0a101b22f7c2a7949e40f8ea90c8b3bc396879d95e899a"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:58:37.7174521+00:00"}}' headers: cache-control: - no-cache content-length: - - '945' + - '946' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:42:22 GMT + - Thu, 10 Sep 2026 06:59:08 GMT expires: - '-1' pragma: @@ -798,11 +806,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7f5d1948-c09e-4d40-9c6c-ce93a5a1e647 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/847bc400-b672-4136-807c-bdcd27575e8e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ED3346B535E24A679BFCAEAE9DA51FFD Ref B: BY1AA1072319025 Ref C: 2026-03-24T01:42:23Z' + - 'Ref A: 06233B9993ED4205B11AEC36B3C19ACD Ref B: SYD281080711040 Ref C: 2026-09-10T06:59:09Z' status: code: 200 message: OK @@ -820,23 +828,23 @@ interactions: ParameterSetName: - -n -g --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:22.2701311+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:40:22.2701311Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:40:33.8598285+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:40:33.859883+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:02.2809264Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210449+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210782+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:42:23 GMT + - Thu, 10 Sep 2026 06:59:10 GMT expires: - '-1' pragma: @@ -850,7 +858,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D440B73BE01D445D9ED222C4E80A2C1C Ref B: BY1AA1072315060 Ref C: 2026-03-24T01:42:24Z' + - 'Ref A: 9432B537CD7A413A855255D363661935 Ref B: SYD281080705023 Ref C: 2026-09-10T06:59:10Z' status: code: 200 message: OK @@ -872,23 +880,23 @@ interactions: ParameterSetName: - -n -g --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:42:24.6437979+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:40:22.2701311Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:40:33.8598285+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:40:33.859883+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:11.5055001+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:02.2809264Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210449+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210782+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:42:24 GMT + - Thu, 10 Sep 2026 06:59:11 GMT expires: - '-1' pragma: @@ -900,13 +908,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/0dd27b21-235e-4de5-a3ce-a2dfaf11972e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/32e28425-b4f8-4936-9a6d-1b7a4b9dce15 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CB3CF4FA0CD24B208788CDB06F59A7C5 Ref B: SJC211051205007 Ref C: 2026-03-24T01:42:24Z' + - 'Ref A: 241A19451A5C4E51AAFC4C5CCE4A42C4 Ref B: SYD281080707062 Ref C: 2026-09-10T06:59:11Z' status: code: 200 message: OK @@ -924,21 +932,21 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --auth-mode -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:40:22.2701311Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpajmznmkefukxkqfsmqooye3d7fvbbdnnhuthxyxira4x3ikxyysm3updxnhipiou/providers/Microsoft.ContainerRegistry/registries/cliregrnsa6bvrzhvq3x","name":"cliregrnsa6bvrzhvq3x","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:16.3426904Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:16.3426904Z"}}]}' headers: cache-control: - no-cache content-length: - - '2777' + - '4001' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:42:24 GMT + - Thu, 10 Sep 2026 06:59:12 GMT expires: - '-1' pragma: @@ -952,7 +960,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6DEB20CCCD384247A4AF24000306A4DB Ref B: SJC211051203033 Ref C: 2026-03-24T01:42:25Z' + - 'Ref A: 11B89748F66849FFA2FE259E894CBB96 Ref B: SYD281080705040 Ref C: 2026-09-10T06:59:12Z' status: code: 200 message: OK @@ -970,23 +978,23 @@ interactions: ParameterSetName: - -r --source-acr-auth-id --auth-mode -f --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:42:24.6437979+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:40:22.2701311Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:40:33.8598285+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:40:33.859883+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:11.5055001+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:02.2809264Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210449+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210782+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:42:25 GMT + - Thu, 10 Sep 2026 06:59:12 GMT expires: - '-1' pragma: @@ -1000,7 +1008,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6623DB70E089422687E7A936136E2D2C Ref B: SJC211051204051 Ref C: 2026-03-24T01:42:25Z' + - 'Ref A: 0F7FF8604BD6438CB4468A0C80A7216A Ref B: SYD281080711062 Ref C: 2026-09-10T06:59:13Z' status: code: 200 message: OK @@ -1020,27 +1028,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:40:22.2701311+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:42:24.6437979+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:40:22.2701311Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:40:33.8598285+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:40:33.859883+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:11.5055001+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:02.2809264Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210449+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:09.6210782+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1616' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:42:25 GMT + - Thu, 10 Sep 2026 06:59:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-b589eba3-2722-11f1-b8ae-70a8a51b6037?api-version=2026-03-01-preview&t=639099133457698563&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=L2-agny0SMriR4bIaN7mcuUz_AsNvFHGokWkHLitEAOIEOkkZAP09P3YrduY6KW3RJ0Gekxd_DFjyyEktjFsSTNc6aarpQpQ9cHWDE1Oxdx4m_FxNHhD5Y1-HCaqvNuHN3oQFJh_ICr95r45isf-007kJyXaafBdGaWdLAXedo5MO_2l3CCgx3Dgjdcr1vkIPS928-PZz3zgQzByWToZGScpbpTOLRGIoRNAsr23QUfByTC0cYQY0d6gb39OG_WbnMsk4c3ewiklq2onlkGjDgEUPCHg2Obbif6jlB6MkLjUu3axz9i61MFxpL_epzU259q-JdgVt5jNCpljZdGmqw&h=kdUDv2SQnac1VrTMPVumfodqbbSErwamXKmbfiiuIwE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-225eb7cc-ace5-11f1-a09e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203542696649&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Fof5E57YTdoQht9S8ci-PPesWSAeMGh87sgSFTaH2O93X_QBFBUv4Tt5BgghL3B5VyPUuopNfjPsQtBpM4obS-6A-Dtb3c1Mj2Jwn-xNCj0puGpTqa5Cfzi_tA6inYbT7skFK3Sps5OHxIkJ28OUTmaKkZibeeSPrSVnco8xiVV9sIkmo2LcxPIHgcYEWs39KIZlWRS3kub1gWSnid8zIQTpg_guQk5pZtn7itcfFvLii1mN6D26LiXE62eLU3QJCzVD51YtH5IjHTnMfeJqLuemeozvOjEFRrDkuNKQw0C5_TawxA_2BUTJ65_SsH75jKDMvWZQ3vOjNR7PTkL1Mg&h=nts_wtDGKptB7JEYW9MiG5W9-pJfUZbWjht5-lesP3c pragma: - no-cache strict-transport-security: @@ -1050,13 +1058,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c536568b-af91-4968-b3c4-5b80503e123f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/52388cb6-bced-41d3-8562-6f6b254863a7 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 486C3566CD0645A98D146B625C02FFB3 Ref B: BY1AA1072315023 Ref C: 2026-03-24T01:42:25Z' + - 'Ref A: BDF90B6363524FAFA53F8FAB3A5A21B3 Ref B: SYD281080710031 Ref C: 2026-09-10T06:59:13Z' status: code: 202 message: Accepted @@ -1074,9 +1082,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-b589eba3-2722-11f1-b8ae-70a8a51b6037?api-version=2026-03-01-preview&t=639099133457698563&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=L2-agny0SMriR4bIaN7mcuUz_AsNvFHGokWkHLitEAOIEOkkZAP09P3YrduY6KW3RJ0Gekxd_DFjyyEktjFsSTNc6aarpQpQ9cHWDE1Oxdx4m_FxNHhD5Y1-HCaqvNuHN3oQFJh_ICr95r45isf-007kJyXaafBdGaWdLAXedo5MO_2l3CCgx3Dgjdcr1vkIPS928-PZz3zgQzByWToZGScpbpTOLRGIoRNAsr23QUfByTC0cYQY0d6gb39OG_WbnMsk4c3ewiklq2onlkGjDgEUPCHg2Obbif6jlB6MkLjUu3axz9i61MFxpL_epzU259q-JdgVt5jNCpljZdGmqw&h=kdUDv2SQnac1VrTMPVumfodqbbSErwamXKmbfiiuIwE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-225eb7cc-ace5-11f1-a09e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203542696649&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Fof5E57YTdoQht9S8ci-PPesWSAeMGh87sgSFTaH2O93X_QBFBUv4Tt5BgghL3B5VyPUuopNfjPsQtBpM4obS-6A-Dtb3c1Mj2Jwn-xNCj0puGpTqa5Cfzi_tA6inYbT7skFK3Sps5OHxIkJ28OUTmaKkZibeeSPrSVnco8xiVV9sIkmo2LcxPIHgcYEWs39KIZlWRS3kub1gWSnid8zIQTpg_guQk5pZtn7itcfFvLii1mN6D26LiXE62eLU3QJCzVD51YtH5IjHTnMfeJqLuemeozvOjEFRrDkuNKQw0C5_TawxA_2BUTJ65_SsH75jKDMvWZQ3vOjNR7PTkL1Mg&h=nts_wtDGKptB7JEYW9MiG5W9-pJfUZbWjht5-lesP3c response: body: string: '' @@ -1086,11 +1094,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:42:25 GMT + - Thu, 10 Sep 2026 06:59:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-b589eba3-2722-11f1-b8ae-70a8a51b6037?api-version=2026-03-01-preview&t=639099133460656801&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=EVc-czMI6vMc_wxUgnIp1gdCEzuJ1RQ5QjqoOfihcuij7rxDGVfyCZYtZOzBl4NVrcPUmzojHKIz79KeXbYcGOVhlkVJ1fwqm1ieKrG5xeAmhTpjxpi6ntsb8RonDZ1dxSKuovLma1QvkMWh5dSNd6tmvO5KJFlnCS8G9SYulkn7psjoNh-1r-PuF1SvYtO7hQ13KKLFfjIgntwlwEuLJbPBPGkMXSA8lBPKzuD-eu1ejFChrzL5bPpcpijkcLljFC1_omsKcZU4KWUqfkSKSNKSEmuRB7peSb-83WSSbHceq5modBkAscEa07K4uNM_SuGlQGq9bY7lpgkn5TVW_g&h=-xgezUkHwJ2OMO_BSzWWEEZWHZWjZXXGGsu05d3lOPU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-225eb7cc-ace5-11f1-a09e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203554845096&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=IFFdikEMAoAcyISOpCzudccYp1ZhLv1HkcfViwH1l3GTcYF-_BBLlmi1UioR1hIznyc28YMAkcriSiZHpoGbsrFLSAzrQ2LfeapCIW63fHM1fjWqduNwr4AW6_eaBjN34AjZy_vQiFB0A274Jmvte1U8OJ6w0peBPuPoASN04ZFPVfDKXQU94WRxgTgUfNtxXasrVse-5BKaNAPVZ5KmDNhJ7kgv197eH2rmJ7QxYJTV3pcEJ0o_Yr5_qLuenFgWmKEn54L7oPTmiC686MmSuuR0ddTjJuNi_WCcPRbeEW1uvEDkQ8HHPNrZcd4yevAdrMGFTeqSBL7TcTjTT0hOcg&h=Wg9O4Pomx25Odxs3dQedJ4Dkh_85WfrDgKUu52jfJoA pragma: - no-cache strict-transport-security: @@ -1100,11 +1108,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/97dbcc0c-7c76-49c8-9d77-f6f688195c41 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/25b911a7-f261-4d48-a4dd-a41cacaa3097 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 83E6FD75510D434E94BC60586A42E6AB Ref B: SJC211051204035 Ref C: 2026-03-24T01:42:25Z' + - 'Ref A: B189A02B29DC4EB3976F1D0BC0B24588 Ref B: SYD281080705031 Ref C: 2026-09-10T06:59:14Z' status: code: 202 message: Accepted @@ -1122,9 +1130,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-b589eba3-2722-11f1-b8ae-70a8a51b6037?api-version=2026-03-01-preview&t=639099133460656801&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=EVc-czMI6vMc_wxUgnIp1gdCEzuJ1RQ5QjqoOfihcuij7rxDGVfyCZYtZOzBl4NVrcPUmzojHKIz79KeXbYcGOVhlkVJ1fwqm1ieKrG5xeAmhTpjxpi6ntsb8RonDZ1dxSKuovLma1QvkMWh5dSNd6tmvO5KJFlnCS8G9SYulkn7psjoNh-1r-PuF1SvYtO7hQ13KKLFfjIgntwlwEuLJbPBPGkMXSA8lBPKzuD-eu1ejFChrzL5bPpcpijkcLljFC1_omsKcZU4KWUqfkSKSNKSEmuRB7peSb-83WSSbHceq5modBkAscEa07K4uNM_SuGlQGq9bY7lpgkn5TVW_g&h=-xgezUkHwJ2OMO_BSzWWEEZWHZWjZXXGGsu05d3lOPU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-225eb7cc-ace5-11f1-a09e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203554845096&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=IFFdikEMAoAcyISOpCzudccYp1ZhLv1HkcfViwH1l3GTcYF-_BBLlmi1UioR1hIznyc28YMAkcriSiZHpoGbsrFLSAzrQ2LfeapCIW63fHM1fjWqduNwr4AW6_eaBjN34AjZy_vQiFB0A274Jmvte1U8OJ6w0peBPuPoASN04ZFPVfDKXQU94WRxgTgUfNtxXasrVse-5BKaNAPVZ5KmDNhJ7kgv197eH2rmJ7QxYJTV3pcEJ0o_Yr5_qLuenFgWmKEn54L7oPTmiC686MmSuuR0ddTjJuNi_WCcPRbeEW1uvEDkQ8HHPNrZcd4yevAdrMGFTeqSBL7TcTjTT0hOcg&h=Wg9O4Pomx25Odxs3dQedJ4Dkh_85WfrDgKUu52jfJoA response: body: string: '' @@ -1134,7 +1142,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:42:35 GMT + - Thu, 10 Sep 2026 06:59:27 GMT expires: - '-1' pragma: @@ -1146,11 +1154,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1da83bd8-2079-485c-b5d0-0190e2994287 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/231cea72-77b1-4dc2-81d8-85848ed95d0e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 20E3EF4807F14A569BF5E44AD080953F Ref B: SJC211051204053 Ref C: 2026-03-24T01:42:36Z' + - 'Ref A: B188C5B5EF5A40859F95CF819D950C3C Ref B: SYD281080706023 Ref C: 2026-09-10T06:59:26Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_task.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_task.yaml index be360709000..d6ac57814ac 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_task.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_abac_task.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001","name":"cli_test_acrabac_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_abac_task","date":"2026-03-24T04:06:30Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001","name":"cli_test_acrabac_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_abac_task","date":"2026-09-10T06:54:15Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:06:33 GMT + - Thu, 10 Sep 2026 06:54:18 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B266B0F77A354B9799C9A6CEF1CD05BE Ref B: BY1AA1072318062 Ref C: 2026-03-24T04:06:34Z' + - 'Ref A: 213F50B809254549B48FF7F416C8C39F Ref B: SYD281080705031 Ref C: 2026-09-10T06:54:18Z' status: code: 200 message: OK @@ -63,21 +63,21 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003?api-version=2025-05-31-preview response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003","name":"acr000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003","name":"acr000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","assignmentRestrictions":{"providers":[]},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}' headers: cache-control: - no-cache content-length: - - '467' + - '509' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:06:35 GMT + - Thu, 10 Sep 2026 06:54:21 GMT expires: - '-1' location: @@ -91,13 +91,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d368c8d5-2bd4-4fd9-9a22-5ed299dce15f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b1e5af23-4c09-4c2a-bb0c-fd31cd2c3b9f x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F8793F02462E460E96623020477D387C Ref B: SJC211051203047 Ref C: 2026-03-24T04:06:34Z' + - 'Ref A: 0B28466A83A64938B16F220E0822E908 Ref B: SYD281080705029 Ref C: 2026-09-10T06:54:19Z' status: code: 201 message: Created @@ -120,23 +120,23 @@ interactions: ParameterSetName: - -n -g -l --sku --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:06:45 GMT + - Thu, 10 Sep 2026 06:54:31 GMT expires: - '-1' pragma: @@ -148,13 +148,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/6cad7676-d370-4990-8742-7b24eb44fc52 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/54987b5e-cd38-49c6-aab1-3e177aa56652 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: F4758B70B99945FE8576120B297948FF Ref B: BY1AA1072320060 Ref C: 2026-03-24T04:06:37Z' + - 'Ref A: DF9C61CC03D74255B6C87B4EDA677F50 Ref B: SYD281080710034 Ref C: 2026-09-10T06:54:22Z' status: code: 200 message: OK @@ -172,33 +172,37 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%277434fcb6-eddf-43cc-92c3-7f16d4d6a0f6%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27aa82fe8a-02a5-4272-a5ad-7b2f82528533%27%29 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"6ad9e163-744e-4d62-a70c-42067128c4be","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003"],"appDisplayName":null,"appDescription":null,"appId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-03-24T04:06:35Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"acr000003","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6","https://identity.azure.net/MmK4l/ZZLXk+MFXK4n9RAc4D3k71lZo5i3IYTpW7eic="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"308329277CBEDCD50E14B7F44197519EEBD7BD9F","displayName":"CN=7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6","endDateTime":"2026-06-22T04:01:00Z","key":null,"keyId":"59e93818-6e20-448d-9100-b8a406e96d09","startDateTime":"2026-03-24T04:01:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003"],"appDisplayName":null,"appDescription":null,"appId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-09-10T06:54:20Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"acr000003","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["aa82fe8a-02a5-4272-a5ad-7b2f82528533","https://identity.azure.net/nGZqC7OvFK/OcfbP25i38xw5BCG81Z19fAlfVH8/70A="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"3C5306B91BC33862C1EC51E54C3811AB7A97AC59","displayName":"CN=aa82fe8a-02a5-4272-a5ad-7b2f82528533","endDateTime":"2026-12-09T06:49:00Z","key":null,"keyId":"0e98d430-346b-418a-a380-0759807c06ae","startDateTime":"2026-09-10T06:49:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '1761' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:15 GMT + - Thu, 10 Sep 2026 06:55:02 GMT odata-version: - '4.0' request-id: - - ae53b1b4-9c7d-4f05-87a3-b1071e4a554b + - 2cd68d5d-b75f-40b6-8ea4-7f4ba860137a strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"PH2PEPF00002F7B"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF0000F75F"}}' x-ms-resource-unit: - '1' status: @@ -218,9 +222,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27 response: body: string: '{"value":[{"properties":{"roleName":"Container Registry Repository @@ -235,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:16 GMT + - Thu, 10 Sep 2026 06:55:02 GMT expires: - '-1' pragma: @@ -247,17 +251,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f9172a52-bd40-44ae-858c-3da3daecf829 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1debb306-554e-41b2-a5a9-1fc3340cd4b5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CEBC5BEF201F4A4C96948CAFCEBB1A9F Ref B: BY1AA1072319025 Ref C: 2026-03-24T04:07:16Z' + - 'Ref A: E2406450D0484DA48C228E46CA8F5446 Ref B: SYD281080712040 Ref C: 2026-09-10T06:55:02Z' status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c", - "principalId": "6ad9e163-744e-4d62-a70c-42067128c4be", "principalType": "ServicePrincipal"}}' + body: '{"properties": {"principalId": "6d2002b9-fd56-4d0a-be7a-568ad877cd18", + "principalType": "ServicePrincipal", "roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c"}}' headers: Accept: - application/json @@ -274,12 +278,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:07:17.2873628Z","updatedOn":"2026-03-24T04:07:17.5213630Z","createdBy":null,"updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T06:55:03.6305809Z","updatedOn":"2026-09-10T06:55:03.8205811Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -288,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:18 GMT + - Thu, 10 Sep 2026 06:55:05 GMT expires: - '-1' pragma: @@ -300,13 +304,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/825021a9-6a62-41d5-b1a7-acc9a99ede2f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5d92ca46-fbff-43cb-bc35-5070f2e516c5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5615EE66B3F94F1E8788DFDE5F2BE48C Ref B: BY1AA1072318023 Ref C: 2026-03-24T04:07:17Z' + - 'Ref A: 7368C8B9375E40569399E1672FA6436F Ref B: SYD281080708031 Ref C: 2026-09-10T06:55:03Z' status: code: 201 message: Created @@ -324,21 +328,21 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmzxhvaxbvfweafu6mxpab3rfgeg6sygd6qd5yl5d7ne6wqhxgvw2j2k2vubcouidl/providers/Microsoft.ContainerRegistry/registries/cliregtk6ob55if3mmei","name":"cliregtk6ob55if3mmei","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '4001' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:18 GMT + - Thu, 10 Sep 2026 06:55:06 GMT expires: - '-1' pragma: @@ -352,7 +356,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 90E76DA1843A4683B096E1E0B6D23481 Ref B: BY1AA1072320040 Ref C: 2026-03-24T04:07:18Z' + - 'Ref A: 0A2B0D16B46D40C1A092861FE1918901 Ref B: SYD281080706036 Ref C: 2026-09-10T06:55:06Z' status: code: 200 message: OK @@ -370,23 +374,23 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:17 GMT + - Thu, 10 Sep 2026 06:55:07 GMT expires: - '-1' pragma: @@ -400,20 +404,19 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C3E321237EEF4360AE3AE75B24A1D0A1 Ref B: SJC211051201027 Ref C: 2026-03-24T04:07:18Z' + - 'Ref A: 694E0FE3F155409982DC39C6D63C5E26 Ref B: SYD281080710031 Ref C: 2026-09-10T06:55:07Z' status: code: 200 message: OK - request: body: '{"identity": {"type": "SystemAssigned"}, "location": "westus", "properties": - {"isSystemTask": false, "status": "Enabled", "trigger": {"baseImageTrigger": - {"baseImageTriggerType": "Runtime", "status": "Enabled", "name": "defaultBaseimageTriggerName", - "updateTriggerPayloadType": "Default"}}, "agentConfiguration": {"cpu": 2}, "platform": - {"os": "linux", "architecture": "amd64"}, "credentials": {"sourceRegistry": - {"identity": "[system]"}}, "timeout": 3600, "step": {"imageNames": ["testtask:v1"], - "isPushEnabled": true, "noCache": false, "dockerFilePath": "Dockerfile", "arguments": - [], "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", - "type": "Docker"}}}' + {"status": "Enabled", "timeout": 3600, "agentConfiguration": {"cpu": 2}, "step": + {"imageNames": ["testtask:v1"], "isPushEnabled": true, "noCache": false, "dockerFilePath": + "Dockerfile", "arguments": [], "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", + "type": "Docker"}, "trigger": {"baseImageTrigger": {"baseImageTriggerType": + "Runtime", "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": + "Default"}}, "platform": {"os": "linux", "architecture": "amd64"}, "credentials": + {"sourceRegistry": {"identity": "[system]"}}, "isSystemTask": false}}' headers: Accept: - application/json @@ -430,12 +433,12 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:19.3449339+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.1441046+00:00"}}' headers: cache-control: - no-cache @@ -444,7 +447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:20 GMT + - Thu, 10 Sep 2026 06:55:10 GMT expires: - '-1' pragma: @@ -456,13 +459,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/0ba1c4ae-7e8a-4bd1-a1dd-7524d6852aa3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/519f878c-c069-478d-afee-de2c7194cf05 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A10105336A944D4E861CCF8893915F7B Ref B: BY1AA1072316029 Ref C: 2026-03-24T04:07:19Z' + - 'Ref A: 4AB1637F2109400BBDCFD90BBA4526E8 Ref B: SYD281080709031 Ref C: 2026-09-10T06:55:08Z' status: code: 200 message: OK @@ -480,21 +483,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmzxhvaxbvfweafu6mxpab3rfgeg6sygd6qd5yl5d7ne6wqhxgvw2j2k2vubcouidl/providers/Microsoft.ContainerRegistry/registries/cliregtk6ob55if3mmei","name":"cliregtk6ob55if3mmei","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '4001' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:20 GMT + - Thu, 10 Sep 2026 06:55:11 GMT expires: - '-1' pragma: @@ -508,7 +511,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6C1E62439F124EB6973685A7E49A2CFA Ref B: BY1AA1072315023 Ref C: 2026-03-24T04:07:20Z' + - 'Ref A: 23AB4A2C2E574B08AA1988734BBE87D9 Ref B: SYD281080712052 Ref C: 2026-09-10T06:55:11Z' status: code: 200 message: OK @@ -526,23 +529,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:20 GMT + - Thu, 10 Sep 2026 06:55:12 GMT expires: - '-1' pragma: @@ -556,7 +559,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CA2123C3125A4DC69A1867FBCD762E78 Ref B: SJC211051205037 Ref C: 2026-03-24T04:07:20Z' + - 'Ref A: D8D944592EE44542910E067FD30269D0 Ref B: SYD281080706034 Ref C: 2026-09-10T06:55:12Z' status: code: 200 message: OK @@ -576,12 +579,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:19.3449339+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.1441046+00:00"}}' headers: cache-control: - no-cache @@ -590,7 +593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:20 GMT + - Thu, 10 Sep 2026 06:55:13 GMT expires: - '-1' pragma: @@ -602,13 +605,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1f0bfa51-1dc3-4497-8693-c498ff06152a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/63867802-a8f3-4e89-8ec7-83df81427ced x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D744260426434EF08DA49D50A08F60F8 Ref B: BY1AA1072320042 Ref C: 2026-03-24T04:07:21Z' + - 'Ref A: ED929E01EFBA41208D5B74E34091D366 Ref B: SYD281080706029 Ref C: 2026-09-10T06:55:13Z' status: code: 200 message: OK @@ -631,12 +634,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T04:07:21+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:21.6017043+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-09-10T06:55:15+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:14.9809295+00:00"}}' headers: cache-control: - no-cache @@ -645,7 +648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:21 GMT + - Thu, 10 Sep 2026 06:55:15 GMT expires: - '-1' pragma: @@ -657,13 +660,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c0544a1d-544b-4a25-9ea5-b722231b2327 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8890ab16-2a99-40df-8d5e-24a249fb4fc8 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4AC26CEE433D43CE9C92E08929D354C5 Ref B: BY1AA1072317034 Ref C: 2026-03-24T04:07:21Z' + - 'Ref A: 0DBAE615699B4A86A2379A5065A58C96 Ref B: SYD281080712034 Ref C: 2026-09-10T06:55:14Z' status: code: 200 message: OK @@ -681,21 +684,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T04:07:21+00:00","runType":"QuickRun","createTime":"2026-03-24T04:07:21.7052947+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:21.6017043+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Running","lastUpdatedTime":"2026-09-10T06:55:15+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:15.0522238+00:00","startTime":"2026-09-10T06:55:15.4431665+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:14.9809295+00:00"}}' headers: cache-control: - no-cache content-length: - - '686' + - '735' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:21 GMT + - Thu, 10 Sep 2026 06:55:15 GMT expires: - '-1' pragma: @@ -707,11 +710,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/66e3e0d2-e109-4a55-a406-8432b9e99dac + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/09053944-52a5-4817-84cb-74dc1ba3de60 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D85C7CB050C4E3C95F8A337D554C59B Ref B: SJC211051203023 Ref C: 2026-03-24T04:07:21Z' + - 'Ref A: C21A763AFBFE4578850B5A81B1DEBB22 Ref B: SYD281080707060 Ref C: 2026-09-10T06:55:15Z' status: code: 200 message: OK @@ -729,22 +732,22 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-03-24T04:07:40+00:00","runType":"QuickRun","createTime":"2026-03-24T04:07:21.7052947+00:00","startTime":"2026-03-24T04:07:22.033695+00:00","finishTime":"2026-03-24T04:07:40.5514828+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed - during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:21.6017043+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-09-10T06:55:35+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:15.0522238+00:00","startTime":"2026-09-10T06:55:15.4431665+00:00","finishTime":"2026-09-10T06:55:35.2754539+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed + during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:14.9809295+00:00"}}' headers: cache-control: - no-cache content-length: - - '840' + - '841' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:51 GMT + - Thu, 10 Sep 2026 06:55:46 GMT expires: - '-1' pragma: @@ -756,11 +759,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a6f4d98a-ef94-45d3-bd79-d8861104e2c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9dbb5f2e-0fa5-4af7-978e-2d118985e77d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F5607C05E0ED4E1FA45EEC7323AD3BB3 Ref B: BY1AA1072316062 Ref C: 2026-03-24T04:07:52Z' + - 'Ref A: 0290A7CCB4A04E24970196994AA0CAC9 Ref B: SYD281080712062 Ref C: 2026-09-10T06:55:46Z' status: code: 200 message: OK @@ -809,21 +812,21 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-03-24T04:07:53.1152103Z","duration":"PT0S","correlationId":"598b7cb8-e285-415b-b7c5-a7be50a91f34","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-09-10T06:55:47.83291Z","duration":"PT0S","correlationId":"020cb779-deef-45b1-a3e3-4873c01ab895","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1"}]}}' headers: cache-control: - no-cache content-length: - - '1267' + - '1265' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:53 GMT + - Thu, 10 Sep 2026 06:55:47 GMT expires: - '-1' pragma: @@ -839,7 +842,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6D1D4D9BCC1A43FA884F8AF0DE2DD759 Ref B: SJC211051203039 Ref C: 2026-03-24T04:07:52Z' + - 'Ref A: 8E85F8C9D903407D88A8ABC9BB02EBD6 Ref B: SYD281080712040 Ref C: 2026-09-10T06:55:47Z' status: code: 200 message: OK @@ -888,23 +891,23 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-03-24T04:07:54.2071633Z","duration":"PT0.0007117S","correlationId":"0806e7a5-fadb-4399-98b4-3b2ea306f64d","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-09-10T06:55:50.5793048Z","duration":"PT0.000754S","correlationId":"2c95835b-213f-45d9-a673-6eccf9537ae5","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun/operationStatuses/08584272816112683713?api-version=2025-04-01&t=639099220746291188&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Ka1J-3tXUMBBqI0kiyQgjgG_TTM3OTdOZmxRSiZdTCR_UxsL4VOz2oc0B-m-k7h7i50DwyurXB3cMTXrrzf2bP0T1bmXrmoln6-6rxqglDnqrJ40s4vDzDE3cu0ycgKNrvv59gBZ4xtmFup4zSQAozqna8FCLJ1WudinOiapOnYlkLomybM7HR4i8Vld25IrjTzHKLXZOZstkhehdVybxZ_sWR9FqNmq1Zo7811ZKlA9KzXj61VImoTvZrSBv9c0UB5WBekFJZnJvSFjgJLoqvlaTB5GotO5erytkaJV6NOyPdUu0k1OyBl8mu7EYuWOMyrebo4V1BeBFdAyiQ-tcA&h=5Zq3gKcNbc9i-0ymxhmi3ixqPIDdKSUQHgXhXnJbf7o + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun/operationStatuses/08584125835348942201?api-version=2025-04-01&t=639246201550014481&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GRouFTuWZUB8YqhvZlXKobzt3U3jYs-pOe_Ug6tTySu24UOD8fL6kTF7NAmjjZtpmVstpJ68_5oSO0QBdN9LUvKaOAqHWd7edf4A_ISj9B3Jn4ue6tUQmxQhqIOQ-8ioM__If5_Ln3MdM9SdlPyGsyU7mAWreN2qdW48ST1dYxKJS6DKpabBTdiGgxD6yGUKs1X577AqMqeJt6jsSRHqif-YwLuWWrIz7A8XLg0wAyNn3pzQ3XIHt2E4LSsBnSXZXhXgzfvKTWyAx6Ihk2_5n5C3-OrqjWszEl60fNxALuifvVQwCzRHRzPRSNa3QpiUr9OQH6PP9nQdHNp2cj5JdA&h=iaJUFR7Tin854ZSKeGfjVYGmpSM9WIcIMT_e7962lU0 cache-control: - no-cache content-length: - - '1055' + - '1054' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:53 GMT + - Thu, 10 Sep 2026 06:55:54 GMT expires: - '-1' pragma: @@ -916,13 +919,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.573.0 + - 1.740.0 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: AB43D5DA3981470D847A20B261F1AB8C Ref B: BY1AA1072316054 Ref C: 2026-03-24T04:07:53Z' + - 'Ref A: F8CBEEA4DDC54A18838563AB205B096C Ref B: SYD281080712042 Ref C: 2026-09-10T06:55:48Z' status: code: 201 message: Created @@ -940,9 +943,9 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272816112683713?api-version=2025-04-01&t=639099220746291188&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Ka1J-3tXUMBBqI0kiyQgjgG_TTM3OTdOZmxRSiZdTCR_UxsL4VOz2oc0B-m-k7h7i50DwyurXB3cMTXrrzf2bP0T1bmXrmoln6-6rxqglDnqrJ40s4vDzDE3cu0ycgKNrvv59gBZ4xtmFup4zSQAozqna8FCLJ1WudinOiapOnYlkLomybM7HR4i8Vld25IrjTzHKLXZOZstkhehdVybxZ_sWR9FqNmq1Zo7811ZKlA9KzXj61VImoTvZrSBv9c0UB5WBekFJZnJvSFjgJLoqvlaTB5GotO5erytkaJV6NOyPdUu0k1OyBl8mu7EYuWOMyrebo4V1BeBFdAyiQ-tcA&h=5Zq3gKcNbc9i-0ymxhmi3ixqPIDdKSUQHgXhXnJbf7o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125835348942201?api-version=2025-04-01&t=639246201550014481&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GRouFTuWZUB8YqhvZlXKobzt3U3jYs-pOe_Ug6tTySu24UOD8fL6kTF7NAmjjZtpmVstpJ68_5oSO0QBdN9LUvKaOAqHWd7edf4A_ISj9B3Jn4ue6tUQmxQhqIOQ-8ioM__If5_Ln3MdM9SdlPyGsyU7mAWreN2qdW48ST1dYxKJS6DKpabBTdiGgxD6yGUKs1X577AqMqeJt6jsSRHqif-YwLuWWrIz7A8XLg0wAyNn3pzQ3XIHt2E4LSsBnSXZXhXgzfvKTWyAx6Ihk2_5n5C3-OrqjWszEl60fNxALuifvVQwCzRHRzPRSNa3QpiUr9OQH6PP9nQdHNp2cj5JdA&h=iaJUFR7Tin854ZSKeGfjVYGmpSM9WIcIMT_e7962lU0 response: body: string: '{"status":"Running"}' @@ -954,7 +957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:07:54 GMT + - Thu, 10 Sep 2026 06:55:54 GMT expires: - '-1' pragma: @@ -968,7 +971,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9157919CD3EA4110A7CE96F90278E1CD Ref B: SJC211051203011 Ref C: 2026-03-24T04:07:54Z' + - 'Ref A: F92326D5057D4F1888957278771B6FAD Ref B: SYD281080708031 Ref C: 2026-09-10T06:55:55Z' status: code: 200 message: OK @@ -986,9 +989,9 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272816112683713?api-version=2025-04-01&t=639099220746291188&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Ka1J-3tXUMBBqI0kiyQgjgG_TTM3OTdOZmxRSiZdTCR_UxsL4VOz2oc0B-m-k7h7i50DwyurXB3cMTXrrzf2bP0T1bmXrmoln6-6rxqglDnqrJ40s4vDzDE3cu0ycgKNrvv59gBZ4xtmFup4zSQAozqna8FCLJ1WudinOiapOnYlkLomybM7HR4i8Vld25IrjTzHKLXZOZstkhehdVybxZ_sWR9FqNmq1Zo7811ZKlA9KzXj61VImoTvZrSBv9c0UB5WBekFJZnJvSFjgJLoqvlaTB5GotO5erytkaJV6NOyPdUu0k1OyBl8mu7EYuWOMyrebo4V1BeBFdAyiQ-tcA&h=5Zq3gKcNbc9i-0ymxhmi3ixqPIDdKSUQHgXhXnJbf7o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125835348942201?api-version=2025-04-01&t=639246201550014481&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GRouFTuWZUB8YqhvZlXKobzt3U3jYs-pOe_Ug6tTySu24UOD8fL6kTF7NAmjjZtpmVstpJ68_5oSO0QBdN9LUvKaOAqHWd7edf4A_ISj9B3Jn4ue6tUQmxQhqIOQ-8ioM__If5_Ln3MdM9SdlPyGsyU7mAWreN2qdW48ST1dYxKJS6DKpabBTdiGgxD6yGUKs1X577AqMqeJt6jsSRHqif-YwLuWWrIz7A8XLg0wAyNn3pzQ3XIHt2E4LSsBnSXZXhXgzfvKTWyAx6Ihk2_5n5C3-OrqjWszEl60fNxALuifvVQwCzRHRzPRSNa3QpiUr9OQH6PP9nQdHNp2cj5JdA&h=iaJUFR7Tin854ZSKeGfjVYGmpSM9WIcIMT_e7962lU0 response: body: string: '{"status":"Running"}' @@ -1000,7 +1003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:08:24 GMT + - Thu, 10 Sep 2026 06:56:26 GMT expires: - '-1' pragma: @@ -1014,7 +1017,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FA74842E52444056976C1D7D352113BE Ref B: BY1AA1072317054 Ref C: 2026-03-24T04:08:25Z' + - 'Ref A: 3D0C24FF8E744393A628237EE1383B3B Ref B: SYD281080706040 Ref C: 2026-09-10T06:56:26Z' status: code: 200 message: OK @@ -1032,9 +1035,9 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272816112683713?api-version=2025-04-01&t=639099220746291188&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Ka1J-3tXUMBBqI0kiyQgjgG_TTM3OTdOZmxRSiZdTCR_UxsL4VOz2oc0B-m-k7h7i50DwyurXB3cMTXrrzf2bP0T1bmXrmoln6-6rxqglDnqrJ40s4vDzDE3cu0ycgKNrvv59gBZ4xtmFup4zSQAozqna8FCLJ1WudinOiapOnYlkLomybM7HR4i8Vld25IrjTzHKLXZOZstkhehdVybxZ_sWR9FqNmq1Zo7811ZKlA9KzXj61VImoTvZrSBv9c0UB5WBekFJZnJvSFjgJLoqvlaTB5GotO5erytkaJV6NOyPdUu0k1OyBl8mu7EYuWOMyrebo4V1BeBFdAyiQ-tcA&h=5Zq3gKcNbc9i-0ymxhmi3ixqPIDdKSUQHgXhXnJbf7o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125835348942201?api-version=2025-04-01&t=639246201550014481&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GRouFTuWZUB8YqhvZlXKobzt3U3jYs-pOe_Ug6tTySu24UOD8fL6kTF7NAmjjZtpmVstpJ68_5oSO0QBdN9LUvKaOAqHWd7edf4A_ISj9B3Jn4ue6tUQmxQhqIOQ-8ioM__If5_Ln3MdM9SdlPyGsyU7mAWreN2qdW48ST1dYxKJS6DKpabBTdiGgxD6yGUKs1X577AqMqeJt6jsSRHqif-YwLuWWrIz7A8XLg0wAyNn3pzQ3XIHt2E4LSsBnSXZXhXgzfvKTWyAx6Ihk2_5n5C3-OrqjWszEl60fNxALuifvVQwCzRHRzPRSNa3QpiUr9OQH6PP9nQdHNp2cj5JdA&h=iaJUFR7Tin854ZSKeGfjVYGmpSM9WIcIMT_e7962lU0 response: body: string: '{"status":"Failed","error":{"code":"DeploymentFailed","target":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","message":"At @@ -1054,7 +1057,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:08:54 GMT + - Thu, 10 Sep 2026 06:56:57 GMT expires: - '-1' pragma: @@ -1068,7 +1071,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A21B15C0EE8C4F2C9F9B72F25EEAA0A2 Ref B: SJC211051203009 Ref C: 2026-03-24T04:08:55Z' + - 'Ref A: 4C499A8CB59243E4BEF071C15EB37B65 Ref B: SYD281080711025 Ref C: 2026-09-10T06:56:57Z' status: code: 200 message: OK @@ -1086,40 +1089,44 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%275f39d6e0-da11-4332-8fa1-a3e9d09b0a93%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e4d940f0-54eb-48c7-898f-0f0a6a5992a1%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '92' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 04:09:25 GMT + - Thu, 10 Sep 2026 06:57:28 GMT odata-version: - '4.0' request-id: - - b0d7466d-ae9d-442d-8fcc-454866e92422 + - 48be9862-0dfd-4d14-9f49-a75f00a0817c strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF0001162D"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF00012B4D"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["5f39d6e0-da11-4332-8fa1-a3e9d09b0a93"], "types": ["user", "group", + body: '{"ids": ["e4d940f0-54eb-48c7-898f-0f0a6a5992a1"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -1137,35 +1144,39 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"],"appDisplayName":null,"appDescription":null,"appId":"47ef6c34-b9d1-4eab-9883-2aa8f77be3b8","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-03-24T04:07:19Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/testTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["47ef6c34-b9d1-4eab-9883-2aa8f77be3b8","https://identity.azure.net/MazgNEDDCfqgKtn5m66OI2ohDCDuzoG71SR6KCrCYs4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"CD3A55ECD74389C118DE51824EE72A1D2FE5348D","displayName":"CN=47ef6c34-b9d1-4eab-9883-2aa8f77be3b8","endDateTime":"2026-06-22T04:02:00Z","key":null,"keyId":"dd032158-9071-42a7-b5ec-a489270dfa8a","startDateTime":"2026-03-24T04:02:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"],"appDisplayName":null,"appDescription":null,"appId":"2c57ba24-b7b4-409a-a3e4-8ee49c3a6b72","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-09-10T06:55:09Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/testTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["2c57ba24-b7b4-409a-a3e4-8ee49c3a6b72","https://identity.azure.net/TvSXhCBCib0BTRHz5ZCBdDDvDqc3U/CAuE4FWs5/Cps="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"3C5CC1DC33B7B8D0425E61EDA1918DB9F0CFFC6A","displayName":"CN=2c57ba24-b7b4-409a-a3e4-8ee49c3a6b72","endDateTime":"2026-12-09T06:50:00Z","key":null,"keyId":"a1e95dc1-85cc-42f5-b487-6d02acb93144","startDateTime":"2026-09-10T06:50:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '1837' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 04:09:26 GMT + - Thu, 10 Sep 2026 06:57:29 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 4b27859c-6bad-44d6-b668-243fe216e4d7 + - e0545d4c-35f2-4d64-b31e-79349e2bb192 strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"001","RoleInstance":"PH2PEPF00002F79"}}' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF0000D3C3"}}' x-ms-resource-unit: - '3' status: @@ -1185,9 +1196,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27 response: body: string: '{"value":[{"properties":{"roleName":"Container Registry Repository @@ -1202,7 +1213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:09:25 GMT + - Thu, 10 Sep 2026 06:57:29 GMT expires: - '-1' pragma: @@ -1214,17 +1225,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/697a9f90-900a-4a8b-8142-0eaef43d2c7b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3b0aeee8-d4a7-4819-89e5-04e4c2e0572f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 06C67D47281C4AABAC703955C7A8C95B Ref B: BY1AA1072317029 Ref C: 2026-03-24T04:09:26Z' + - 'Ref A: 96D092C39A0847F8B8F24D31025BC71D Ref B: SYD281080712031 Ref C: 2026-09-10T06:57:30Z' status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c", - "principalId": "5f39d6e0-da11-4332-8fa1-a3e9d09b0a93", "principalType": "ServicePrincipal"}}' + body: '{"properties": {"principalId": "e4d940f0-54eb-48c7-898f-0f0a6a5992a1", + "principalType": "ServicePrincipal", "roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c"}}' headers: Accept: - application/json @@ -1241,12 +1252,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:09:26.4253188Z","updatedOn":"2026-03-24T04:09:26.5783151Z","createdBy":null,"updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T06:57:31.3015722Z","updatedOn":"2026-09-10T06:57:31.5185744Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -1255,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:09:27 GMT + - Thu, 10 Sep 2026 06:57:32 GMT expires: - '-1' pragma: @@ -1267,13 +1278,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/558ae80e-3ff2-46e6-8f1c-fee19374bc61 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/40d0fb4f-94ae-487e-ba8f-6953c5ceefa5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 465E87AAD51540079EAB7B352B4DD14A Ref B: BY1AA1072318025 Ref C: 2026-03-24T04:09:26Z' + - 'Ref A: 962F2806881247B5B6EA2FA8F02C3BE0 Ref B: SYD281080711036 Ref C: 2026-09-10T06:57:30Z' status: code: 201 message: Created @@ -1291,21 +1302,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_ofu6zysmabmd5ito6llbq3lqcijn46bnx65npnesjnvcb3s2iushejdyo6/providers/Microsoft.ContainerRegistry/registries/cliregvnsgpckcl4hm5x","name":"cliregvnsgpckcl4hm5x","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:02.2809264Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:02.2809264Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpajmznmkefukxkqfsmqooye3d7fvbbdnnhuthxyxira4x3ikxyysm3updxnhipiou/providers/Microsoft.ContainerRegistry/registries/cliregrnsa6bvrzhvq3x","name":"cliregrnsa6bvrzhvq3x","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:16.3426904Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:16.3426904Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '4001' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:13 GMT + - Thu, 10 Sep 2026 06:58:17 GMT expires: - '-1' pragma: @@ -1319,7 +1330,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8D1DF1CB88444A0E9F0115FB2047A035 Ref B: BY1AA1072316052 Ref C: 2026-03-24T04:10:13Z' + - 'Ref A: 6E1BF5EA20BB4F7A992AEBEC27DC3587 Ref B: SYD281080710023 Ref C: 2026-09-10T06:58:18Z' status: code: 200 message: OK @@ -1337,23 +1348,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:13 GMT + - Thu, 10 Sep 2026 06:58:18 GMT expires: - '-1' pragma: @@ -1367,7 +1378,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7AC1C9C53D5045CF84809C3B5F57AF45 Ref B: BY1AA1072318060 Ref C: 2026-03-24T04:10:13Z' + - 'Ref A: 2040A0D750CF44AFB7986A22F86CD63D Ref B: SYD281080706029 Ref C: 2026-09-10T06:58:19Z' status: code: 200 message: OK @@ -1387,12 +1398,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:19.3449339+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.1441046+00:00"}}' headers: cache-control: - no-cache @@ -1401,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:13 GMT + - Thu, 10 Sep 2026 06:58:19 GMT expires: - '-1' pragma: @@ -1413,13 +1424,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b37cf4fc-cd3d-4daa-b6cc-6cdb7ad928a3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/80d04df0-2c79-4daf-88fe-03c93479f9e2 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4C93177D81BA475C858D9BB6B47C6502 Ref B: BY1AA1072320023 Ref C: 2026-03-24T04:10:13Z' + - 'Ref A: 00A19B0098D6486A9EC08BE06DA8659D Ref B: SYD281080705036 Ref C: 2026-09-10T06:58:19Z' status: code: 200 message: OK @@ -1442,12 +1453,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Queued","lastUpdatedTime":"2026-03-24T04:10:14+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:10:14.0814968+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Queued","lastUpdatedTime":"2026-09-10T06:58:20+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:58:20.7523785+00:00"}}' headers: cache-control: - no-cache @@ -1456,7 +1467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:13 GMT + - Thu, 10 Sep 2026 06:58:20 GMT expires: - '-1' pragma: @@ -1468,13 +1479,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1b95a2dd-fc51-4d63-a78f-2b40860502d7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d4d2a1b7-35a9-4e0e-9223-20e8c5b90ded x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3B70CE4A21B14E738309CC121690B89D Ref B: SJC211051201031 Ref C: 2026-03-24T04:10:13Z' + - 'Ref A: 4B6D9897D93F410692ABF8E5FF81F6AB Ref B: SYD281080707040 Ref C: 2026-09-10T06:58:20Z' status: code: 200 message: OK @@ -1492,21 +1503,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Queued","lastUpdatedTime":"2026-03-24T04:10:14+00:00","runType":"QuickRun","createTime":"2026-03-24T04:10:14.1802671+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:10:14.0814968+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Running","lastUpdatedTime":"2026-09-10T06:58:21+00:00","runType":"QuickRun","createTime":"2026-09-10T06:58:20.8413076+00:00","startTime":"2026-09-10T06:58:21.0858275+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:58:20.7523785+00:00"}}' headers: cache-control: - no-cache content-length: - - '686' + - '735' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:14 GMT + - Thu, 10 Sep 2026 06:58:20 GMT expires: - '-1' pragma: @@ -1518,11 +1529,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5333fee5-f38f-4d66-8bb9-bc4ad776b476 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/66c1227e-bfbe-4f1b-8900-f53e6bfe98bb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2768F0F1F5048D6B1F09914A00373C8 Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:10:14Z' + - 'Ref A: D9CEBF022AE54EE99BC9A857F58854D7 Ref B: SYD281080712031 Ref C: 2026-09-10T06:58:21Z' status: code: 200 message: OK @@ -1540,21 +1551,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Succeeded","lastUpdatedTime":"2026-03-24T04:10:38+00:00","runType":"QuickRun","createTime":"2026-03-24T04:10:14.1802671+00:00","startTime":"2026-03-24T04:10:14.4881729+00:00","finishTime":"2026-03-24T04:10:38.0398437+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:a91991e3be490a45982b936ac85c6da4f9130958e1ac1b4de07590d2b72c28a0"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:10:14.0814968+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:58:45+00:00","runType":"QuickRun","createTime":"2026-09-10T06:58:20.8413076+00:00","startTime":"2026-09-10T06:58:21.0858275+00:00","finishTime":"2026-09-10T06:58:45.298919+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:e453d95fd57864e9fff208fea50d69de9bdeeec4a8e2b4937180911b9b13b69c"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:58:20.7523785+00:00"}}' headers: cache-control: - no-cache content-length: - - '960' + - '959' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:44 GMT + - Thu, 10 Sep 2026 06:58:52 GMT expires: - '-1' pragma: @@ -1566,11 +1577,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/328f249e-0122-481f-91af-4af6d9db3daa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0b5abc26-3cdd-49eb-a237-d0fd3a8fb745 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6B238F75DC5F471AA92B230D6FF8734A Ref B: BY1AA1072317029 Ref C: 2026-03-24T04:10:44Z' + - 'Ref A: 79901ABA64C64AB99D84DA1FF3228526 Ref B: SYD281080712034 Ref C: 2026-09-10T06:58:52Z' status: code: 200 message: OK @@ -1619,12 +1630,12 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-03-24T04:10:45.3195059Z","duration":"PT0S","correlationId":"e7b9087b-48ca-4c97-8106-f3f4688ab7e3","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-09-10T06:58:53.6156713Z","duration":"PT0S","correlationId":"1a171ffb-74b6-4d1f-a915-893c2c19111f","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1"}]}}' headers: cache-control: - no-cache @@ -1633,7 +1644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:44 GMT + - Thu, 10 Sep 2026 06:58:53 GMT expires: - '-1' pragma: @@ -1649,7 +1660,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D3EA6F198F194C8580A029055C83530C Ref B: BY1AA1072316062 Ref C: 2026-03-24T04:10:45Z' + - 'Ref A: 0DAD4E08D2434B3A9BD5CF2D5B620E2A Ref B: SYD281080708040 Ref C: 2026-09-10T06:58:53Z' status: code: 200 message: OK @@ -1698,15 +1709,15 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-03-24T04:10:46.0661174Z","duration":"PT0.0004864S","correlationId":"468c31c7-1e17-48c0-9273-9265dbe7ddce","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-09-10T06:58:54.9637227Z","duration":"PT0.0003735S","correlationId":"f9ef6c44-8220-4db5-bb82-a9f40b93f3b0","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun/operationStatuses/08584272814394091661?api-version=2025-04-01&t=639099222464723694&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Agzlebg4Ox2KdrE9Zbv5peT1uFn8KHTBxsDSxNJzRnw02d1MxBya_1UTuN9EIGVOzdCfCRPcMeBm-xZrPsySfAEF2U8v8vZ4qhOlYVYWBjZAbTSvgLnZp0TQ8CMHnpm4Plkve6W5uaRpIKy8iIZxyBAkKoaJaJ4uK6oHLaSOpfEkHNKqHt7dQdQnBdhn8mAuwJqHcepihOC7OKiyyS-zr-tzCg8QXGs595aNjrcHpetu0l6FroVUI9VsqaDNT6v2MtMBNqALfX-VtXPJes6DSnPDEPmknFfqGN0nKoB5eXFl0couKHdlNwvjXvwaI63WHixxbcWMEmZkA9dwD0AvWQ&h=457V3k5dSbTDZxv-75fQuGwVuLEwOFYm-Bh-DXQ0pP4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun/operationStatuses/08584125833505059476?api-version=2025-04-01&t=639246203354481840&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pguBTGDrSbg4yLKZGj4Iie4Fuz2Nz8JhILElvljOgCrYTw1hTchf3HeWpYD5RU9abmj19J-V6PUbGAFc08NR4IpljcGe9c3z2rYCAW3GuEI0OfErU3cGI1SeMF3Le85zWKtldRRiw-bvmgBxDscN6V_KHPkSVNQ8Qf0aCDyHsMoPK_92rtvjbxNGpiAEFCsIRJ2FP9WvZG4efGFsql3ARk2jp_kVdb3BRl_gNo9uJ0Gj-x85yoZlL2B_FdLg6jUmVx57JoLy2HyWu2OmgERyXcbPG8RNZKrH6SDpeFJPWlm8OjPwEXcA6DnAYhQDfE3XPQssY6usvKGxbFqyOrYA3Q&h=vqHCZjF2N6Q6I05ZLHttLd7ITZubvyirfldnaS7jh3Y cache-control: - no-cache content-length: @@ -1714,7 +1725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:45 GMT + - Thu, 10 Sep 2026 06:58:55 GMT expires: - '-1' pragma: @@ -1726,13 +1737,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.573.0 + - 1.740.0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 16CD09069A794D6C8B4BEA449661C743 Ref B: SJC211051205047 Ref C: 2026-03-24T04:10:45Z' + - 'Ref A: FF0BE4E17CD447999D24CBEFB6A03E07 Ref B: SYD281080706060 Ref C: 2026-09-10T06:58:54Z' status: code: 200 message: OK @@ -1750,21 +1761,21 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272814394091661?api-version=2025-04-01&t=639099222464723694&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Agzlebg4Ox2KdrE9Zbv5peT1uFn8KHTBxsDSxNJzRnw02d1MxBya_1UTuN9EIGVOzdCfCRPcMeBm-xZrPsySfAEF2U8v8vZ4qhOlYVYWBjZAbTSvgLnZp0TQ8CMHnpm4Plkve6W5uaRpIKy8iIZxyBAkKoaJaJ4uK6oHLaSOpfEkHNKqHt7dQdQnBdhn8mAuwJqHcepihOC7OKiyyS-zr-tzCg8QXGs595aNjrcHpetu0l6FroVUI9VsqaDNT6v2MtMBNqALfX-VtXPJes6DSnPDEPmknFfqGN0nKoB5eXFl0couKHdlNwvjXvwaI63WHixxbcWMEmZkA9dwD0AvWQ&h=457V3k5dSbTDZxv-75fQuGwVuLEwOFYm-Bh-DXQ0pP4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125833505059476?api-version=2025-04-01&t=639246203354481840&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pguBTGDrSbg4yLKZGj4Iie4Fuz2Nz8JhILElvljOgCrYTw1hTchf3HeWpYD5RU9abmj19J-V6PUbGAFc08NR4IpljcGe9c3z2rYCAW3GuEI0OfErU3cGI1SeMF3Le85zWKtldRRiw-bvmgBxDscN6V_KHPkSVNQ8Qf0aCDyHsMoPK_92rtvjbxNGpiAEFCsIRJ2FP9WvZG4efGFsql3ARk2jp_kVdb3BRl_gNo9uJ0Gj-x85yoZlL2B_FdLg6jUmVx57JoLy2HyWu2OmgERyXcbPG8RNZKrH6SDpeFJPWlm8OjPwEXcA6DnAYhQDfE3XPQssY6usvKGxbFqyOrYA3Q&h=vqHCZjF2N6Q6I05ZLHttLd7ITZubvyirfldnaS7jh3Y response: body: - string: '{"status":"Accepted"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '21' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:10:46 GMT + - Thu, 10 Sep 2026 06:58:55 GMT expires: - '-1' pragma: @@ -1778,7 +1789,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2A9DCE47951940859FE9E83E70B41798 Ref B: BY1AA1072318062 Ref C: 2026-03-24T04:10:46Z' + - 'Ref A: 8AF448D3C41C47D88AACF6588DBEFA6D Ref B: SYD281080709025 Ref C: 2026-09-10T06:58:56Z' status: code: 200 message: OK @@ -1796,9 +1807,9 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272814394091661?api-version=2025-04-01&t=639099222464723694&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Agzlebg4Ox2KdrE9Zbv5peT1uFn8KHTBxsDSxNJzRnw02d1MxBya_1UTuN9EIGVOzdCfCRPcMeBm-xZrPsySfAEF2U8v8vZ4qhOlYVYWBjZAbTSvgLnZp0TQ8CMHnpm4Plkve6W5uaRpIKy8iIZxyBAkKoaJaJ4uK6oHLaSOpfEkHNKqHt7dQdQnBdhn8mAuwJqHcepihOC7OKiyyS-zr-tzCg8QXGs595aNjrcHpetu0l6FroVUI9VsqaDNT6v2MtMBNqALfX-VtXPJes6DSnPDEPmknFfqGN0nKoB5eXFl0couKHdlNwvjXvwaI63WHixxbcWMEmZkA9dwD0AvWQ&h=457V3k5dSbTDZxv-75fQuGwVuLEwOFYm-Bh-DXQ0pP4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125833505059476?api-version=2025-04-01&t=639246203354481840&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pguBTGDrSbg4yLKZGj4Iie4Fuz2Nz8JhILElvljOgCrYTw1hTchf3HeWpYD5RU9abmj19J-V6PUbGAFc08NR4IpljcGe9c3z2rYCAW3GuEI0OfErU3cGI1SeMF3Le85zWKtldRRiw-bvmgBxDscN6V_KHPkSVNQ8Qf0aCDyHsMoPK_92rtvjbxNGpiAEFCsIRJ2FP9WvZG4efGFsql3ARk2jp_kVdb3BRl_gNo9uJ0Gj-x85yoZlL2B_FdLg6jUmVx57JoLy2HyWu2OmgERyXcbPG8RNZKrH6SDpeFJPWlm8OjPwEXcA6DnAYhQDfE3XPQssY6usvKGxbFqyOrYA3Q&h=vqHCZjF2N6Q6I05ZLHttLd7ITZubvyirfldnaS7jh3Y response: body: string: '{"status":"Running"}' @@ -1810,7 +1821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:17 GMT + - Thu, 10 Sep 2026 06:59:27 GMT expires: - '-1' pragma: @@ -1824,7 +1835,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5F540E48BA78452790D07FE882754871 Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:11:17Z' + - 'Ref A: C43FE9180CE842AFB31F1D464C05F96E Ref B: SYD281080709062 Ref C: 2026-09-10T06:59:27Z' status: code: 200 message: OK @@ -1842,9 +1853,9 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272814394091661?api-version=2025-04-01&t=639099222464723694&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Agzlebg4Ox2KdrE9Zbv5peT1uFn8KHTBxsDSxNJzRnw02d1MxBya_1UTuN9EIGVOzdCfCRPcMeBm-xZrPsySfAEF2U8v8vZ4qhOlYVYWBjZAbTSvgLnZp0TQ8CMHnpm4Plkve6W5uaRpIKy8iIZxyBAkKoaJaJ4uK6oHLaSOpfEkHNKqHt7dQdQnBdhn8mAuwJqHcepihOC7OKiyyS-zr-tzCg8QXGs595aNjrcHpetu0l6FroVUI9VsqaDNT6v2MtMBNqALfX-VtXPJes6DSnPDEPmknFfqGN0nKoB5eXFl0couKHdlNwvjXvwaI63WHixxbcWMEmZkA9dwD0AvWQ&h=457V3k5dSbTDZxv-75fQuGwVuLEwOFYm-Bh-DXQ0pP4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125833505059476?api-version=2025-04-01&t=639246203354481840&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pguBTGDrSbg4yLKZGj4Iie4Fuz2Nz8JhILElvljOgCrYTw1hTchf3HeWpYD5RU9abmj19J-V6PUbGAFc08NR4IpljcGe9c3z2rYCAW3GuEI0OfErU3cGI1SeMF3Le85zWKtldRRiw-bvmgBxDscN6V_KHPkSVNQ8Qf0aCDyHsMoPK_92rtvjbxNGpiAEFCsIRJ2FP9WvZG4efGFsql3ARk2jp_kVdb3BRl_gNo9uJ0Gj-x85yoZlL2B_FdLg6jUmVx57JoLy2HyWu2OmgERyXcbPG8RNZKrH6SDpeFJPWlm8OjPwEXcA6DnAYhQDfE3XPQssY6usvKGxbFqyOrYA3Q&h=vqHCZjF2N6Q6I05ZLHttLd7ITZubvyirfldnaS7jh3Y response: body: string: '{"status":"Succeeded"}' @@ -1856,7 +1867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:47 GMT + - Thu, 10 Sep 2026 06:59:57 GMT expires: - '-1' pragma: @@ -1870,7 +1881,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5633BCC2854549CBB30FF24284F94916 Ref B: BY1AA1072319036 Ref C: 2026-03-24T04:11:48Z' + - 'Ref A: A0993B29C0D34B789D952682BB964D15 Ref B: SYD281080708054 Ref C: 2026-09-10T06:59:57Z' status: code: 200 message: OK @@ -1888,12 +1899,12 @@ interactions: ParameterSetName: - --resource-group --template-file --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-03-24T04:11:21.6033136Z","duration":"PT35.5371962S","correlationId":"468c31c7-1e17-48c0-9273-9265dbe7ddce","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"outputs":{"registry":{"type":"String","value":"clireg000002"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1","resourceType":"Microsoft.ContainerRegistry/registries/taskRuns"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.Resources/deployments/task_abac_taskrun_manualrun","name":"task_abac_taskrun_manualrun","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7645787250009810753","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"taskrun1"},"taskName":{"type":"String","value":"testTask"},"taskRunId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-09-10T06:59:29.3951152Z","duration":"PT34.4313925S","correlationId":"f9ef6c44-8220-4db5-bb82-a9f40b93f3b0","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"outputs":{"registry":{"type":"String","value":"clireg000002"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1","resourceType":"Microsoft.ContainerRegistry/registries/taskRuns"}]}}' headers: cache-control: - no-cache @@ -1902,7 +1913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:47 GMT + - Thu, 10 Sep 2026 06:59:58 GMT expires: - '-1' pragma: @@ -1914,9 +1925,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 61D1A542017E4F2A9424B9E8E25D44A3 Ref B: BY1AA1072315054 Ref C: 2026-03-24T04:11:48Z' + - 'Ref A: 28B267C0E45647298185D06B749CD482 Ref B: SYD281080711054 Ref C: 2026-09-10T06:59:58Z' status: code: 200 message: OK @@ -1934,23 +1945,23 @@ interactions: ParameterSetName: - -r -n -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:47 GMT + - Thu, 10 Sep 2026 06:59:59 GMT expires: - '-1' pragma: @@ -1964,7 +1975,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 14DE4B8952424741B7B24F37A9641406 Ref B: BY1AA1072319029 Ref C: 2026-03-24T04:11:48Z' + - 'Ref A: DA46927B51334285AB3FDE9AB1BAA01A Ref B: SYD281080709025 Ref C: 2026-09-10T06:59:59Z' status: code: 200 message: OK @@ -1982,12 +1993,12 @@ interactions: ParameterSetName: - -r -n -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/taskRuns","properties":{"provisioningState":"Succeeded","runRequest":{"type":"TaskRunRequest","taskId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"},"runResult":{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Succeeded","lastUpdatedTime":"2026-03-24T04:11:07+00:00","runType":"QuickRun","createTime":"2026-03-24T04:10:49.3781879+00:00","startTime":"2026-03-24T04:10:49.6172645+00:00","finishTime":"2026-03-24T04:11:07.8163703+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:9660bf0e34fa8909ebf5b92cf5038f7ca2720cc16d2665fcc371303157eeb853"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4"}},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1","name":"taskrun1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:10:49.1033818+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:10:49.1033818+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/taskRuns","properties":{"provisioningState":"Succeeded","runRequest":{"type":"TaskRunRequest","taskId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask"},"runResult":{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:59:18+00:00","runType":"QuickRun","createTime":"2026-09-10T06:58:56.1764288+00:00","startTime":"2026-09-10T06:58:56.4409185+00:00","finishTime":"2026-09-10T06:59:18.8912911+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:67f4fb8146feb8bdc36d13f4245796947f853451024545a70893087405702c0f"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4"}},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1","name":"taskrun1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:58:56.0328374+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:58:56.0328374+00:00"}}' headers: cache-control: - no-cache @@ -1996,7 +2007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:48 GMT + - Thu, 10 Sep 2026 06:59:59 GMT expires: - '-1' pragma: @@ -2008,11 +2019,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/61a66f70-ce4e-4c88-8ca2-e780e765ee81 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3c590882-afd8-4546-9a09-693ea95fa224 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73B00C18C936438EB33AA0FC455915FE Ref B: BY1AA1072316052 Ref C: 2026-03-24T04:11:48Z' + - 'Ref A: DBBD2A3970CE4075985341DAD2579EC8 Ref B: SYD281080712029 Ref C: 2026-09-10T07:00:00Z' status: code: 200 message: OK @@ -2030,23 +2041,23 @@ interactions: ParameterSetName: - -r -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:48 GMT + - Thu, 10 Sep 2026 07:00:00 GMT expires: - '-1' pragma: @@ -2060,7 +2071,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 938A7E1ED721435CB32995FED1EAE12D Ref B: SJC211051203025 Ref C: 2026-03-24T04:11:48Z' + - 'Ref A: 1587FE39D478421EB64E25132CF9AD8E Ref B: SYD281080706040 Ref C: 2026-09-10T07:00:00Z' status: code: 200 message: OK @@ -2080,7 +2091,7 @@ interactions: ParameterSetName: - -r -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/taskrun1?api-version=2025-03-01-preview response: @@ -2092,7 +2103,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:11:49 GMT + - Thu, 10 Sep 2026 07:00:01 GMT expires: - '-1' pragma: @@ -2104,13 +2115,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/866770f1-f04a-4cfb-b416-b8bc374b1718 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e3f0a813-fbbd-4255-8f72-e67867d39a09 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 5777A913B1464022B8A59D83889B03B9 Ref B: SJC211051201047 Ref C: 2026-03-24T04:11:49Z' + - 'Ref A: 15C0C2E3FBA9485294C33B2026A2D270 Ref B: SYD281080708062 Ref C: 2026-09-10T07:00:01Z' status: code: 200 message: OK @@ -2128,21 +2139,21 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw7g2lat223jznlipwzh2vgdmx3cshri5vefkggce35zwvcxnyhzffu5s3bobl6p/providers/Microsoft.ContainerRegistry/registries/cliregx6k7iflpac57mz","name":"cliregx6k7iflpac57mz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3401' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:48 GMT + - Thu, 10 Sep 2026 07:00:02 GMT expires: - '-1' pragma: @@ -2156,7 +2167,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9BB6B0D90DBD41C18EA0855648014DD4 Ref B: BY1AA1072320029 Ref C: 2026-03-24T04:11:49Z' + - 'Ref A: 241973EAFC2547F08F707A7530459752 Ref B: SYD281080709031 Ref C: 2026-09-10T07:00:02Z' status: code: 200 message: OK @@ -2174,23 +2185,23 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:49 GMT + - Thu, 10 Sep 2026 07:00:03 GMT expires: - '-1' pragma: @@ -2204,7 +2215,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D8C514DA168241E08AFB17BBD52A6DA5 Ref B: BY1AA1072319036 Ref C: 2026-03-24T04:11:49Z' + - 'Ref A: A76A25EF5A064BFD9D6E7E718C73A55A Ref B: SYD281080707034 Ref C: 2026-09-10T07:00:03Z' status: code: 200 message: OK @@ -2224,12 +2235,12 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:19.3449339+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.1441046+00:00"}}' headers: cache-control: - no-cache @@ -2238,7 +2249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:49 GMT + - Thu, 10 Sep 2026 07:00:03 GMT expires: - '-1' pragma: @@ -2250,13 +2261,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9a43b356-bf99-4da8-85a4-4dd8d70908af + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/da235a21-846b-4caa-aa23-aabb7a53578f x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8BB82AEC0ECD458694D5EB94DEF32BC1 Ref B: BY1AA1072315023 Ref C: 2026-03-24T04:11:50Z' + - 'Ref A: B209A44F39EB423280606F7D29031575 Ref B: SYD281080709062 Ref C: 2026-09-10T07:00:03Z' status: code: 200 message: OK @@ -2276,12 +2287,12 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:07:19.3449339+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.1441046+00:00"}}' headers: cache-control: - no-cache @@ -2290,7 +2301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:50 GMT + - Thu, 10 Sep 2026 07:00:04 GMT expires: - '-1' pragma: @@ -2302,13 +2313,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1cbea90d-e2bf-4ff1-8049-0bcf3cdb9e90 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/aafc2ca9-1b62-476a-a47d-a1642b2552ad x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 56F3325906344C3BB08BC2DB869CB545 Ref B: SJC211051203025 Ref C: 2026-03-24T04:11:50Z' + - 'Ref A: 36C56742DA4347829F439E7414F3686B Ref B: SYD281080711054 Ref C: 2026-09-10T07:00:04Z' status: code: 200 message: OK @@ -2332,13 +2343,13 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:11:50.9862789+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:06.1557791+00:00"}}' headers: cache-control: - no-cache @@ -2347,7 +2358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:51 GMT + - Thu, 10 Sep 2026 07:00:06 GMT expires: - '-1' pragma: @@ -2359,13 +2370,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9ba20465-945e-49b0-813f-fd068fd89c13 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d5d1d1bc-740b-44c8-ab02-28f4abbac2f3 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 0713A8586E8F4C1FA824F6E8D401036F Ref B: BY1AA1072318060 Ref C: 2026-03-24T04:11:50Z' + - 'Ref A: 544029D286EC4EEF8524CF323891A2B0 Ref B: SYD281080712062 Ref C: 2026-09-10T07:00:05Z' status: code: 200 message: OK @@ -2383,12 +2394,12 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003","name":"acr000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003","name":"acr000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}' headers: cache-control: - no-cache @@ -2397,7 +2408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:51 GMT + - Thu, 10 Sep 2026 07:00:06 GMT expires: - '-1' pragma: @@ -2411,16 +2422,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B6D5D1519FBD486B84A989A74B9E133E Ref B: BY1AA1072315062 Ref C: 2026-03-24T04:11:51Z' + - 'Ref A: 4FF5EA9411684D29B838B4BBF38F78D3 Ref B: SYD281080711031 Ref C: 2026-09-10T07:00:07Z' status: code: 200 message: OK - request: - body: '{"properties": {"trigger": {"baseImageTrigger": {"name": "defaultBaseimageTriggerName"}}, - "agentConfiguration": {}, "platform": {}, "credentials": {"sourceRegistry": - {"identity": "7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}, "step": {"isPushEnabled": - true, "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", - "type": "Docker"}}}' + body: '{"properties": {"agentConfiguration": {}, "step": {"isPushEnabled": true, + "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", + "type": "Docker"}, "trigger": {"baseImageTrigger": {"name": "defaultBaseimageTriggerName"}}, + "platform": {}, "credentials": {"sourceRegistry": {"identity": "aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}}}' headers: Accept: - application/json @@ -2437,13 +2447,13 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:11:51.9190444+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:07.9809606+00:00"}}' headers: cache-control: - no-cache @@ -2452,7 +2462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:51 GMT + - Thu, 10 Sep 2026 07:00:08 GMT expires: - '-1' pragma: @@ -2464,13 +2474,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/fd8cfde7-753c-4957-9cba-aa3b7f89c905 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f9e2e02f-cc46-406d-ba54-a7c61ca3d97e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 42235FD8E495433A96BFC18EAD9E1935 Ref B: SJC211051205031 Ref C: 2026-03-24T04:11:51Z' + - 'Ref A: DFE712E7EC7F47339A6B32F30E53173D Ref B: SYD281080707034 Ref C: 2026-09-10T07:00:07Z' status: code: 200 message: OK @@ -2488,21 +2498,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw7g2lat223jznlipwzh2vgdmx3cshri5vefkggce35zwvcxnyhzffu5s3bobl6p/providers/Microsoft.ContainerRegistry/registries/cliregx6k7iflpac57mz","name":"cliregx6k7iflpac57mz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3401' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:52 GMT + - Thu, 10 Sep 2026 07:00:08 GMT expires: - '-1' pragma: @@ -2516,7 +2526,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A5E2E286067C4FDF90D62E9B43B3247D Ref B: SJC211051205035 Ref C: 2026-03-24T04:11:52Z' + - 'Ref A: 5A5BE185A8FB4D03B8F82480B09D4616 Ref B: SYD281080710054 Ref C: 2026-09-10T07:00:08Z' status: code: 200 message: OK @@ -2534,23 +2544,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:51 GMT + - Thu, 10 Sep 2026 07:00:09 GMT expires: - '-1' pragma: @@ -2564,7 +2574,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FA3060E4583C49DB85E4203E6E5FDBDD Ref B: SJC211051203019 Ref C: 2026-03-24T04:11:52Z' + - 'Ref A: 07321D60CBEA4FD68DB59A69E7E8BB7D Ref B: SYD281080705060 Ref C: 2026-09-10T07:00:09Z' status: code: 200 message: OK @@ -2584,13 +2594,13 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"5f39d6e0-da11-4332-8fa1-a3e9d09b0a93","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:07:20.1947212+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:07:19.3449339+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:11:51.9190444+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"e4d940f0-54eb-48c7-898f-0f0a6a5992a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:10.4018602+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.1441046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:07.9809606+00:00"}}' headers: cache-control: - no-cache @@ -2599,7 +2609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:52 GMT + - Thu, 10 Sep 2026 07:00:09 GMT expires: - '-1' pragma: @@ -2611,13 +2621,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ab62be6e-ab7c-42f6-8f91-36f147942730 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ea1862ea-3f14-4117-ab56-c015b866552e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 663756F41DA3460E9CCFE029648A1433 Ref B: BY1AA1072317042 Ref C: 2026-03-24T04:11:52Z' + - 'Ref A: D9826611F99F4311AC14B98C134BC291 Ref B: SYD281080705040 Ref C: 2026-09-10T07:00:09Z' status: code: 200 message: OK @@ -2640,12 +2650,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf5","status":"Queued","lastUpdatedTime":"2026-03-24T04:11:53+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5","name":"cf5","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:11:53.0692505+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf5","status":"Queued","lastUpdatedTime":"2026-09-10T07:00:10+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5","name":"cf5","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:10.6741965+00:00"}}' headers: cache-control: - no-cache @@ -2654,7 +2664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:52 GMT + - Thu, 10 Sep 2026 07:00:10 GMT expires: - '-1' pragma: @@ -2666,13 +2676,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d909eeb9-e6ee-4a36-afd2-ea8bf16acf4f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7b55a7ef-0767-450b-8ba1-b3249c8bb00a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 72CFBD22BC524D11B760EA52359BCA2F Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:11:53Z' + - 'Ref A: CDB6889E6A40402980892842D83BDE20 Ref B: SYD281080711062 Ref C: 2026-09-10T07:00:10Z' status: code: 200 message: OK @@ -2690,21 +2700,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf5","status":"Queued","lastUpdatedTime":"2026-03-24T04:11:53+00:00","runType":"QuickRun","createTime":"2026-03-24T04:11:53.177009+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5","name":"cf5","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:11:53.0692505+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf5","status":"Running","lastUpdatedTime":"2026-09-10T07:00:11+00:00","runType":"QuickRun","createTime":"2026-09-10T07:00:10.7571036+00:00","startTime":"2026-09-10T07:00:11.0902681+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5","name":"cf5","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:10.6741965+00:00"}}' headers: cache-control: - no-cache content-length: - - '685' + - '735' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:11:52 GMT + - Thu, 10 Sep 2026 07:00:11 GMT expires: - '-1' pragma: @@ -2716,11 +2726,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cbe20dbb-3266-42df-aedc-914272dd71d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0d30cffc-95bc-4ff7-930f-2e6335b2e41b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C63D974D41134A40BBB27FF9D6C85517 Ref B: BY1AA1072316054 Ref C: 2026-03-24T04:11:53Z' + - 'Ref A: D43E9D59B00441A7B3C0E513B9CF6B94 Ref B: SYD281080709052 Ref C: 2026-09-10T07:00:11Z' status: code: 200 message: OK @@ -2738,21 +2748,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf5","status":"Succeeded","lastUpdatedTime":"2026-03-24T04:12:11+00:00","runType":"QuickRun","createTime":"2026-03-24T04:11:53.177009+00:00","startTime":"2026-03-24T04:11:53.4129742+00:00","finishTime":"2026-03-24T04:12:11.9430045+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:4d4ff121178032a8538ca5cbf03b84cb6867d678b1ede6d9f3ab6a4e4d081166"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5","name":"cf5","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:11:53.0692505+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf5","status":"Succeeded","lastUpdatedTime":"2026-09-10T07:00:40+00:00","runType":"QuickRun","createTime":"2026-09-10T07:00:10.7571036+00:00","startTime":"2026-09-10T07:00:11.0902681+00:00","finishTime":"2026-09-10T07:00:40.7399576+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:adcc9b9265820b6b8be794c3f045b30f76dc74f10a84e7266c1a2025b07face4"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf5","name":"cf5","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:10.6741965+00:00"}}' headers: cache-control: - no-cache content-length: - - '959' + - '960' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:23 GMT + - Thu, 10 Sep 2026 07:00:41 GMT expires: - '-1' pragma: @@ -2764,11 +2774,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3504620c-b64d-480a-b78a-ae1c4f11a7d5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b62a9a18-339b-408d-a798-0c92e00aafe1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B05986A6E382440CAFE7CC2C9DC310C4 Ref B: SJC211051201037 Ref C: 2026-03-24T04:12:23Z' + - 'Ref A: 9FE898DE50F248B6B53CD18D1A575C70 Ref B: SYD281080711031 Ref C: 2026-09-10T07:00:41Z' status: code: 200 message: OK @@ -2786,21 +2796,21 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw7g2lat223jznlipwzh2vgdmx3cshri5vefkggce35zwvcxnyhzffu5s3bobl6p/providers/Microsoft.ContainerRegistry/registries/cliregx6k7iflpac57mz","name":"cliregx6k7iflpac57mz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3401' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:24 GMT + - Thu, 10 Sep 2026 07:00:43 GMT expires: - '-1' pragma: @@ -2814,7 +2824,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5C15B235EC3A445E99D73603AED425E8 Ref B: BY1AA1072315036 Ref C: 2026-03-24T04:12:24Z' + - 'Ref A: CAB7D766E5D5465198041176192A71C7 Ref B: SYD281080707023 Ref C: 2026-09-10T07:00:42Z' status: code: 200 message: OK @@ -2832,23 +2842,23 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:23 GMT + - Thu, 10 Sep 2026 07:00:44 GMT expires: - '-1' pragma: @@ -2862,7 +2872,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 155729876FDD4BAE93D1BFE876FD4B1A Ref B: BY1AA1072318029 Ref C: 2026-03-24T04:12:24Z' + - 'Ref A: AF0E6CB87D9F437786CC60A863AE5995 Ref B: SYD281080708025 Ref C: 2026-09-10T07:00:43Z' status: code: 200 message: OK @@ -2880,12 +2890,12 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003","name":"acr000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003","name":"acr000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}' headers: cache-control: - no-cache @@ -2894,7 +2904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:23 GMT + - Thu, 10 Sep 2026 07:00:44 GMT expires: - '-1' pragma: @@ -2908,20 +2918,21 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DCD1C480D24D427FA029A4A9C530822C Ref B: BY1AA1072318052 Ref C: 2026-03-24T04:12:24Z' + - 'Ref A: 43926B3F7B7342C2A5FDF3C0897B8312 Ref B: SYD281080707062 Ref C: 2026-09-10T07:00:44Z' status: code: 200 message: OK - request: body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003": - {}}}, "location": "westus", "properties": {"isSystemTask": false, "status": - "Enabled", "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", - "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": - "Default"}}, "agentConfiguration": {"cpu": 2}, "platform": {"os": "linux", "architecture": - "amd64"}, "credentials": {"sourceRegistry": {"identity": "7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}, - "timeout": 3600, "step": {"imageNames": ["testtask:v1"], "isPushEnabled": true, - "noCache": false, "dockerFilePath": "Dockerfile", "arguments": [], "contextPath": - "https://github.com/Azure-Samples/acr-build-helloworld-node", "type": "Docker"}}}' + {}}}, "location": "westus", "properties": {"status": "Enabled", "timeout": 3600, + "agentConfiguration": {"cpu": 2}, "step": {"imageNames": ["testtask:v1"], "isPushEnabled": + true, "noCache": false, "dockerFilePath": "Dockerfile", "arguments": [], "contextPath": + "https://github.com/Azure-Samples/acr-build-helloworld-node", "type": "Docker"}, + "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", "status": + "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": + "Default"}}, "platform": {"os": "linux", "architecture": "amd64"}, "credentials": + {"sourceRegistry": {"identity": "aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}, "isSystemTask": + false}}' headers: Accept: - application/json @@ -2938,21 +2949,21 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:12:25.178902+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask2","name":"testTask2","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:12:24.9635078+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:24.9635078+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T07:00:45.9059866+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask2","name":"testTask2","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:45.7380427+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:45.7380427+00:00"}}' headers: cache-control: - no-cache content-length: - - '1520' + - '1521' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:24 GMT + - Thu, 10 Sep 2026 07:00:45 GMT expires: - '-1' pragma: @@ -2964,13 +2975,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/53e1061c-9bd8-4ee9-86f1-df1a81b33116 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/63ed9656-b4e1-4431-b8b7-e975dbb5044b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 940A93F28D23440D85CCFA31A4730433 Ref B: SJC211051201009 Ref C: 2026-03-24T04:12:24Z' + - 'Ref A: 9A062AECFC214371B9882DBB09DA1317 Ref B: SYD281080711023 Ref C: 2026-09-10T07:00:45Z' status: code: 200 message: OK @@ -2988,21 +2999,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"location":"westus3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"location":"westus3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4fw7g2lat223jznlipwzh2vgdmx3cshri5vefkggce35zwvcxnyhzffu5s3bobl6p/providers/Microsoft.ContainerRegistry/registries/cliregx6k7iflpac57mz","name":"cliregx6k7iflpac57mz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3401' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:25 GMT + - Thu, 10 Sep 2026 07:00:46 GMT expires: - '-1' pragma: @@ -3014,9 +3025,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 23FD43A3CA4D416ABDAA513FDDDDF765 Ref B: BY1AA1072316023 Ref C: 2026-03-24T04:12:25Z' + - 'Ref A: 95542329F5174F2385024E8FEFDB60BF Ref B: SYD281080710042 Ref C: 2026-09-10T07:00:46Z' status: code: 200 message: OK @@ -3034,23 +3045,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:25 GMT + - Thu, 10 Sep 2026 07:00:47 GMT expires: - '-1' pragma: @@ -3064,7 +3075,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5436D19EC37A4E528454D161B60FBBD0 Ref B: BY1AA1072319040 Ref C: 2026-03-24T04:12:25Z' + - 'Ref A: DD515A49C2994C3AB876DAE46FC53AD0 Ref B: SYD281080710029 Ref C: 2026-09-10T07:00:47Z' status: code: 200 message: OK @@ -3084,21 +3095,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask2/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6ad9e163-744e-4d62-a70c-42067128c4be","clientId":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:12:25.178902+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"7434fcb6-eddf-43cc-92c3-7f16d4d6a0f6"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask2","name":"testTask2","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:12:24.9635078+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:24.9635078+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrabac_000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acr000003":{"principalId":"6d2002b9-fd56-4d0a-be7a-568ad877cd18","clientId":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}}},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T07:00:45.9059866+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"identity":"aa82fe8a-02a5-4272-a5ad-7b2f82528533"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask2","name":"testTask2","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:45.7380427+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:45.7380427+00:00"}}' headers: cache-control: - no-cache content-length: - - '1520' + - '1521' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:25 GMT + - Thu, 10 Sep 2026 07:00:47 GMT expires: - '-1' pragma: @@ -3110,13 +3121,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cb9e55e7-7f1d-4112-8725-669af9b4d845 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e1ddbbc2-2845-40a9-a254-f48c7b166ed7 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 191F983D87254EB7A486215C6425A2C1 Ref B: BY1AA1072316034 Ref C: 2026-03-24T04:12:26Z' + - 'Ref A: 72BB7146330A44C3AAC622E08E4873FE Ref B: SYD281080705034 Ref C: 2026-09-10T07:00:47Z' status: code: 200 message: OK @@ -3139,12 +3150,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf6","status":"Queued","lastUpdatedTime":"2026-03-24T04:12:26+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6","name":"cf6","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:26.7119329+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf6","status":"Queued","lastUpdatedTime":"2026-09-10T07:00:49+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6","name":"cf6","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:49.0476699+00:00"}}' headers: cache-control: - no-cache @@ -3153,7 +3164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:26 GMT + - Thu, 10 Sep 2026 07:00:49 GMT expires: - '-1' pragma: @@ -3165,13 +3176,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2d76fbb5-1b06-4e9b-8c30-f4df096576b0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/37a3a5be-de5a-4145-92b4-66260f0c352a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E249D5410CDE420E91FA6775AB2675CC Ref B: BY1AA1072320040 Ref C: 2026-03-24T04:12:26Z' + - 'Ref A: C9408B7BB67F4B479BA3D02E57B65208 Ref B: SYD281080712062 Ref C: 2026-09-10T07:00:48Z' status: code: 200 message: OK @@ -3189,21 +3200,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf6","status":"Queued","lastUpdatedTime":"2026-03-24T04:12:26+00:00","runType":"QuickRun","createTime":"2026-03-24T04:12:26.8297503+00:00","task":"testTask2","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6","name":"cf6","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:26.7119329+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf6","status":"Running","lastUpdatedTime":"2026-09-10T07:00:49+00:00","runType":"QuickRun","createTime":"2026-09-10T07:00:49.3199981+00:00","startTime":"2026-09-10T07:00:49.6301976+00:00","task":"testTask2","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6","name":"cf6","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:49.0476699+00:00"}}' headers: cache-control: - no-cache content-length: - - '687' + - '736' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:26 GMT + - Thu, 10 Sep 2026 07:00:50 GMT expires: - '-1' pragma: @@ -3215,11 +3226,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d27c485d-7289-426f-85cd-00d6d57dd02b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7376c399-0296-4e3a-b1be-90f109bc0646 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 34CC3AA1ABED49A8B0506C0B600EA0E6 Ref B: SJC211051204027 Ref C: 2026-03-24T04:12:26Z' + - 'Ref A: 7A6F67FB08D3420BB26B526EEAE9905E Ref B: SYD281080706023 Ref C: 2026-09-10T07:00:50Z' status: code: 200 message: OK @@ -3237,12 +3248,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf6","status":"Succeeded","lastUpdatedTime":"2026-03-24T04:12:52+00:00","runType":"QuickRun","createTime":"2026-03-24T04:12:26.8297503+00:00","startTime":"2026-03-24T04:12:27.0665277+00:00","finishTime":"2026-03-24T04:12:52.0368173+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:ac911834696ac06ba01d31fb4282d30d1b7053071732ea149ae81ec5e7cae6cc"}],"task":"testTask2","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6","name":"cf6","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:26.7119329+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf6","status":"Succeeded","lastUpdatedTime":"2026-09-10T07:01:07+00:00","runType":"QuickRun","createTime":"2026-09-10T07:00:49.3199981+00:00","startTime":"2026-09-10T07:00:49.6301976+00:00","finishTime":"2026-09-10T07:01:07.5664297+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:af730d81e1ad254a2400048a0d3d844bce4dd6facaf24451382f4e6e47c2b869"}],"task":"testTask2","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf6","name":"cf6","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:49.0476699+00:00"}}' headers: cache-control: - no-cache @@ -3251,7 +3262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:56 GMT + - Thu, 10 Sep 2026 07:01:20 GMT expires: - '-1' pragma: @@ -3263,11 +3274,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f2476d42-e3ab-49fe-b8ad-32319952d15d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4c16d1f9-3966-4e45-a607-5c9f7b4881b2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0B3ED9A0C8B744D4AB4192B4D037DFFE Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:12:57Z' + - 'Ref A: 55F9C0D4DE464FCF8EC709FA996E622C Ref B: SYD281080710034 Ref C: 2026-09-10T07:01:20Z' status: code: 200 message: OK @@ -3285,21 +3296,21 @@ interactions: ParameterSetName: - -n -r --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '2805' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:57 GMT + - Thu, 10 Sep 2026 07:01:21 GMT expires: - '-1' pragma: @@ -3313,7 +3324,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CF45290E70834FB2A0B50789EFFB2366 Ref B: BY1AA1072318034 Ref C: 2026-03-24T04:12:57Z' + - 'Ref A: 965E624CD9DB4147AAEA62AAE7AF7AFC Ref B: SYD281080711062 Ref C: 2026-09-10T07:01:22Z' status: code: 200 message: OK @@ -3331,23 +3342,23 @@ interactions: ParameterSetName: - -n -r --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:57 GMT + - Thu, 10 Sep 2026 07:01:23 GMT expires: - '-1' pragma: @@ -3361,19 +3372,19 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 50E47D13835C4043A0916E287BCF94C4 Ref B: BY1AA1072318029 Ref C: 2026-03-24T04:12:58Z' + - 'Ref A: 2DD5C13C55314E598EE23D628A0740FB Ref B: SYD281080707034 Ref C: 2026-09-10T07:01:23Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"isSystemTask": false, "status": - "Enabled", "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", - "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": - "Default"}}, "agentConfiguration": {"cpu": 2}, "platform": {"os": "linux", "architecture": - "amd64"}, "credentials": {}, "timeout": 3600, "step": {"imageNames": ["testtask:v1"], - "isPushEnabled": true, "noCache": false, "dockerFilePath": "Dockerfile", "arguments": - [], "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", - "type": "Docker"}}}' + body: '{"location": "westus", "properties": {"status": "Enabled", "timeout": 3600, + "agentConfiguration": {"cpu": 2}, "step": {"imageNames": ["testtask:v1"], "isPushEnabled": + true, "noCache": false, "dockerFilePath": "Dockerfile", "arguments": [], "contextPath": + "https://github.com/Azure-Samples/acr-build-helloworld-node", "type": "Docker"}, + "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", "status": + "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": + "Default"}}, "platform": {"os": "linux", "architecture": "amd64"}, "credentials": + {}, "isSystemTask": false}}' headers: Accept: - application/json @@ -3390,12 +3401,12 @@ interactions: ParameterSetName: - -n -r --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask3?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:12:58.7538909+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask3","name":"testTask3","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:12:58.6730962+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:58.6730962+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T07:01:24.4656003+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask3","name":"testTask3","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:01:24.3981061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:01:24.3981061+00:00"}}' headers: cache-control: - no-cache @@ -3404,7 +3415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:58 GMT + - Thu, 10 Sep 2026 07:01:23 GMT expires: - '-1' pragma: @@ -3416,13 +3427,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2c4318bf-2fb5-4980-8ebf-5dc2beecfaf0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6d8e0a00-42dd-4110-b506-8674330f83f1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2E73010145D845CC80819CAE2266618C Ref B: SJC211051201019 Ref C: 2026-03-24T04:12:58Z' + - 'Ref A: BCB9EA7E2753446B8BE4D9FEB72166A7 Ref B: SYD281080705025 Ref C: 2026-09-10T07:01:24Z' status: code: 200 message: OK @@ -3440,21 +3451,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '2805' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:58 GMT + - Thu, 10 Sep 2026 07:01:25 GMT expires: - '-1' pragma: @@ -3468,7 +3479,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 391902EA55EF48D2AEEFB90D311BB6C8 Ref B: BY1AA1072320052 Ref C: 2026-03-24T04:12:58Z' + - 'Ref A: F2E72A13FB394416AF87C4EF414DBD01 Ref B: SYD281080705054 Ref C: 2026-09-10T07:01:25Z' status: code: 200 message: OK @@ -3486,23 +3497,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:58 GMT + - Thu, 10 Sep 2026 07:01:25 GMT expires: - '-1' pragma: @@ -3516,7 +3527,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5AD4C85BD3AE4DBF9FA9E822583CAB13 Ref B: SJC211051204023 Ref C: 2026-03-24T04:12:59Z' + - 'Ref A: 16868E48F4DB45BAB4F1A1ADD9115122 Ref B: SYD281080708060 Ref C: 2026-09-10T07:01:26Z' status: code: 200 message: OK @@ -3536,12 +3547,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask3/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:12:58.7538909+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask3","name":"testTask3","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:12:58.6730962+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:58.6730962+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T07:01:24.4656003+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask3","name":"testTask3","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:01:24.3981061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:01:24.3981061+00:00"}}' headers: cache-control: - no-cache @@ -3550,7 +3561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:59 GMT + - Thu, 10 Sep 2026 07:01:26 GMT expires: - '-1' pragma: @@ -3562,13 +3573,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8d8d7d05-6c21-423d-b8e1-499a991d7622 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/667b3282-4936-4b46-b3c8-644b3c93c7a5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A6A6CB4EB4934D0CB4F8683D896F7679 Ref B: BY1AA1072318052 Ref C: 2026-03-24T04:12:59Z' + - 'Ref A: 5F709C147B6343CD8331932A175819D2 Ref B: SYD281080710031 Ref C: 2026-09-10T07:01:26Z' status: code: 200 message: OK @@ -3591,12 +3602,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf7","status":"Queued","lastUpdatedTime":"2026-03-24T04:12:59+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7","name":"cf7","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:59.8811631+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf7","status":"Queued","lastUpdatedTime":"2026-09-10T07:01:27+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7","name":"cf7","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:01:27.8526053+00:00"}}' headers: cache-control: - no-cache @@ -3605,7 +3616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:59 GMT + - Thu, 10 Sep 2026 07:01:27 GMT expires: - '-1' pragma: @@ -3617,13 +3628,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d20d166f-8b44-49a6-92ed-1f911ae8726b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0a41cb90-7bf0-4cb8-84b8-b1d981473940 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 81A96D43D401442C8FCC01F6B8E82EE8 Ref B: BY1AA1072319034 Ref C: 2026-03-24T04:12:59Z' + - 'Ref A: 916780EF60BE427EA807FF8647502504 Ref B: SYD281080706062 Ref C: 2026-09-10T07:01:27Z' status: code: 200 message: OK @@ -3641,21 +3652,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf7","status":"Queued","lastUpdatedTime":"2026-03-24T04:13:00+00:00","runType":"QuickRun","createTime":"2026-03-24T04:12:59.9542149+00:00","task":"testTask3","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7","name":"cf7","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:59.8811631+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf7","status":"Running","lastUpdatedTime":"2026-09-10T07:01:28+00:00","runType":"QuickRun","createTime":"2026-09-10T07:01:27.9424888+00:00","startTime":"2026-09-10T07:01:28.1978499+00:00","task":"testTask3","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7","name":"cf7","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:01:27.8526053+00:00"}}' headers: cache-control: - no-cache content-length: - - '687' + - '736' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:12:59 GMT + - Thu, 10 Sep 2026 07:01:28 GMT expires: - '-1' pragma: @@ -3667,11 +3678,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3280b9a7-4be3-4f0d-bb0e-d0a0841f7a8a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c175f5e2-0403-494c-950d-8966eeb38d50 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 043517AA94F342EBB195AB7F8A4EACC5 Ref B: SJC211051203029 Ref C: 2026-03-24T04:13:00Z' + - 'Ref A: D6B9A5EEBEE345BF83AC4C48561DDF5E Ref B: SYD281080708052 Ref C: 2026-09-10T07:01:28Z' status: code: 200 message: OK @@ -3689,13 +3700,13 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf7","status":"Failed","lastUpdatedTime":"2026-03-24T04:13:03+00:00","runType":"QuickRun","createTime":"2026-03-24T04:12:59.9542149+00:00","startTime":"2026-03-24T04:13:00.1823189+00:00","finishTime":"2026-03-24T04:13:03.8641836+00:00","task":"testTask3","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed - during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7","name":"cf7","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:12:59.8811631+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf7","status":"Failed","lastUpdatedTime":"2026-09-10T07:01:32+00:00","runType":"QuickRun","createTime":"2026-09-10T07:01:27.9424888+00:00","startTime":"2026-09-10T07:01:28.1978499+00:00","finishTime":"2026-09-10T07:01:32.2977455+00:00","task":"testTask3","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"runErrorMessage":"failed + during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf7","name":"cf7","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:01:27.8526053+00:00"}}' headers: cache-control: - no-cache @@ -3704,7 +3715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:29 GMT + - Thu, 10 Sep 2026 07:01:59 GMT expires: - '-1' pragma: @@ -3716,11 +3727,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a4a4595d-8c35-465d-af3d-45a4f6a7b881 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4c8848f3-10b1-46b1-a8ba-391edac57e8c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 20081111F66F4CC785C2D0A82995E142 Ref B: BY1AA1072315060 Ref C: 2026-03-24T04:13:30Z' + - 'Ref A: 4D2FAC8F885D489C8239071B3B739374 Ref B: SYD281080710042 Ref C: 2026-09-10T07:01:59Z' status: code: 200 message: OK @@ -3738,23 +3749,23 @@ interactions: ParameterSetName: - -n -g --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1650' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:29 GMT + - Thu, 10 Sep 2026 07:02:00 GMT expires: - '-1' pragma: @@ -3768,7 +3779,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EE1F9CAD125446CF82980ACD2329AF0D Ref B: BY1AA1072316054 Ref C: 2026-03-24T04:13:30Z' + - 'Ref A: 24222635979343FA9651DE19A2A98F5C Ref B: SYD281080707025 Ref C: 2026-09-10T07:02:01Z' status: code: 200 message: OK @@ -3790,23 +3801,23 @@ interactions: ParameterSetName: - -n -g --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:31.3694448+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:02:02.464316+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:31 GMT + - Thu, 10 Sep 2026 07:02:02 GMT expires: - '-1' pragma: @@ -3818,13 +3829,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d16468ca-2408-4f58-8297-698af2698e7a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/63f87ad3-83a2-4b4b-adcf-e08bf6c588c1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1C48BFDAA87F47B3952F9BF08C49E193 Ref B: BY1AA1072318029 Ref C: 2026-03-24T04:13:31Z' + - 'Ref A: E4B59809DA83498E842EF52DC3C2E468 Ref B: SYD281080712060 Ref C: 2026-09-10T07:02:02Z' status: code: 200 message: OK @@ -3842,21 +3853,21 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --auth-mode --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '2805' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:30 GMT + - Thu, 10 Sep 2026 07:02:02 GMT expires: - '-1' pragma: @@ -3870,7 +3881,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 57A42C3FB69A4E95AF3B9B2334461E79 Ref B: SJC211051204031 Ref C: 2026-03-24T04:13:31Z' + - 'Ref A: 2E0870C7BF2344268A19B0DFDF3B4748 Ref B: SYD281080711062 Ref C: 2026-09-10T07:02:03Z' status: code: 200 message: OK @@ -3888,23 +3899,23 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --auth-mode --context --image -f --commit-trigger-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:31.3694448+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:02:02.464316+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:31 GMT + - Thu, 10 Sep 2026 07:02:04 GMT expires: - '-1' pragma: @@ -3918,7 +3929,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D86FEE8F0F434DB5AD2015A1600C859C Ref B: BY1AA1072315060 Ref C: 2026-03-24T04:13:31Z' + - 'Ref A: 1B3F199D0E374C4A85B99B671313C81B Ref B: SYD281080706052 Ref C: 2026-09-10T07:02:04Z' status: code: 200 message: OK @@ -3936,21 +3947,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '2805' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:31 GMT + - Thu, 10 Sep 2026 07:02:05 GMT expires: - '-1' pragma: @@ -3964,7 +3975,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1C4FBFEA656D495AAD23058865478D55 Ref B: BY1AA1072320029 Ref C: 2026-03-24T04:13:32Z' + - 'Ref A: 4C8F5259F1AB4299AC6487DC46009764 Ref B: SYD281080705062 Ref C: 2026-09-10T07:02:05Z' status: code: 200 message: OK @@ -3982,23 +3993,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:31.3694448+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:02:02.464316+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:32 GMT + - Thu, 10 Sep 2026 07:02:06 GMT expires: - '-1' pragma: @@ -4012,7 +4023,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2EC339624D8C42319A8957BD56D48DBC Ref B: BY1AA1072319062 Ref C: 2026-03-24T04:13:32Z' + - 'Ref A: 5C0B60BC8D144CB58471503A740240C4 Ref B: SYD281080706040 Ref C: 2026-09-10T07:02:06Z' status: code: 200 message: OK @@ -4032,7 +4043,7 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: @@ -4044,7 +4055,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:13:33 GMT + - Thu, 10 Sep 2026 07:02:06 GMT expires: - '-1' pragma: @@ -4056,13 +4067,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/37f0885a-b7a1-41d3-8147-d145c65ecd50 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/13f23a66-9c03-4691-b69f-373699fd9803 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 4327C4C0185C47528550CA65B4B24648 Ref B: BY1AA1072318025 Ref C: 2026-03-24T04:13:32Z' + - 'Ref A: B7FAF235A2994C9E8F6A8647563B8E43 Ref B: SYD281080710023 Ref C: 2026-09-10T07:02:07Z' status: code: 200 message: OK @@ -4080,21 +4091,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '2805' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:33 GMT + - Thu, 10 Sep 2026 07:02:07 GMT expires: - '-1' pragma: @@ -4108,7 +4119,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4A138CE05C854C72B7FEE1F42BF40455 Ref B: SJC211051201051 Ref C: 2026-03-24T04:13:33Z' + - 'Ref A: 316B954D813A4ED0BBDEEC547561128E Ref B: SYD281080712052 Ref C: 2026-09-10T07:02:08Z' status: code: 200 message: OK @@ -4126,23 +4137,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:31.3694448+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:02:02.464316+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:33 GMT + - Thu, 10 Sep 2026 07:02:08 GMT expires: - '-1' pragma: @@ -4156,7 +4167,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C64070E62E0144A4AFDBB02F1BDEFEEF Ref B: BY1AA1072319023 Ref C: 2026-03-24T04:13:33Z' + - 'Ref A: D1AE8D718D2D4018B2B7E864CAD4DB37 Ref B: SYD281080705052 Ref C: 2026-09-10T07:02:09Z' status: code: 200 message: OK @@ -4176,7 +4187,7 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask2?api-version=2025-03-01-preview response: @@ -4188,7 +4199,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:13:33 GMT + - Thu, 10 Sep 2026 07:02:10 GMT expires: - '-1' pragma: @@ -4200,13 +4211,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5fed986f-d438-4c49-882f-4ca792ca9476 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0fcde8a7-5631-4cf4-ba86-99c86050934b x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: F3D6A31DB45849F8A659D51A2A709376 Ref B: BY1AA1072317023 Ref C: 2026-03-24T04:13:33Z' + - 'Ref A: 66BE7CF90DD340A7B0265BD301143EE2 Ref B: SYD281080711034 Ref C: 2026-09-10T07:02:09Z' status: code: 200 message: OK @@ -4224,21 +4235,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:06:38.1351292Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '2805' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:33 GMT + - Thu, 10 Sep 2026 07:02:10 GMT expires: - '-1' pragma: @@ -4252,7 +4263,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BB3398D660F740A18D47F676E7A0A904 Ref B: SJC211051203011 Ref C: 2026-03-24T04:13:34Z' + - 'Ref A: B6F608E9BB374F849ABA980D6FDE7CD7 Ref B: SYD281080706062 Ref C: 2026-09-10T07:02:10Z' status: code: 200 message: OK @@ -4270,23 +4281,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:31.3694448+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:02:02.464316+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:34 GMT + - Thu, 10 Sep 2026 07:02:11 GMT expires: - '-1' pragma: @@ -4300,7 +4311,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AB9D0CB221194A8EB9E4D66C3516EE9A Ref B: SJC211051201009 Ref C: 2026-03-24T04:13:34Z' + - 'Ref A: A4E7EA821151437393983ADE472F4016 Ref B: SYD281080711062 Ref C: 2026-09-10T07:02:11Z' status: code: 200 message: OK @@ -4320,7 +4331,7 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask3?api-version=2025-03-01-preview response: @@ -4332,7 +4343,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:13:35 GMT + - Thu, 10 Sep 2026 07:02:12 GMT expires: - '-1' pragma: @@ -4344,13 +4355,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2949b915-2ba7-4466-b70f-e592b4a8fb66 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/469da45d-54b0-42f2-bc31-e8301c6ff489 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 867986328E5E4FAA8292D7386E416E93 Ref B: SJC211051204035 Ref C: 2026-03-24T04:13:34Z' + - 'Ref A: 201BA06BD6CD4945A3DF5914E03B6F65 Ref B: SYD281080708062 Ref C: 2026-09-10T07:02:12Z' status: code: 200 message: OK @@ -4370,27 +4381,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:06:38.1351292+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:31.3694448+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:06:38.1351292Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553433+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:06:45.6553752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:02:02.464316+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:24.1875712Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604203+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:31.0604605+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1648' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:35 GMT + - Thu, 10 Sep 2026 07:02:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-d3d7c783-2737-11f1-af82-70a8a51b6037?api-version=2026-03-01-preview&t=639099224161809448&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ETsL_JHyM3E4VOFF6slv4AABhAzDf1hBbmEw_POHwqJgedCmWESXfjZC0Jc35Hr7c-lKzUVujl9b3e079HVtN2G7OWwE9r3CoO0IxEX_j1QfNoT_8Ix8VBNX-kuezdXk2fyTq_ryLo-VGQD5K91Q80vQq9OETIJs4ItqOVYzV36lm4zTOX8IbAkPHgn5r7Mb_XFYxQZl-OQX9CAyxPyfCRBVBQVRqX-TrgBWwHpDqAYLj8dYFjkY3E1RzITBl08kmddwlntYnMruVxCDiCLEh0AHK-RTJ7sYZox_Y2QvNm1b1Bcu_72UfNvGWTjHUJ4oXGptmxlqlgzGWotgbutokw&h=X06t830xVpIdjikMnoXgv39vKYgeYtJYHyHVaiYZFTQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8d5898a6-ace5-11f1-9b7f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246205336782858&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=f_Sm_VSEdSXna88MAGFTCkI7piKaTfwHhSjVQjAdu8NwdrJ_JV9O6TNLflH_eBRVVAPyF6Y-ZHo8UjdwEfNsbFsC1py2wwTfJHxzVr3Jn97g8NlMbVMGKfCA0oElYnbHMvaXOeyPJhv2moHbE8VW-Yv5_oyH2IEalIPiw4ztGHvw8tYxZsLf2FkmgzHHsvR4WlWsviRtqLR1rLB6s1YarxRULZD3PPTzY39lZhDQiu9_eQMOS3sAi1fWHs7dm70FSAJupXWoKBMgqobAS9nIi4PqF2igx0fmhG44a_AWbhq7WqqL6IFfAiOuKSMljQH-Jrm-zc9en0zu3wXkcdecwA&h=Fcf5NZTDoWNjRUH5MVv_oshVZhr0qkAIWmo38UCHdq0 pragma: - no-cache strict-transport-security: @@ -4400,13 +4411,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2d401cfc-0df6-4818-9576-edee6877cf4a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4f187535-bbed-4223-ae31-c235ffc92435 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 78AC4D3A82D5404DBCC549E6F165A545 Ref B: SJC211051205039 Ref C: 2026-03-24T04:13:35Z' + - 'Ref A: FA03A2031A054B94A28965CAC23AB10C Ref B: SYD281080706025 Ref C: 2026-09-10T07:02:13Z' status: code: 202 message: Accepted @@ -4424,9 +4435,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-d3d7c783-2737-11f1-af82-70a8a51b6037?api-version=2026-03-01-preview&t=639099224161809448&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ETsL_JHyM3E4VOFF6slv4AABhAzDf1hBbmEw_POHwqJgedCmWESXfjZC0Jc35Hr7c-lKzUVujl9b3e079HVtN2G7OWwE9r3CoO0IxEX_j1QfNoT_8Ix8VBNX-kuezdXk2fyTq_ryLo-VGQD5K91Q80vQq9OETIJs4ItqOVYzV36lm4zTOX8IbAkPHgn5r7Mb_XFYxQZl-OQX9CAyxPyfCRBVBQVRqX-TrgBWwHpDqAYLj8dYFjkY3E1RzITBl08kmddwlntYnMruVxCDiCLEh0AHK-RTJ7sYZox_Y2QvNm1b1Bcu_72UfNvGWTjHUJ4oXGptmxlqlgzGWotgbutokw&h=X06t830xVpIdjikMnoXgv39vKYgeYtJYHyHVaiYZFTQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8d5898a6-ace5-11f1-9b7f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246205336782858&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=f_Sm_VSEdSXna88MAGFTCkI7piKaTfwHhSjVQjAdu8NwdrJ_JV9O6TNLflH_eBRVVAPyF6Y-ZHo8UjdwEfNsbFsC1py2wwTfJHxzVr3Jn97g8NlMbVMGKfCA0oElYnbHMvaXOeyPJhv2moHbE8VW-Yv5_oyH2IEalIPiw4ztGHvw8tYxZsLf2FkmgzHHsvR4WlWsviRtqLR1rLB6s1YarxRULZD3PPTzY39lZhDQiu9_eQMOS3sAi1fWHs7dm70FSAJupXWoKBMgqobAS9nIi4PqF2igx0fmhG44a_AWbhq7WqqL6IFfAiOuKSMljQH-Jrm-zc9en0zu3wXkcdecwA&h=Fcf5NZTDoWNjRUH5MVv_oshVZhr0qkAIWmo38UCHdq0 response: body: string: '' @@ -4436,11 +4447,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:13:35 GMT + - Thu, 10 Sep 2026 07:02:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-d3d7c783-2737-11f1-af82-70a8a51b6037?api-version=2026-03-01-preview&t=639099224165168731&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=n9McstG05EbenQekPFYyJCY7TTkN_PVM_wyMC7nq7OxgQt3t-3Gb1z-QrGDJpbL0FQyrJUWgeQfNcOxu9MKLASM1au249lwAf5f1L-sgZbSJbNdQj3Pj7Ec_XMWPrEp9D0EbB353p-DNrswqIBYupRAKT4i9o-bDrtE6WOqEaKmoqWC3r_DpYSORzXBVhaEyd25d7omDfu7_0-8BH5mp3gYjfKrWHW4u3Q2E6jJLHoZ3cE_v43-0VnOnKxQF-BumRMwBTvd1Jj_c_wG53Yq4xeTFewxk-nHy5DIG6tzEe0GWg-x6PkYdXHWnHw5ykoTCmTaRXsqQeKAWp8dJ1lnMuw&h=5SyuHm6pLnhEcv0zUp1l5rFMMNcfslYRAFOGps8qqS8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8d5898a6-ace5-11f1-9b7f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246205347663313&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=JSrRXyNbwZUVNzYlGXCgtiXT7Tm6_GsFmHMR9Y4U10BthZGSR505TFkWSmX69IGrv4aL6g5FrAW_yaEAS4rX6wRPIjf9venSZEkfN66V0diI1LKwSrL-4NPgEZqMRO-RfTnnt6WWUDyQTKQce50wUql8Dx35wad_pVo7UZdyZGutJQkYHqtOGh-7sczgyOPbkz5YDzohoGAkXPRXhbJG26Sli390NVoUzE78knBmTMuIa6ynNEb0hFEHXQxmXuIbZ-s3F37Ztft3wUi4jIdJmbTK15t_JUyRfmkrYPMKnMySJ-2niV4HI1fHXJsoBnO3rFCxoadQgPZai7WaGFWlLg&h=IvQ09969u2IBqy95FpyNyD55FMYa_Tufq6rkkHrL5f4 pragma: - no-cache strict-transport-security: @@ -4450,11 +4461,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/1ffd75ef-d830-4372-a7a4-751faa624784 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/2ccf0306-924c-4770-bf63-b1fe93bf455f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B1B61825B9E543BEBBAF117CFEFB4263 Ref B: BY1AA1072316060 Ref C: 2026-03-24T04:13:36Z' + - 'Ref A: 0BB46154A42B46AFBCBE679A8B79DD7C Ref B: SYD281080710060 Ref C: 2026-09-10T07:02:14Z' status: code: 202 message: Accepted @@ -4472,9 +4483,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-d3d7c783-2737-11f1-af82-70a8a51b6037?api-version=2026-03-01-preview&t=639099224165168731&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=n9McstG05EbenQekPFYyJCY7TTkN_PVM_wyMC7nq7OxgQt3t-3Gb1z-QrGDJpbL0FQyrJUWgeQfNcOxu9MKLASM1au249lwAf5f1L-sgZbSJbNdQj3Pj7Ec_XMWPrEp9D0EbB353p-DNrswqIBYupRAKT4i9o-bDrtE6WOqEaKmoqWC3r_DpYSORzXBVhaEyd25d7omDfu7_0-8BH5mp3gYjfKrWHW4u3Q2E6jJLHoZ3cE_v43-0VnOnKxQF-BumRMwBTvd1Jj_c_wG53Yq4xeTFewxk-nHy5DIG6tzEe0GWg-x6PkYdXHWnHw5ykoTCmTaRXsqQeKAWp8dJ1lnMuw&h=5SyuHm6pLnhEcv0zUp1l5rFMMNcfslYRAFOGps8qqS8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8d5898a6-ace5-11f1-9b7f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246205347663313&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=JSrRXyNbwZUVNzYlGXCgtiXT7Tm6_GsFmHMR9Y4U10BthZGSR505TFkWSmX69IGrv4aL6g5FrAW_yaEAS4rX6wRPIjf9venSZEkfN66V0diI1LKwSrL-4NPgEZqMRO-RfTnnt6WWUDyQTKQce50wUql8Dx35wad_pVo7UZdyZGutJQkYHqtOGh-7sczgyOPbkz5YDzohoGAkXPRXhbJG26Sli390NVoUzE78knBmTMuIa6ynNEb0hFEHXQxmXuIbZ-s3F37Ztft3wUi4jIdJmbTK15t_JUyRfmkrYPMKnMySJ-2niV4HI1fHXJsoBnO3rFCxoadQgPZai7WaGFWlLg&h=IvQ09969u2IBqy95FpyNyD55FMYa_Tufq6rkkHrL5f4 response: body: string: '' @@ -4484,7 +4495,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:13:46 GMT + - Thu, 10 Sep 2026 07:02:24 GMT expires: - '-1' pragma: @@ -4496,11 +4507,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7c0cec6c-8d5e-45e2-841f-869469fe828f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/59b2e2c0-a55c-49fb-b4a0-0bf57e22fbf0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 37930D27753443F5ABFDF7931588F400 Ref B: SJC211051201027 Ref C: 2026-03-24T04:13:46Z' + - 'Ref A: E718D5257A424EC0A2A9F5224B0E2C8F Ref B: SYD281080705025 Ref C: 2026-09-10T07:02:25Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml index 52035a37ccc..21ed78f2f50 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:17.4380504Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:19.6260655+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:19.6261047+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:08 GMT + - Thu, 10 Sep 2026 06:44:19 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c97c39f7-e1cc-47c0-8c23-f6989c5c0203 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/bf91d002-8cf7-410f-b434-dfb082ccabe5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DC02F9F1C4F34BC8AF48BA670C594170 Ref B: BY1AA1072316060 Ref C: 2026-03-24T00:58:00Z' + - 'Ref A: 46D071BEF4954B1ABAC6FCA8815F9695 Ref B: SYD281080712036 Ref C: 2026-09-10T06:44:15Z' status: code: 200 message: OK @@ -76,25 +76,25 @@ interactions: ParameterSetName: - -n --subnet-name -g -l User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2025-07-01 response: body: - string: '{"name":"agentvnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets","etag":"W/\"63bf77f9-4247-4ab7-91e3-04ed69a61c88\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Updating","resourceGuid":"30feb2a5-be63-42e8-8e0b-b59c94097a8b","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"agentsubnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","etag":"W/\"63bf77f9-4247-4ab7-91e3-04ed69a61c88\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"agentvnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets","etag":"W/\"7b215d5f-ab03-49e7-99ba-4b66f0922550\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Updating","resourceGuid":"d60daa44-da68-4767-983a-bc10c6a8ceaa","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"agentsubnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","etag":"W/\"7b215d5f-ab03-49e7-99ba-4b66f0922550\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2bd1bb7e-7ab2-4671-9566-c051a1983d4b?api-version=2024-07-01&t=639099106894811502&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ALC_QW2DNYnMHUWJJYe3FLE1p_y7vLk_FcDQdIsYaLJ_kud8GJwacjJigCc8cGY2lrbeQAfg8QR15DdOFdydSzkW4yjY72yEIPgmT__8ebTHLhl9sod_eh1vLoQhaUTKfXyLTylFKNEf3P9fHFnT2xJbx_eFYnX1DGpFxL7jTOfElPIs4LuAS7OMMB_kQec2PrYm9vnfOC1LPEEtwJ4m_Y92PLDuKj_JyHYPomnHG9neIVZUO6y_aOK_4Ey6D8DXqV32a9tcIP9Cxot5McUfvSkObeFAJtMWv165yZy28Ix-DkbS2yI6GqWdgcka2GifRNZZjPEhmuhp2presnOfLg&h=rF5h3zev4RKZ698WUrG-Mwr6QInl9QfqSnrwubN16Kw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2f5f7418-cf1b-4d6f-8a77-41ea840e365a?api-version=2025-07-01&t=639246194643529597&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Bj7qBVVzMAtLoI9QMxjDqJQtpurGQs-n8XrYYwVuNyqBVuvtSLr3Fj7AgFgq-a-2m5br5aoIVizy42x_Sm9MbatesPlRXpnzRGhDbivXk3t6FwsFVdxXzpijcSzXIo-t8ojmHmTTaHaNzk6XdIttRIomLIoAOVIqLZgtVZQmPqLmN76lyvV4yrmcucc35k_WpCdnyG7rbRo-fr2juEk4E5P1Be_UMmoXKW2ZIAYDRvGY-HC9qCSqakcVmrckiWhwUCrn3qpeHBG6OkRzFehF2aZSGji0c1uYLjOx4Efw4zmhVHFNrpeMB10lnzf5yMXz_Q7v0-iFF3QPfWAhRHFe4Q&h=5lk7IdxDEUtD8h3d-2O8MQTH1wmo0AWBPhPxp-N5KbA cache-control: - no-cache content-length: - - '1020' + - '1050' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:08 GMT + - Thu, 10 Sep 2026 06:44:23 GMT expires: - '-1' pragma: @@ -106,15 +106,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee92b323-e390-4769-b10e-272a29278064 + - 16046a77-34bf-4216-86a9-7c6612daa38a x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/954145ca-a133-4427-9a30-5a2689284710 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/2b4a270a-0e72-47f5-b853-e56c6190d4a8 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: D5E8EE0E937D45B7A7EADB6F20CE923C Ref B: SJC211051204035 Ref C: 2026-03-24T00:58:08Z' + - 'Ref A: B48A492D2E5C4A678881DB677A7BBBC1 Ref B: SYD281080706040 Ref C: 2026-09-10T06:44:21Z' status: code: 201 message: Created @@ -132,9 +135,9 @@ interactions: ParameterSetName: - -n --subnet-name -g -l User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2bd1bb7e-7ab2-4671-9566-c051a1983d4b?api-version=2024-07-01&t=639099106894811502&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ALC_QW2DNYnMHUWJJYe3FLE1p_y7vLk_FcDQdIsYaLJ_kud8GJwacjJigCc8cGY2lrbeQAfg8QR15DdOFdydSzkW4yjY72yEIPgmT__8ebTHLhl9sod_eh1vLoQhaUTKfXyLTylFKNEf3P9fHFnT2xJbx_eFYnX1DGpFxL7jTOfElPIs4LuAS7OMMB_kQec2PrYm9vnfOC1LPEEtwJ4m_Y92PLDuKj_JyHYPomnHG9neIVZUO6y_aOK_4Ey6D8DXqV32a9tcIP9Cxot5McUfvSkObeFAJtMWv165yZy28Ix-DkbS2yI6GqWdgcka2GifRNZZjPEhmuhp2presnOfLg&h=rF5h3zev4RKZ698WUrG-Mwr6QInl9QfqSnrwubN16Kw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2f5f7418-cf1b-4d6f-8a77-41ea840e365a?api-version=2025-07-01&t=639246194643529597&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Bj7qBVVzMAtLoI9QMxjDqJQtpurGQs-n8XrYYwVuNyqBVuvtSLr3Fj7AgFgq-a-2m5br5aoIVizy42x_Sm9MbatesPlRXpnzRGhDbivXk3t6FwsFVdxXzpijcSzXIo-t8ojmHmTTaHaNzk6XdIttRIomLIoAOVIqLZgtVZQmPqLmN76lyvV4yrmcucc35k_WpCdnyG7rbRo-fr2juEk4E5P1Be_UMmoXKW2ZIAYDRvGY-HC9qCSqakcVmrckiWhwUCrn3qpeHBG6OkRzFehF2aZSGji0c1uYLjOx4Efw4zmhVHFNrpeMB10lnzf5yMXz_Q7v0-iFF3QPfWAhRHFe4Q&h=5lk7IdxDEUtD8h3d-2O8MQTH1wmo0AWBPhPxp-N5KbA response: body: string: '{"status":"InProgress"}' @@ -146,7 +149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:09 GMT + - Thu, 10 Sep 2026 06:44:24 GMT expires: - '-1' pragma: @@ -158,13 +161,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a138a29-5609-469c-8a53-8f2c5a4b2b13 + - 0856ffc3-33d1-444d-b287-bf74b37c1f51 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f00a6096-f67b-4863-8ad7-6ea59494793f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f48b1f00-595a-4a2b-bff2-a9f3af71d4f6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: F1193C02B19240B88502653090F570FC Ref B: BY1AA1072320025 Ref C: 2026-03-24T00:58:09Z' + - 'Ref A: 2C657D030BCC4B049D55114580B64F45 Ref B: SYD281080707042 Ref C: 2026-09-10T06:44:24Z' status: code: 200 message: OK @@ -182,9 +187,9 @@ interactions: ParameterSetName: - -n --subnet-name -g -l User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2bd1bb7e-7ab2-4671-9566-c051a1983d4b?api-version=2024-07-01&t=639099106894811502&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ALC_QW2DNYnMHUWJJYe3FLE1p_y7vLk_FcDQdIsYaLJ_kud8GJwacjJigCc8cGY2lrbeQAfg8QR15DdOFdydSzkW4yjY72yEIPgmT__8ebTHLhl9sod_eh1vLoQhaUTKfXyLTylFKNEf3P9fHFnT2xJbx_eFYnX1DGpFxL7jTOfElPIs4LuAS7OMMB_kQec2PrYm9vnfOC1LPEEtwJ4m_Y92PLDuKj_JyHYPomnHG9neIVZUO6y_aOK_4Ey6D8DXqV32a9tcIP9Cxot5McUfvSkObeFAJtMWv165yZy28Ix-DkbS2yI6GqWdgcka2GifRNZZjPEhmuhp2presnOfLg&h=rF5h3zev4RKZ698WUrG-Mwr6QInl9QfqSnrwubN16Kw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2f5f7418-cf1b-4d6f-8a77-41ea840e365a?api-version=2025-07-01&t=639246194643529597&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Bj7qBVVzMAtLoI9QMxjDqJQtpurGQs-n8XrYYwVuNyqBVuvtSLr3Fj7AgFgq-a-2m5br5aoIVizy42x_Sm9MbatesPlRXpnzRGhDbivXk3t6FwsFVdxXzpijcSzXIo-t8ojmHmTTaHaNzk6XdIttRIomLIoAOVIqLZgtVZQmPqLmN76lyvV4yrmcucc35k_WpCdnyG7rbRo-fr2juEk4E5P1Be_UMmoXKW2ZIAYDRvGY-HC9qCSqakcVmrckiWhwUCrn3qpeHBG6OkRzFehF2aZSGji0c1uYLjOx4Efw4zmhVHFNrpeMB10lnzf5yMXz_Q7v0-iFF3QPfWAhRHFe4Q&h=5lk7IdxDEUtD8h3d-2O8MQTH1wmo0AWBPhPxp-N5KbA response: body: string: '{"status":"Succeeded"}' @@ -196,7 +201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:19 GMT + - Thu, 10 Sep 2026 06:44:35 GMT expires: - '-1' pragma: @@ -208,13 +213,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b75b98f-e84d-4a4e-8e77-4cc9f5824c81 + - 8d37e20e-305a-4d28-9d9b-63f871668817 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/c9e87daf-3e96-4a7e-a340-a41eabbda1a8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/0b080b1e-70dd-4e34-9ac9-69dd4f735a02 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 28BD0848D528469395152900DF1C89F8 Ref B: SJC211051203017 Ref C: 2026-03-24T00:58:20Z' + - 'Ref A: 7C45281A6BEF4BAA948406EE6F2C704B Ref B: SYD281080709054 Ref C: 2026-09-10T06:44:35Z' status: code: 200 message: OK @@ -232,23 +239,21 @@ interactions: ParameterSetName: - -n --subnet-name -g -l User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2025-07-01 response: body: - string: '{"name":"agentvnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets","etag":"W/\"43a7b2db-cfae-4821-9af3-7991671f9181\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"30feb2a5-be63-42e8-8e0b-b59c94097a8b","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"agentsubnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","etag":"W/\"43a7b2db-cfae-4821-9af3-7991671f9181\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"agentvnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets","etag":"W/\"c3c95951-b4fa-4e6d-95e8-bc8f815253e3\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"d60daa44-da68-4767-983a-bc10c6a8ceaa","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"agentsubnets","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","etag":"W/\"c3c95951-b4fa-4e6d-95e8-bc8f815253e3\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1022' + - '1052' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:19 GMT - etag: - - W/"43a7b2db-cfae-4821-9af3-7991671f9181" + - Thu, 10 Sep 2026 06:44:35 GMT expires: - '-1' pragma: @@ -260,11 +265,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 765e9b65-ca52-4712-98f6-4dcc4e165049 + - f9495380-3223-4a51-a399-522e795459e2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=2.0, etc x-msedge-ref: - - 'Ref A: 197B820D724A4BB29C2E368DE97D84CB Ref B: BY1AA1072318029 Ref C: 2026-03-24T00:58:20Z' + - 'Ref A: E83F14B7DE2345248FE8FFD59D3B670A Ref B: SYD281080712025 Ref C: 2026-09-10T06:44:36Z' status: code: 200 message: OK @@ -282,21 +289,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_rfg4nbcwqcmsnfjopk2mwdic5ttw4lhg5jxkitxxgoexynkw67i6726uc3/providers/Microsoft.ContainerRegistry/registries/clitestrbacidrlh","name":"clitestrbacidrlh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:00.3314344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:00.3314344Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}}]}' headers: cache-control: - no-cache content-length: - - '2185' + - '2804' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:20 GMT + - Thu, 10 Sep 2026 06:44:36 GMT expires: - '-1' pragma: @@ -310,7 +317,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 942B6C8F6F924CC79F88E708E4A41924 Ref B: SJC211051201047 Ref C: 2026-03-24T00:58:20Z' + - 'Ref A: C74D631B1EC84800867331C6A44900A3 Ref B: SYD281080706025 Ref C: 2026-09-10T06:44:36Z' status: code: 200 message: OK @@ -328,23 +335,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:17.4380504Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:19.6260655+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:19.6261047+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:21 GMT + - Thu, 10 Sep 2026 06:44:37 GMT expires: - '-1' pragma: @@ -358,12 +365,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 101DF6CBC58F4A479D3626A9F051A0D2 Ref B: SJC211051203033 Ref C: 2026-03-24T00:58:21Z' + - 'Ref A: FCE2316806A34779AC1F73F6D39AA14C Ref B: SYD281080707052 Ref C: 2026-09-10T06:44:37Z' status: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"tier": "S1", "count": 1, "os": "Linux"}}' + body: '{"location": "eastus", "properties": {"count": 1, "tier": "S1", "os": "Linux"}}' headers: Accept: - application/json @@ -380,15 +387,15 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:22.3352729+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:22.3352729+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:38.7950142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:38.7950142+00:00"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk cache-control: - no-cache content-length: @@ -396,7 +403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:21 GMT + - Thu, 10 Sep 2026 06:44:38 GMT expires: - '-1' pragma: @@ -408,13 +415,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/af66554b-bcda-4ebc-a957-01cec2f7ad59 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/de307368-00e1-4343-89ab-a75e5e4faf50 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1847D0330E6843029440CB3B070E4A92 Ref B: BY1AA1072316052 Ref C: 2026-03-24T00:58:21Z' + - 'Ref A: 400AC8FA85194B6DB49FB18954F19DF4 Ref B: SYD281080707025 Ref C: 2026-09-10T06:44:38Z' status: code: 201 message: Created @@ -432,9 +439,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -446,7 +453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:22 GMT + - Thu, 10 Sep 2026 06:44:39 GMT expires: - '-1' pragma: @@ -458,11 +465,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5b9b20d8-4a42-4096-82cd-1c127c75c8ac + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/bf5f57c3-5379-47c1-ac9b-7ceec25fd6a3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CCF1144A13A748049C6F80606E5D3990 Ref B: BY1AA1072317034 Ref C: 2026-03-24T00:58:23Z' + - 'Ref A: 25A6BC5E3E19493B904C7F0F4A0CE9F8 Ref B: SYD281080709031 Ref C: 2026-09-10T06:44:39Z' status: code: 200 message: OK @@ -480,9 +487,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -494,7 +501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:58:54 GMT + - Thu, 10 Sep 2026 06:45:11 GMT expires: - '-1' pragma: @@ -506,11 +513,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b7833e05-d582-4013-b452-5af9cb90ad97 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ce07f0b2-a37f-4317-b39f-9cf90611d9a2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FD66F0AFC85C409292E66CDD840B6588 Ref B: BY1AA1072315054 Ref C: 2026-03-24T00:58:53Z' + - 'Ref A: 21164F0775704CE4B235D8DA755A817C Ref B: SYD281080706036 Ref C: 2026-09-10T06:45:11Z' status: code: 200 message: OK @@ -528,9 +535,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -542,7 +549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:59:24 GMT + - Thu, 10 Sep 2026 06:45:41 GMT expires: - '-1' pragma: @@ -554,11 +561,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1558d222-88bc-49a3-ac83-b927bbe9c72d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d4353010-1f80-4d1b-b986-47a2fbff589d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BB96ED7A79F24C18A379EE67DA28CB6C Ref B: BY1AA1072319054 Ref C: 2026-03-24T00:59:24Z' + - 'Ref A: A57D5E4F46BE49648F6E3DC2B2203E91 Ref B: SYD281080708054 Ref C: 2026-09-10T06:45:42Z' status: code: 200 message: OK @@ -576,9 +583,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -590,7 +597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:59:55 GMT + - Thu, 10 Sep 2026 06:46:13 GMT expires: - '-1' pragma: @@ -602,11 +609,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/e635ab37-ff38-4473-b97b-30fd895bdcfd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fe954ae0-ac0c-4211-9c6c-a8ece5e6fbce x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8B19AA860B274C6EA654C3473549BF78 Ref B: BY1AA1072320040 Ref C: 2026-03-24T00:59:55Z' + - 'Ref A: 005227907D9A43E7A0F4546CE5256831 Ref B: SYD281080708062 Ref C: 2026-09-10T06:46:13Z' status: code: 200 message: OK @@ -624,9 +631,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -638,7 +645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:00:25 GMT + - Thu, 10 Sep 2026 06:46:44 GMT expires: - '-1' pragma: @@ -650,11 +657,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/65053637-e1f4-48e8-bd01-d1be11ccec4a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/10ab2159-665f-43a6-a783-7f116d09c6b6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2C42F7EABBAD44C38F99FAEC9DAF3DD8 Ref B: SJC211051204037 Ref C: 2026-03-24T01:00:25Z' + - 'Ref A: 0C93CFF9B38D499FA2EBB7B9727F1C77 Ref B: SYD281080712062 Ref C: 2026-09-10T06:46:44Z' status: code: 200 message: OK @@ -672,9 +679,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -686,7 +693,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:00:56 GMT + - Thu, 10 Sep 2026 06:47:15 GMT expires: - '-1' pragma: @@ -698,11 +705,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/742b198d-a710-4fda-900a-5634ad66bddb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a8910d08-466e-401e-9774-570b54545413 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C98DF7A9679B4DF895D186AB94687A24 Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:00:56Z' + - 'Ref A: 0B7A712BA70F4690AFC4F41364458EBC Ref B: SYD281080705023 Ref C: 2026-09-10T06:47:15Z' status: code: 200 message: OK @@ -720,9 +727,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -734,7 +741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:01:26 GMT + - Thu, 10 Sep 2026 06:47:45 GMT expires: - '-1' pragma: @@ -746,11 +753,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/fcded12c-604a-491d-8a2a-59d68a9db7c9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/efd20769-cf8e-4bd4-8d51-048101508c0f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 28C9F066DA9E482F99C1D00C4D4935D1 Ref B: BY1AA1072315023 Ref C: 2026-03-24T01:01:26Z' + - 'Ref A: 3BC0D657A9054CE9B6BD083097547822 Ref B: SYD281080712062 Ref C: 2026-09-10T06:47:46Z' status: code: 200 message: OK @@ -768,9 +775,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -782,7 +789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:01:57 GMT + - Thu, 10 Sep 2026 06:48:16 GMT expires: - '-1' pragma: @@ -794,11 +801,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/700a5bfe-413d-4dc6-96a4-9d9eb1f6c8a7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f0d40c2d-f5b0-457b-a04d-2c5dde2dde1b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0C20728E7AD64F05BED996B59295B721 Ref B: BY1AA1072317029 Ref C: 2026-03-24T01:01:57Z' + - 'Ref A: 3487E2E7994F4A3D8F0FED81ECE963A3 Ref B: SYD281080708034 Ref C: 2026-09-10T06:48:17Z' status: code: 200 message: OK @@ -816,9 +823,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: string: '{"status":"Creating"}' @@ -830,7 +837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:02:28 GMT + - Thu, 10 Sep 2026 06:48:48 GMT expires: - '-1' pragma: @@ -842,11 +849,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9ea4401d-f2d6-4fd9-ac12-b9a5f5b48c52 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/64abdce8-d092-4457-b360-2f1242a5df05 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0CAAF561230F48A0A8674FD501F2C69B Ref B: BY1AA1072319029 Ref C: 2026-03-24T01:02:28Z' + - 'Ref A: 06572FD03F0047979F723D57545A8C6F Ref B: SYD281080707052 Ref C: 2026-09-10T06:48:48Z' status: code: 200 message: OK @@ -864,21 +871,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/ca4a84c0-df2c-400a-97b8-4065375e7f27?api-version=2025-03-01-preview&t=639246194792638838&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xqm4tfSB0DbRAz5FJruYbs-ZKYR5ncpVWazhlNVHbFkY2wh9mwzJI7nkNPDpoYcRxfQGgpNyYXjTOC9nN-1NgH4KI6pak0ZBGFj8jheA0-J_wVpObuyWFWgsbnkD5AoMoi5wUi4wDkT-yh8Ry7EzbaNcXyTNec2Ho0OgJ1oY1_fqb-sP4HHKDOqKg24BGxCwS08SsQVz44xFA8OduK4VzdBLqsrFvMD1_rITK7ylrBTFZPPP3PqlFPFf4-QEmh5fsFiOvFuK8Z8Z9n73SL-cg1-twIPkVYanrTn_ElPF-8VpIxPF0Ee-JW4XSEMgYRunnjo-1xwec4PlTFnYjvGuHg&h=iQKXwGDtrdZEkT51QQj9CMnY0RKow3HdBRxXhh26DWk response: body: - string: '{"status":"Creating"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:02:58 GMT + - Thu, 10 Sep 2026 06:49:19 GMT expires: - '-1' pragma: @@ -890,11 +897,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/349bac38-86a9-49f0-8cff-1d6e6ef02f25 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1e1f0506-adad-4059-96d9-fb0b44c5681f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7271ED2DD6514DE6BD07CB7997357AE8 Ref B: BY1AA1072316031 Ref C: 2026-03-24T01:02:58Z' + - 'Ref A: BC704E243CAA4E74A621D4054084B103 Ref B: SYD281080706025 Ref C: 2026-09-10T06:49:19Z' status: code: 200 message: OK @@ -912,21 +919,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2025-03-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:38.7950142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:38.7950142+00:00"}}' headers: cache-control: - no-cache content-length: - - '21' + - '585' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:03:29 GMT + - Thu, 10 Sep 2026 06:49:20 GMT expires: - '-1' pragma: @@ -937,12 +944,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/402a2d9e-3512-4e44-a4c7-57f449c6a877 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD91BB3DF6F746E88FE3668B65D50126 Ref B: SJC211051204023 Ref C: 2026-03-24T01:03:29Z' + - 'Ref A: 18531E7839974A70BA1C83FCAD964A9F Ref B: SYD281080709025 Ref C: 2026-09-10T06:49:20Z' status: code: 200 message: OK @@ -950,7 +955,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -958,23 +963,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"status":"Creating"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentitykuxrye6ngdnvb5jgxs":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '21' + - '4993' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:04:00 GMT + - Thu, 10 Sep 2026 06:49:22 GMT expires: - '-1' pragma: @@ -985,12 +990,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f83b5ddd-1a29-4d13-b23d-b4fb33d3d82a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 642B115FC916452B97E544F481CDF31F Ref B: BY1AA1072318036 Ref C: 2026-03-24T01:04:00Z' + - 'Ref A: 383F1AA971BF4AFA953D5DEABA5291DA Ref B: SYD281080709025 Ref C: 2026-09-10T06:49:21Z' status: code: 200 message: OK @@ -998,7 +1001,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1006,23 +1009,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f6457787-b822-4078-9679-98b192c25cfc?api-version=2025-03-01-preview&t=639099107028821788&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jfSv2M7CeLpFAWi1D95UiWAWpbyeIuNtmxLAj65Gv1unTUFFXUNkjhTLYvepOhcSNcnK8gEI3WmH_2j4bW0mD1lw4akip_Y5bjkyRym15iaTK91eH0A6QflPVsSUaxsxxmtC5tWVvy4qtSii9s3hjN0qm5Dgv5DC9_ybavwfhqZeuY9BNSkmSV0ZxxBJFHIBXns2TXBLrTnikK6_V0fiSb8JVC8uQvfKINGFmbdOlYJasM7i4fs__uta6fiqbuwGZsrPZnogfcbeMbFKIZLu9qh4-n5fMbrXdtRpnf5fFtdJDCW2NCFBqgRsz_-LiOglKWeWZkVnW-0Vumar9iABRw&h=t0cCcooc44YgwAGZr0zqWdDZUlzHpOXxy9nDViNHTj0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:17.4380504Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:19.6260655+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:19.6261047+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: + api-supported-versions: + - 2026-09-01-preview cache-control: - no-cache content-length: - - '22' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:04:30 GMT + - Thu, 10 Sep 2026 06:49:22 GMT expires: - '-1' pragma: @@ -1033,44 +1038,50 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f34e573f-8cf7-410a-b5af-01521f66c40c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2594EB5DC9AA4661A247560091F2858B Ref B: BY1AA1072319040 Ref C: 2026-03-24T01:04:30Z' + - 'Ref A: E7A4F993F7954E3B911899530547B018 Ref B: SYD281080706023 Ref C: 2026-09-10T06:49:22Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"count": 1, "virtualNetworkSubnetResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets", + "tier": "S2", "os": "Linux"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - acr agentpool create Connection: - keep-alive + Content-Length: + - '276' + Content-Type: + - application/json ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2025-03-01-preview + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:22.3352729+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:22.3352729+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:24.2733643+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:24.2733643+00:00"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk cache-control: - no-cache content-length: - - '585' + - '779' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:04:31 GMT + - Thu, 10 Sep 2026 06:49:24 GMT expires: - '-1' pragma: @@ -1081,18 +1092,22 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/dec9675b-d19c-4014-9679-b8ae2969ddcb + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' x-msedge-ref: - - 'Ref A: D0A91900D5154CA6AB1D4243CD5F19C1 Ref B: BY1AA1072319042 Ref C: 2026-03-24T01:04:31Z' + - 'Ref A: 3898A256813141EAB86FC72EE24BE900 Ref B: SYD281080710025 Ref C: 2026-09-10T06:49:23Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1102,21 +1117,21 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272Z"}}]}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '2185' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:04:31 GMT + - Thu, 10 Sep 2026 06:49:25 GMT expires: - '-1' pragma: @@ -1127,10 +1142,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d6769b5d-2ff1-401f-b7cd-5420fb7934e1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 13A127685C6C4E02AD79583CBCEE9E7C Ref B: SJC211051201027 Ref C: 2026-03-24T01:04:31Z' + - 'Ref A: 87FB5629D46A4AD9B86BD3FF2E546317 Ref B: SYD281080705054 Ref C: 2026-09-10T06:49:25Z' status: code: 200 message: OK @@ -1138,7 +1155,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1148,23 +1165,21 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"status":"Creating"}' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1665' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:04:31 GMT + - Thu, 10 Sep 2026 06:49:56 GMT expires: - '-1' pragma: @@ -1175,49 +1190,44 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a1da0d39-6c65-4d7d-96a7-8dd8d664d732 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 14FCCEA0C5A44001A127AB2305055EEB Ref B: BY1AA1072317042 Ref C: 2026-03-24T01:04:31Z' + - 'Ref A: C2C6B9766A6E4782A17A98777EA85F02 Ref B: SYD281080711034 Ref C: 2026-09-10T06:49:56Z' status: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"tier": "S2", "count": 1, "os": "Linux", - "virtualNetworkSubnetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - acr agentpool create Connection: - keep-alive - Content-Length: - - '276' - Content-Type: - - application/json ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2025-03-01-preview + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:04:32.6302976+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:04:32.6302976+00:00"}}' + string: '{"status":"Creating"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs cache-control: - no-cache content-length: - - '779' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:04:32 GMT + - Thu, 10 Sep 2026 06:50:28 GMT expires: - '-1' pragma: @@ -1229,16 +1239,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c8197052-f84e-448f-b00f-edbd94045734 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0b8240bf-55e4-4aa8-a99e-1fad69848bdc + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: A47C76E3511E41999D5BD656F09D4EF9 Ref B: BY1AA1072320040 Ref C: 2026-03-24T01:04:32Z' + - 'Ref A: 2839E1A67B8D4999B51A331EF154AC7E Ref B: SYD281080712062 Ref C: 2026-09-10T06:50:27Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1253,9 +1261,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1267,7 +1275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:04:33 GMT + - Thu, 10 Sep 2026 06:50:58 GMT expires: - '-1' pragma: @@ -1279,11 +1287,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2fa43f04-9596-44c4-bcae-59990f13d4d8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/eb769564-ece4-4861-bd77-456f725329c1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C20C21705E10419ABDC61E7ABC912EBF Ref B: SJC211051205035 Ref C: 2026-03-24T01:04:33Z' + - 'Ref A: 2BEAFFEDB4A7473BB416148ADBD8177D Ref B: SYD281080710036 Ref C: 2026-09-10T06:50:58Z' status: code: 200 message: OK @@ -1301,9 +1309,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1315,7 +1323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:05:04 GMT + - Thu, 10 Sep 2026 06:51:29 GMT expires: - '-1' pragma: @@ -1327,11 +1335,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f0cdcb5e-b251-4f27-b117-44a2e42fadff + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/477e06aa-1614-453e-8664-cad9f7163d4e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D17C483146E445DB98F7108E9FA09E5C Ref B: SJC211051203051 Ref C: 2026-03-24T01:05:03Z' + - 'Ref A: 33019EDFA98F474D9CE08F8033FBFCF4 Ref B: SYD281080708034 Ref C: 2026-09-10T06:51:29Z' status: code: 200 message: OK @@ -1349,9 +1357,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1363,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:05:34 GMT + - Thu, 10 Sep 2026 06:52:01 GMT expires: - '-1' pragma: @@ -1375,11 +1383,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d99ae056-e065-49ba-b253-f8113916e563 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ea3f6aa9-728c-4d83-bb3e-35fc89eb803d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4A94B944C2E94D149A8703D602B62252 Ref B: BY1AA1072320023 Ref C: 2026-03-24T01:05:34Z' + - 'Ref A: D6DA5C740BEA48189914EAE248CFE2B9 Ref B: SYD281080707054 Ref C: 2026-09-10T06:52:00Z' status: code: 200 message: OK @@ -1397,9 +1405,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1411,7 +1419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:06:05 GMT + - Thu, 10 Sep 2026 06:52:31 GMT expires: - '-1' pragma: @@ -1423,11 +1431,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/56714d2c-1320-4c41-b8ad-3145654b9cb1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/190d79f3-23f8-49a1-9db0-983494689616 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8A0D619E19CF41B29A9A1F3C9A4E8A85 Ref B: BY1AA1072318034 Ref C: 2026-03-24T01:06:05Z' + - 'Ref A: C4663759A05C4C2187B199B40CF55797 Ref B: SYD281080709054 Ref C: 2026-09-10T06:52:32Z' status: code: 200 message: OK @@ -1445,9 +1453,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1459,7 +1467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:06:36 GMT + - Thu, 10 Sep 2026 06:53:03 GMT expires: - '-1' pragma: @@ -1471,11 +1479,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b718e6f1-7ba7-4342-8aa8-adf4795e9764 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/72efc346-3bab-46c0-981e-5770974f366d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 67648C924CB24893923DB030FF63A2DB Ref B: SJC211051205039 Ref C: 2026-03-24T01:06:35Z' + - 'Ref A: FC2DB79E48414F1AA5530A8C5FB357EF Ref B: SYD281080705062 Ref C: 2026-09-10T06:53:03Z' status: code: 200 message: OK @@ -1493,9 +1501,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1507,7 +1515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:07:05 GMT + - Thu, 10 Sep 2026 06:53:34 GMT expires: - '-1' pragma: @@ -1519,11 +1527,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3e927934-8ada-4e1b-a46d-dfbac984603b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ecbf476f-37d9-40b2-a84a-861992c5d9ae x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C850FF0996804F03AE1B670F935185F7 Ref B: SJC211051203023 Ref C: 2026-03-24T01:07:06Z' + - 'Ref A: 5901482444024840B30065A4F2487412 Ref B: SYD281080710025 Ref C: 2026-09-10T06:53:34Z' status: code: 200 message: OK @@ -1541,9 +1549,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1555,7 +1563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:07:37 GMT + - Thu, 10 Sep 2026 06:54:05 GMT expires: - '-1' pragma: @@ -1567,11 +1575,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/88fbee45-e181-44df-89d2-9003daf8fddd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6d399893-9451-4353-8dd7-23c3d2fab8b4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 41926D8982D441B38B1392840C586052 Ref B: SJC211051205027 Ref C: 2026-03-24T01:07:37Z' + - 'Ref A: E4A02DB2B4E64A30AD37BAAFEEB0F232 Ref B: SYD281080706054 Ref C: 2026-09-10T06:54:05Z' status: code: 200 message: OK @@ -1589,9 +1597,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1603,7 +1611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:08:07 GMT + - Thu, 10 Sep 2026 06:54:36 GMT expires: - '-1' pragma: @@ -1615,11 +1623,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/fd744def-3624-453c-a4c6-3eccc8ac2fc9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/da8a9bdf-74a5-42db-a3c3-65151e3be2f0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D8B5B042F34C408FB0F1377864223AB1 Ref B: BY1AA1072318052 Ref C: 2026-03-24T01:08:07Z' + - 'Ref A: A5CBBC1678434281A9C7233008ECFD1E Ref B: SYD281080712040 Ref C: 2026-09-10T06:54:36Z' status: code: 200 message: OK @@ -1637,9 +1645,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1651,7 +1659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:08:38 GMT + - Thu, 10 Sep 2026 06:55:08 GMT expires: - '-1' pragma: @@ -1663,11 +1671,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3afa12b5-141c-479d-b50d-10bca74bf1e3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/13e13e0f-34ba-4302-a8b4-c68547ab9b63 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 22B15F22D9A74625A7939744E83AC201 Ref B: BY1AA1072319052 Ref C: 2026-03-24T01:08:38Z' + - 'Ref A: 21A640DDC2C84A6D8D3B7441880E55EB Ref B: SYD281080706054 Ref C: 2026-09-10T06:55:08Z' status: code: 200 message: OK @@ -1685,9 +1693,9 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: string: '{"status":"Creating"}' @@ -1699,7 +1707,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:09 GMT + - Thu, 10 Sep 2026 06:55:39 GMT expires: - '-1' pragma: @@ -1711,11 +1719,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/88487138-78b2-41f1-8b26-7773a5a05850 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8424e55b-a2fa-4b71-8a42-cf57d8d28132 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 275ABD83DB39431FBF44FEF7BA80312F Ref B: BY1AA1072317031 Ref C: 2026-03-24T01:09:08Z' + - 'Ref A: 990EBD2A35C04A8EA14DC18EA5926416 Ref B: SYD281080706040 Ref C: 2026-09-10T06:55:39Z' status: code: 200 message: OK @@ -1733,21 +1741,21 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/27232f74-0608-476b-9f99-4642e1d6a40c?api-version=2025-03-01-preview&t=639099110731303151&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MQ1UviSTSj3RiTnTF2DGgseQPUWlnQeQ9ek3S2wgGiTszr-qTI7CSm34Ba8k_VnkInMgTRMnW3TccO4wzzqnwwolVQCe2RO5MYClvXLjR5K3k2vkXJsepbdlqBQNhUI1QGHlAclsnHM7JGwAWBRiSQJiTtS8LeRUJxebDUE9ypLzyc0FHzyBKRbdYdUop3Mx57JGm6ymQ4AkJ_yn10V0lxnXaCWjzir3mt565dvNSZiblwCfJO25-RWktNNTMdVgRdEnMwiqKHCJ1kHtw8pg8Lu-qBfBJgiI0mwhH7qpE-XIHZgIcayHsZuoeEEJdk4_mVR8thfaejWqjWZ_jv-USQ&h=utmoXyDPpOBtKyKcNOcuSu1NZEUEWiLquBZUd2ARPbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:39 GMT + - Thu, 10 Sep 2026 06:56:09 GMT expires: - '-1' pragma: @@ -1759,11 +1767,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/deda0e1b-ed85-419b-8372-6a1cbb925f36 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ddce64cf-8556-4146-8ae6-965bf7f40fe3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6B051451EB224763A2030153033155D0 Ref B: SJC211051204039 Ref C: 2026-03-24T01:09:39Z' + - 'Ref A: 3569C306286E422AB05CC5830CD96CF3 Ref B: SYD281080710054 Ref C: 2026-09-10T06:56:10Z' status: code: 200 message: OK @@ -1781,21 +1789,21 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2025-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:04:32.6302976+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:04:32.6302976+00:00"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '780' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:39 GMT + - Thu, 10 Sep 2026 06:56:40 GMT expires: - '-1' pragma: @@ -1806,10 +1814,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a6ed4215-04c5-4e4b-86da-bce03f7010ab x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CA296DD16B9D434082EC1A63E80C172A Ref B: BY1AA1072316062 Ref C: 2026-03-24T01:09:40Z' + - 'Ref A: A26751CF6AD84F20BBE44A42EFCB868A Ref B: SYD281080706031 Ref C: 2026-09-10T06:56:41Z' status: code: 200 message: OK @@ -1817,31 +1827,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool list + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272Z"}}]}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '2185' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:40 GMT + - Thu, 10 Sep 2026 06:57:12 GMT expires: - '-1' pragma: @@ -1852,10 +1862,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4de99da2-40ee-4fe6-b815-746b1238a9f1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 967FE72A68834444ABE756F783F88AFA Ref B: SJC211051201021 Ref C: 2026-03-24T01:09:40Z' + - 'Ref A: 90D77E7DA9C342539642CB1FB278BD26 Ref B: SYD281080707040 Ref C: 2026-09-10T06:57:12Z' status: code: 200 message: OK @@ -1863,33 +1875,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool list + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"status":"Creating"}' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1665' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:40 GMT + - Thu, 10 Sep 2026 06:57:43 GMT expires: - '-1' pragma: @@ -1900,10 +1910,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8584f940-a15c-4a2a-887e-205dfda636f3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8C0581C3614A44AB98A5D06F7E234B3C Ref B: BY1AA1072316062 Ref C: 2026-03-24T01:09:41Z' + - 'Ref A: A09D05F6A2F241D0A4B730EC7EC6C213 Ref B: SYD281080705040 Ref C: 2026-09-10T06:57:43Z' status: code: 200 message: OK @@ -1911,31 +1923,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool list + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools?api-version=2025-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:04:32.6302976+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:04:32.6302976+00:00"}},{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:22.3352729+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:22.3352729+00:00"}}]}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '1378' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:41 GMT + - Thu, 10 Sep 2026 06:58:15 GMT expires: - '-1' pragma: @@ -1946,12 +1958,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-original-request-ids: - - e0bf5fc1-e552-472a-b0cd-81b346919e31 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/55b5b100-74e4-4abf-8e95-b532dd82b295 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BBBDF157B4714401B2D85CF535D3A5CD Ref B: BY1AA1072316036 Ref C: 2026-03-24T01:09:41Z' + - 'Ref A: 2CAD2114EE5F4AC4971A6D6BF9CAEFAF Ref B: SYD281080705029 Ref C: 2026-09-10T06:58:14Z' status: code: 200 message: OK @@ -1959,31 +1971,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272Z"}}]}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '2185' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:41 GMT + - Thu, 10 Sep 2026 06:58:46 GMT expires: - '-1' pragma: @@ -1994,10 +2006,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/16d71f5f-c31b-4286-a1e0-e8cd0e5e4813 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C7A6DED3552C4169B5C64E1271629A36 Ref B: BY1AA1072319031 Ref C: 2026-03-24T01:09:42Z' + - 'Ref A: 5C9C693D57CF4FBAABBC7DBD7F2345CC Ref B: SYD281080711052 Ref C: 2026-09-10T06:58:46Z' status: code: 200 message: OK @@ -2005,33 +2019,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"status":"Creating"}' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1665' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:42 GMT + - Thu, 10 Sep 2026 06:59:17 GMT expires: - '-1' pragma: @@ -2042,10 +2054,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d5c5d5f6-42c3-4601-b0e6-56194a9096c5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1A9707B4F77D4F0A9DE6B10931063439 Ref B: SJC211051204051 Ref C: 2026-03-24T01:09:42Z' + - 'Ref A: D0B3A7F710134E459AE1AD4A20900F03 Ref B: SYD281080710034 Ref C: 2026-09-10T06:59:17Z' status: code: 200 message: OK @@ -2057,33 +2071,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2025-03-01-preview + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:04:32.6302976+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:04:32.6302976+00:00"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '779' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:42 GMT + - Thu, 10 Sep 2026 06:59:48 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099113830536976&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=AU_yqKmsRF5qh6rWu7t3s54vmQHHr16bfQS89QvU_AWOPXxuF3N-Q6W2i5H9fQdFzGsGZ0PVVUy-Xns7YWzSbnjy5efZDg8f2CNP7WvgewEvZNS9-ScD_Guf90KPs_TYTOT5tKNShZQAj4mkxW-KlSglt_6VXNuqOez8LHp_S0wGXNI0dsiBY9xu9bzF7cJhg1X12bEbZfjkfMVjgoHCVrXTyihazelCuzLun6TZ59OJu2ZuOOVVx9AIC3T34l9UGyHtfAqn6t6kBeogA9_qkN3m7Cv-mmAsol285AbzNwK6pWH7THQMkitG8OF4c1g6hAXEV4GDY93HOruSxckOlA&h=2KjpaoX5Vyo_lR-UV7g-JrZlc8U70G9xn4GPdCprRy0 pragma: - no-cache strict-transport-security: @@ -2093,16 +2103,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/0a6e21f7-9aec-4baa-996a-55c4919a9f65 - x-ms-ratelimit-remaining-subscription-deletes: - - '799' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '11999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0d910347-ef5a-4c86-be11-d23e7ed279d5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: AFB2D54833194B6D8172DEF534113385 Ref B: BY1AA1072317034 Ref C: 2026-03-24T01:09:42Z' + - 'Ref A: CC24E335A3784482B38F491DD31C4EC6 Ref B: SYD281080707054 Ref C: 2026-09-10T06:59:48Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2111,31 +2119,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099113830536976&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=AU_yqKmsRF5qh6rWu7t3s54vmQHHr16bfQS89QvU_AWOPXxuF3N-Q6W2i5H9fQdFzGsGZ0PVVUy-Xns7YWzSbnjy5efZDg8f2CNP7WvgewEvZNS9-ScD_Guf90KPs_TYTOT5tKNShZQAj4mkxW-KlSglt_6VXNuqOez8LHp_S0wGXNI0dsiBY9xu9bzF7cJhg1X12bEbZfjkfMVjgoHCVrXTyihazelCuzLun6TZ59OJu2ZuOOVVx9AIC3T34l9UGyHtfAqn6t6kBeogA9_qkN3m7Cv-mmAsol285AbzNwK6pWH7THQMkitG8OF4c1g6hAXEV4GDY93HOruSxckOlA&h=2KjpaoX5Vyo_lR-UV7g-JrZlc8U70G9xn4GPdCprRy0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:42 GMT + - Thu, 10 Sep 2026 07:00:20 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099113836531649&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=OAttxYoYevZVjRX6k7sGhS6Zzo4HhTI97rDY5k0gStXJvippKeFRf_VnsIts7cQZxll64vrUiHHF25daryNO-LH-Pilz9yzeTWpQXfB4uS55Q4pl0cgZrYCXmLSOqb1-SKpDrCf-BssBdnWv04ih1Fz3qIlqyJaE8hrDSMG2RmOZGeCeV4258swrbLJ0hM7X_LS62xTd8dFXTuheGB0sRTUECU8kkC6M6JI0Mw6EwWNagBzxtHcp3Kh-txs4PeDkO94AmqDsSMgKrFVd7tdwJ2UBnfVII7eczLlG2sX8jAmrhNldZEq8aAh0JC8z2jmPXDTNGkDONyNkhNUo_aJrWw&h=tkTnSQy95rp0uIZbt8Tq3hFp4JgCVNstC8FKmQq2g_U pragma: - no-cache strict-transport-security: @@ -2145,14 +2151,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/e6627de5-58cd-4224-a45c-d7ba097781ab + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a808ce77-0cbe-4896-8290-a2bbe8939a74 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 055796C3A1FF400EAC515CE40D7C9B10 Ref B: SJC211051201037 Ref C: 2026-03-24T01:09:43Z' + - 'Ref A: 33FC06237A0644D2AD746C976C8A0BC3 Ref B: SYD281080712060 Ref C: 2026-09-10T07:00:19Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2161,31 +2167,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099113836531649&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=OAttxYoYevZVjRX6k7sGhS6Zzo4HhTI97rDY5k0gStXJvippKeFRf_VnsIts7cQZxll64vrUiHHF25daryNO-LH-Pilz9yzeTWpQXfB4uS55Q4pl0cgZrYCXmLSOqb1-SKpDrCf-BssBdnWv04ih1Fz3qIlqyJaE8hrDSMG2RmOZGeCeV4258swrbLJ0hM7X_LS62xTd8dFXTuheGB0sRTUECU8kkC6M6JI0Mw6EwWNagBzxtHcp3Kh-txs4PeDkO94AmqDsSMgKrFVd7tdwJ2UBnfVII7eczLlG2sX8jAmrhNldZEq8aAh0JC8z2jmPXDTNGkDONyNkhNUo_aJrWw&h=tkTnSQy95rp0uIZbt8Tq3hFp4JgCVNstC8FKmQq2g_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:09:53 GMT + - Thu, 10 Sep 2026 07:00:51 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099113942055351&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=o5LDhVwqpl7DrM9gP6cFxcOwoWv3RHfTOs3Z--LnIt_ncKTsdKRnNU57K9XUm3l3IrvElf2OEPpNQ4whS7BOTFM9V2jKpQwFsCfWkmaLWkDZ4dT_JCjBZVAfP6831SdMRqh5vsLXMk2iBPAvLR8-creSqEax2uJ21WAvH42xX09L27cDDW_TnpO89FFHxlKPe0C6ohjd5e7lhSc6gXSDOonv6HuIylpOIT0-yykwvisGH-fTYs8fLskRPF7k8asppYjCnasXrvqqrTxPnvmgBW2YGuTUOHl_6mIGBYJgDuH3YlW5SovVV-UEqbQBI7DM4sp-MEHArUlBNge1nFhexA&h=RoFtui-k9pgN0mKTG65IXAYS9sbAPvGSDOcBAECl8os pragma: - no-cache strict-transport-security: @@ -2195,14 +2199,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/68272046-4992-4345-a9da-324255d6e41b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/57acf7ca-5b03-4871-9dae-d135c0d129e8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4ED2B44F709746BCA203892FA7BD45D8 Ref B: BY1AA1072317040 Ref C: 2026-03-24T01:09:53Z' + - 'Ref A: 65860FDFC0C14264955C3D4B7869B942 Ref B: SYD281080705052 Ref C: 2026-09-10T07:00:51Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2211,31 +2215,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099113942055351&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=o5LDhVwqpl7DrM9gP6cFxcOwoWv3RHfTOs3Z--LnIt_ncKTsdKRnNU57K9XUm3l3IrvElf2OEPpNQ4whS7BOTFM9V2jKpQwFsCfWkmaLWkDZ4dT_JCjBZVAfP6831SdMRqh5vsLXMk2iBPAvLR8-creSqEax2uJ21WAvH42xX09L27cDDW_TnpO89FFHxlKPe0C6ohjd5e7lhSc6gXSDOonv6HuIylpOIT0-yykwvisGH-fTYs8fLskRPF7k8asppYjCnasXrvqqrTxPnvmgBW2YGuTUOHl_6mIGBYJgDuH3YlW5SovVV-UEqbQBI7DM4sp-MEHArUlBNge1nFhexA&h=RoFtui-k9pgN0mKTG65IXAYS9sbAPvGSDOcBAECl8os + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:04 GMT + - Thu, 10 Sep 2026 07:01:23 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114048212475&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Kq1ZN-U_fHAV2ctZlLgD8rHSrLO4ys25tQ9yJ8H_fmjutEiMD0C92MaqJrRL27mNya5zsX8ZOvLGUHONkjGAKvlN3G-e8AUFA0R9FOfRgvWWlBCQpSiwLfD3tdClu2Cq4CGB-JQMjgoBK_3RYsYgxTllOxkHmtn2hbYWPpGS9wRJwQM-zhRQuixnCopQ4G_fkgY6Fi_QXmNBglAvZibPnxleP_U83F45cAxmaqk0u8Mkd3v4bwBLrUollbz9O_Iz85EzcmhRT8pJEdEc0loDTchAO0YTpgf9TMlLOv2ydU3m5xt_mzfxups83uQm4V4JdUvkcbtLJue7DHv7A2R2rg&h=llxu5JLx6FhoA8N7_4u4K_UbD0r7tWFHel6ohAFbPLE pragma: - no-cache strict-transport-security: @@ -2245,14 +2247,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/dea275eb-a247-4b5d-ab97-7acca90e927d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3d74f4c1-1cb7-4b10-a79d-1f7c726ef359 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1F5E55FEBA93473585484CD9C60DA2D0 Ref B: SJC211051205039 Ref C: 2026-03-24T01:10:04Z' + - 'Ref A: F15139A7663340A0AE30115E362B2B18 Ref B: SYD281080709060 Ref C: 2026-09-10T07:01:22Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2261,27 +2263,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2025-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:04:32.6302976+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:04:32.6302976+00:00"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '779' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:13 GMT + - Thu, 10 Sep 2026 07:01:54 GMT expires: - '-1' pragma: @@ -2292,10 +2294,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2a0273c0-a9f9-4b44-a709-931b7bb767b1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0E8652B62E17461E9854D225BA72B7A7 Ref B: BY1AA1072315040 Ref C: 2026-03-24T01:10:13Z' + - 'Ref A: 231F34D25DD841D885CCF9B664E64A3F Ref B: SYD281080709040 Ref C: 2026-09-10T07:01:54Z' status: code: 200 message: OK @@ -2307,31 +2311,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114048212475&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Kq1ZN-U_fHAV2ctZlLgD8rHSrLO4ys25tQ9yJ8H_fmjutEiMD0C92MaqJrRL27mNya5zsX8ZOvLGUHONkjGAKvlN3G-e8AUFA0R9FOfRgvWWlBCQpSiwLfD3tdClu2Cq4CGB-JQMjgoBK_3RYsYgxTllOxkHmtn2hbYWPpGS9wRJwQM-zhRQuixnCopQ4G_fkgY6Fi_QXmNBglAvZibPnxleP_U83F45cAxmaqk0u8Mkd3v4bwBLrUollbz9O_Iz85EzcmhRT8pJEdEc0loDTchAO0YTpgf9TMlLOv2ydU3m5xt_mzfxups83uQm4V4JdUvkcbtLJue7DHv7A2R2rg&h=llxu5JLx6FhoA8N7_4u4K_UbD0r7tWFHel6ohAFbPLE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:14 GMT + - Thu, 10 Sep 2026 07:02:24 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114154555008&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=iTL6ZyHTWfy5-zqqIDqDwgucu2B041iP5M60FoaOxqP2S25CFdvj3MEkRXoEubn36Dt4vKN_Mon6E8bYY67cmvdxe5i6Zwt17D-VrekLpIgjLyRGX4HuFLIGrODZ_sQPjPZHzaANahDSrPzVulANemk1xDdpKvb_DTUR1RrP8SY4pBgZcxLF2ioFiq-bVok1DOahB8faCCz98jE6SMtWc8g7E8oGaztmWFKlgJF68_tRUTJ2Skdyt0geaOE9e2ZpvoU-3oHxxdmxK1_ljLyH09D6yPZS4aj7K0CAkcRBd4SXp1n34Y-p8kebz4iqmlydyCxRgS2iM_0bd-_EnQ4ZBg&h=Z82xyrXTdafAnS2J_gX91y147x35VA6-vRHwtqYnk3o pragma: - no-cache strict-transport-security: @@ -2341,14 +2343,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7a882d29-28b0-46af-b498-1900bc14fee7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/52e1561e-6088-44a5-b0c7-197aab0a8027 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4970BEE0F2114A449367C4CA87D97215 Ref B: BY1AA1072316060 Ref C: 2026-03-24T01:10:15Z' + - 'Ref A: C224A069FF704F86B23309C21861E986 Ref B: SYD281080705025 Ref C: 2026-09-10T07:02:25Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2357,31 +2359,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114154555008&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=iTL6ZyHTWfy5-zqqIDqDwgucu2B041iP5M60FoaOxqP2S25CFdvj3MEkRXoEubn36Dt4vKN_Mon6E8bYY67cmvdxe5i6Zwt17D-VrekLpIgjLyRGX4HuFLIGrODZ_sQPjPZHzaANahDSrPzVulANemk1xDdpKvb_DTUR1RrP8SY4pBgZcxLF2ioFiq-bVok1DOahB8faCCz98jE6SMtWc8g7E8oGaztmWFKlgJF68_tRUTJ2Skdyt0geaOE9e2ZpvoU-3oHxxdmxK1_ljLyH09D6yPZS4aj7K0CAkcRBd4SXp1n34Y-p8kebz4iqmlydyCxRgS2iM_0bd-_EnQ4ZBg&h=Z82xyrXTdafAnS2J_gX91y147x35VA6-vRHwtqYnk3o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:26 GMT + - Thu, 10 Sep 2026 07:02:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114261554537&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ef9T6DcgdWsuGdJTrAe4Ew8-6BV3_ttSRB2f0UUKeeTiOsLUygdlU1aqLxqwedKxt6xw3CLkYJJEYrC_IdvKB2d2Ljdzix7mEToJ040qScKEfRCGckNwJN1rNHBTakycMPsVrMZlF-UZusHBJziYlpRohlnKQ5yLgoeCuDvHZsnh8PrZlCmSZgumf8ryEinLIpV_gTCryInUuuzqNrKhOlPyUe4V-AGvqpU_Zk76-XFLn4yYb0e-grb69ilbH3bpQ8pDe7Y-PkPKdB0-Ol6nR_YuSsY_v0PPSEDwH5MEt72IPd2BPS3YX3Qn6Wx3Biv6gTl8Ck34bfgkbnqhbkAQLA&h=gQcr6Sx0cEoDlE4VRfhhDq3CrJOA4ujgA36XTdFZ6H4 pragma: - no-cache strict-transport-security: @@ -2391,14 +2391,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f9ad7711-523d-4fab-984f-5c03d0de90c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/da3495ae-d8b0-4fdc-a69b-08c05afa060f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D0D9ADD8BF5D40308DECCACBFBFE7AFF Ref B: BY1AA1072320034 Ref C: 2026-03-24T01:10:25Z' + - 'Ref A: 392245A43B1349CB9744BDC4420C37A3 Ref B: SYD281080708042 Ref C: 2026-09-10T07:02:56Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2407,31 +2407,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114261554537&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ef9T6DcgdWsuGdJTrAe4Ew8-6BV3_ttSRB2f0UUKeeTiOsLUygdlU1aqLxqwedKxt6xw3CLkYJJEYrC_IdvKB2d2Ljdzix7mEToJ040qScKEfRCGckNwJN1rNHBTakycMPsVrMZlF-UZusHBJziYlpRohlnKQ5yLgoeCuDvHZsnh8PrZlCmSZgumf8ryEinLIpV_gTCryInUuuzqNrKhOlPyUe4V-AGvqpU_Zk76-XFLn4yYb0e-grb69ilbH3bpQ8pDe7Y-PkPKdB0-Ol6nR_YuSsY_v0PPSEDwH5MEt72IPd2BPS3YX3Qn6Wx3Biv6gTl8Ck34bfgkbnqhbkAQLA&h=gQcr6Sx0cEoDlE4VRfhhDq3CrJOA4ujgA36XTdFZ6H4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:35 GMT + - Thu, 10 Sep 2026 07:03:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114367082650&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ANXUzBCQEmSfTN2Nv4JIt4bgbrlju6n99FaQ1lyNXinwRmswlIT9ZVX1ChYqpTEQ4Oh-ysjW7qk_1_xoe8h1A6kjmunH0ROpc1MRQe3b_q8qb4XvWCC9-H7twlmQd1eiwQRw0HYcmg5wSyDWTObkLnYuQBAPXpFYuLWnQ0aho_7qh9InHWVzpgpZUgXk4KbvJLg2dZv25UJHc3CMeoLpESBGIlHSNlKR9PkiEO2NPzhrqkUoB2DcBdEOI4dIlBdgykb6mNaj7ufgai7dVl7Ygj54BWqoXxjBbdO9q1SKCVEHQEj0JwsSGcz4wmWcuw6-QNp4XGervQlR3QEmlXTpkw&h=KRJerISxktj65uHtPNuRN85stEvSMRiWxf1DeGumB-k pragma: - no-cache strict-transport-security: @@ -2441,14 +2439,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3ffb3655-a5d2-4664-944b-7d17f810dfe9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6f321076-0869-4518-868d-4983a4245b26 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 982DB3D436AD4D389CA30BA152F851A5 Ref B: SJC211051203053 Ref C: 2026-03-24T01:10:36Z' + - 'Ref A: 136C3DEB9FB5459CB01F7A35A3FC0B58 Ref B: SYD281080707040 Ref C: 2026-09-10T07:03:27Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2457,27 +2455,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2025-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:04:32.6302976+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:04:32.6302976+00:00"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '779' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:43 GMT + - Thu, 10 Sep 2026 07:03:58 GMT expires: - '-1' pragma: @@ -2488,10 +2486,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/53839a0f-2f92-4afb-929c-19d25ee96685 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8AB763131FC44C84BADC88318EAF33C4 Ref B: BY1AA1072315042 Ref C: 2026-03-24T01:10:44Z' + - 'Ref A: 423545A9C59B41D4BFB616652C0546D6 Ref B: SYD281080705031 Ref C: 2026-09-10T07:03:58Z' status: code: 200 message: OK @@ -2503,31 +2503,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114367082650&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ANXUzBCQEmSfTN2Nv4JIt4bgbrlju6n99FaQ1lyNXinwRmswlIT9ZVX1ChYqpTEQ4Oh-ysjW7qk_1_xoe8h1A6kjmunH0ROpc1MRQe3b_q8qb4XvWCC9-H7twlmQd1eiwQRw0HYcmg5wSyDWTObkLnYuQBAPXpFYuLWnQ0aho_7qh9InHWVzpgpZUgXk4KbvJLg2dZv25UJHc3CMeoLpESBGIlHSNlKR9PkiEO2NPzhrqkUoB2DcBdEOI4dIlBdgykb6mNaj7ufgai7dVl7Ygj54BWqoXxjBbdO9q1SKCVEHQEj0JwsSGcz4wmWcuw6-QNp4XGervQlR3QEmlXTpkw&h=KRJerISxktj65uHtPNuRN85stEvSMRiWxf1DeGumB-k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:46 GMT + - Thu, 10 Sep 2026 07:04:29 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114472594784&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=cv0FnrHo0cJ_h7sC_FVSChGKbHKnpTkRhXO68g9O0J4T6Hf-bXKW5ZTaVbLqW4v0D9gvsMDgVSZb-AssMZmUdUBN6lmFfuQZhHE7PD8DYbvTJU10PF7PwIekfCbo2TDH2BlRvvZ-vi7Jc9CwOZfSmQYTPZmqsncK2DEQlkXsxHvoWsutRePmPlI9iZavterbqwFSraE7j4ws85fWCWC_-RGshQdsx1cF6lFlDFFbzw33UAWy9k2kxEEjB2ONM_5vLDxTrq8TXFsvweN0DWn-Ri8iz-kEfoDxG1PVI-g9FCYZsEpxHGRW5PRwhTmWWfx2P-1xzmJDceSopSK2f0DewQ&h=AGhELTa5UlYkxnHloWWckMp8aLIwrs_D4hUI9UV0PDk pragma: - no-cache strict-transport-security: @@ -2537,14 +2535,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f935d6d7-13dd-4815-91d7-1b14b1c1c917 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8ac14b18-9fcd-4e79-a710-ae7b039453da x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8EC91CA3C73F408C9F7B09343CD3B731 Ref B: BY1AA1072316023 Ref C: 2026-03-24T01:10:46Z' + - 'Ref A: 5A7A38D5D2104819A44C0264AA39F50A Ref B: SYD281080709025 Ref C: 2026-09-10T07:04:29Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2553,31 +2551,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114472594784&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=cv0FnrHo0cJ_h7sC_FVSChGKbHKnpTkRhXO68g9O0J4T6Hf-bXKW5ZTaVbLqW4v0D9gvsMDgVSZb-AssMZmUdUBN6lmFfuQZhHE7PD8DYbvTJU10PF7PwIekfCbo2TDH2BlRvvZ-vi7Jc9CwOZfSmQYTPZmqsncK2DEQlkXsxHvoWsutRePmPlI9iZavterbqwFSraE7j4ws85fWCWC_-RGshQdsx1cF6lFlDFFbzw33UAWy9k2kxEEjB2ONM_5vLDxTrq8TXFsvweN0DWn-Ri8iz-kEfoDxG1PVI-g9FCYZsEpxHGRW5PRwhTmWWfx2P-1xzmJDceSopSK2f0DewQ&h=AGhELTa5UlYkxnHloWWckMp8aLIwrs_D4hUI9UV0PDk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: 'null' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '4' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:10:57 GMT + - Thu, 10 Sep 2026 07:05:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114578507978&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=h30g4H4_3KpLQAMhPqtqlXcX8T77KDaXb1QM4_NEVD9CDX3wv52YBPZ3XS75i6V-VNSr9MP-UoB-5f8GAx564la4wHyL51-z3c0snViI7YNuWLFl6O0yfeMKZUKq0WDiquHbrMBd0n3s5gl46wT-CtdZP6MORL6vAIlCJRF0rfpfO8IazOIAIo6boYbunRnY7pcnjscTtPwSBAfvBHSrdWyybY3nfdnXu1ilj4ujBHAQkrzKKZXBFxhiCTOa8lq9fx3aheH3hkoVybu7AqMLp_1zRZRWlkAx_mzbyhYnUQvwMYhdhkwQzWqGiTiqqjMOatCVaDxovyijqigAgG8YzQ&h=UAQVPfMP40ESyGkdFF2TA-5PJ-KXppPTrWv-ZpkhJcA pragma: - no-cache strict-transport-security: @@ -2587,14 +2583,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4d9d8bd1-eb6f-43e5-bb5e-0992e40a6b9f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/cb54a2af-8bd9-4705-ac74-164e31a49149 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4FABD1A41F70470CB8C4193367CBEB9E Ref B: BY1AA1072318034 Ref C: 2026-03-24T01:10:57Z' + - 'Ref A: F6F72825609644F2B19ACC8640CBB00F Ref B: SYD281080710036 Ref C: 2026-09-10T07:05:00Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2603,23 +2599,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPoolsOperationResults/3f2be1af-f40a-42ae-93c5-dfdfc54aa05b/status?api-version=2025-03-01-preview&t=639099114578507978&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=h30g4H4_3KpLQAMhPqtqlXcX8T77KDaXb1QM4_NEVD9CDX3wv52YBPZ3XS75i6V-VNSr9MP-UoB-5f8GAx564la4wHyL51-z3c0snViI7YNuWLFl6O0yfeMKZUKq0WDiquHbrMBd0n3s5gl46wT-CtdZP6MORL6vAIlCJRF0rfpfO8IazOIAIo6boYbunRnY7pcnjscTtPwSBAfvBHSrdWyybY3nfdnXu1ilj4ujBHAQkrzKKZXBFxhiCTOa8lq9fx3aheH3hkoVybu7AqMLp_1zRZRWlkAx_mzbyhYnUQvwMYhdhkwQzWqGiTiqqjMOatCVaDxovyijqigAgG8YzQ&h=UAQVPfMP40ESyGkdFF2TA-5PJ-KXppPTrWv-ZpkhJcA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '' + string: '{"status":"Creating"}' headers: cache-control: - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:11:07 GMT + - Thu, 10 Sep 2026 07:05:32 GMT expires: - '-1' pragma: @@ -2631,14 +2631,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7f1f9caf-1827-49f0-befe-e0e892608169 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/63b154a7-9ba2-4a7f-8f18-5a46d51961fb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E1FE1D3EACBE4A9EB26639B373DFF620 Ref B: BY1AA1072315036 Ref C: 2026-03-24T01:11:08Z' + - 'Ref A: 574D21812FDC4C2284AAD8408CD4AC67 Ref B: SYD281080707052 Ref C: 2026-09-10T07:05:32Z' status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2647,29 +2647,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2025-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '258' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:11:14 GMT + - Thu, 10 Sep 2026 07:06:03 GMT expires: - '-1' pragma: @@ -2680,42 +2678,44 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5b3ff609-9a05-4a20-b27d-a6941f5f96d8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: C9EC8411AE1F4DF9AC33BB96421C0855 Ref B: BY1AA1072316025 Ref C: 2026-03-24T01:11:14Z' + - 'Ref A: E2CD0ADC64A943C793DC245A08B04134 Ref B: SYD281080708054 Ref C: 2026-09-10T07:06:03Z' status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272Z"}}]}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '2185' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:11:14 GMT + - Thu, 10 Sep 2026 07:06:34 GMT expires: - '-1' pragma: @@ -2726,10 +2726,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/17c91636-ac79-4ad6-962c-3abc118e7faa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CED2F2D8D9924462BB02744C88E9E1FE Ref B: SJC211051205031 Ref C: 2026-03-24T01:11:15Z' + - 'Ref A: 3C0F0E99A0064B898FB80D52374BB424 Ref B: SYD281080711054 Ref C: 2026-09-10T07:06:34Z' status: code: 200 message: OK @@ -2737,33 +2739,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"status":"Creating"}' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1665' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:11:15 GMT + - Thu, 10 Sep 2026 07:07:05 GMT expires: - '-1' pragma: @@ -2774,69 +2774,15 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/76ba7843-d7c0-4411-97e2-00106a2f9f0e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C5901A3977AD409E9CEF5BAEEC0AE0FD Ref B: BY1AA1072318042 Ref C: 2026-03-24T01:11:15Z' + - 'Ref A: E135EBC4D5174E5D9C9A19613D181F1D Ref B: SYD281080710054 Ref C: 2026-09-10T07:07:05Z' status: code: 200 message: OK -- request: - body: '{"properties": {"count": 2}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr agentpool update - Connection: - - keep-alive - Content-Length: - - '28' - Content-Type: - - application/json - ParameterSetName: - - -n -r -c - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2025-03-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Updating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:22.3352729+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:11:15.7873706+00:00"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY - cache-control: - - no-cache - content-length: - - '584' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 01:11:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/933666bf-5756-4b6f-9e2c-78a182625c92 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: CA898CF65B4B44CA8BF1CED9B715B63B Ref B: SJC211051204033 Ref C: 2026-03-24T01:11:15Z' - status: - code: 201 - message: Created - request: body: null headers: @@ -2845,18 +2791,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -2865,7 +2811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:11:15 GMT + - Thu, 10 Sep 2026 07:07:36 GMT expires: - '-1' pragma: @@ -2877,11 +2823,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7163afd9-34f1-442c-b868-4ce1474d18d1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3342b227-f5c5-44af-9bc2-d69986eb21a3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3B91E284EF0C4BB9B782C07BA1F04410 Ref B: SJC211051201009 Ref C: 2026-03-24T01:11:16Z' + - 'Ref A: 7E035D3548DA4D23890535898B7C5FE6 Ref B: SYD281080709062 Ref C: 2026-09-10T07:07:36Z' status: code: 200 message: OK @@ -2893,18 +2839,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -2913,7 +2859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:11:47 GMT + - Thu, 10 Sep 2026 07:08:08 GMT expires: - '-1' pragma: @@ -2925,11 +2871,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5571e34a-f439-45e1-af9a-2c24020ed36d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f0e686ae-9055-4d84-bf11-bb7b3b364109 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 61BB73B664064108AE40FBB096F01B87 Ref B: BY1AA1072317062 Ref C: 2026-03-24T01:11:47Z' + - 'Ref A: 5128235049A6442FBE1BE3368D6D29D5 Ref B: SYD281080711034 Ref C: 2026-09-10T07:08:08Z' status: code: 200 message: OK @@ -2941,18 +2887,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -2961,7 +2907,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:12:17 GMT + - Thu, 10 Sep 2026 07:08:38 GMT expires: - '-1' pragma: @@ -2973,11 +2919,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/53f95a15-e713-472d-94d2-9aeb0f9f1b28 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f04d810a-8e15-4ef3-9e3b-c4a2d4abe0fb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 24FF1EED36B2410FA6165ADE8FF38342 Ref B: BY1AA1072320054 Ref C: 2026-03-24T01:12:17Z' + - 'Ref A: B617995BADE048808CC7BE7632A8540A Ref B: SYD281080707052 Ref C: 2026-09-10T07:08:39Z' status: code: 200 message: OK @@ -2989,18 +2935,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3009,7 +2955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:12:47 GMT + - Thu, 10 Sep 2026 07:09:09 GMT expires: - '-1' pragma: @@ -3021,11 +2967,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8bfa001a-08b3-473c-ab23-485239edc124 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d65d5d09-904b-4fe8-b020-c734a0604cc4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0E977CB62D8449EA9CE04441A4839C0E Ref B: BY1AA1072318036 Ref C: 2026-03-24T01:12:48Z' + - 'Ref A: D68E316C65AB449AAE1B6874272D1BE9 Ref B: SYD281080712023 Ref C: 2026-09-10T07:09:09Z' status: code: 200 message: OK @@ -3037,18 +2983,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3057,7 +3003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:13:18 GMT + - Thu, 10 Sep 2026 07:09:41 GMT expires: - '-1' pragma: @@ -3069,11 +3015,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b2961299-30b2-4617-9ea1-a256cbba5ffb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ba92217f-2a2e-44fb-bfdb-6b36109ffe20 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 441C99514369477B9F3D0B770BB5688D Ref B: SJC211051201029 Ref C: 2026-03-24T01:13:18Z' + - 'Ref A: 84FBFBB2F09C43899DDB4B8D6149D33E Ref B: SYD281080706060 Ref C: 2026-09-10T07:09:41Z' status: code: 200 message: OK @@ -3085,18 +3031,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3105,7 +3051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:13:49 GMT + - Thu, 10 Sep 2026 07:10:11 GMT expires: - '-1' pragma: @@ -3117,11 +3063,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9940e1b6-ff33-49df-8be8-09774841a172 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b6e57db0-75f3-41b6-8fd2-b280f99031ba x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 34F2311813B247E28EB37847FEDC6B25 Ref B: SJC211051205039 Ref C: 2026-03-24T01:13:49Z' + - 'Ref A: 62CF9A2F3F224CAB94D5FC283EEFE6FA Ref B: SYD281080706062 Ref C: 2026-09-10T07:10:12Z' status: code: 200 message: OK @@ -3133,18 +3079,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3153,7 +3099,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:14:19 GMT + - Thu, 10 Sep 2026 07:10:43 GMT expires: - '-1' pragma: @@ -3165,11 +3111,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3434907c-17d8-4595-9d78-b2dac87282a5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/352fccbf-1b83-4fa5-9192-58e536a15f89 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4202825D799349F6A454659CC48306F9 Ref B: SJC211051203019 Ref C: 2026-03-24T01:14:19Z' + - 'Ref A: E8503B0032A6464188C020C1F84524D1 Ref B: SYD281080709052 Ref C: 2026-09-10T07:10:43Z' status: code: 200 message: OK @@ -3181,18 +3127,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3201,7 +3147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:14:50 GMT + - Thu, 10 Sep 2026 07:11:15 GMT expires: - '-1' pragma: @@ -3213,11 +3159,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7fb86be4-183c-4b43-86a3-2c75119407fb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/50587dff-7549-42ce-85e2-a16ecf8198be x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7B50C188EA8B4E42961564FC05EBC4B0 Ref B: SJC211051201045 Ref C: 2026-03-24T01:14:50Z' + - 'Ref A: D45715E010684006969D94A5C7301D27 Ref B: SYD281080710054 Ref C: 2026-09-10T07:11:14Z' status: code: 200 message: OK @@ -3229,18 +3175,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3249,7 +3195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:15:21 GMT + - Thu, 10 Sep 2026 07:11:45 GMT expires: - '-1' pragma: @@ -3261,11 +3207,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f2c3c88a-46e2-4399-97b0-695c6d79ff41 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/38874af2-42c3-43e3-a1d6-96506fa13119 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2FD0D9A6351842F1A81F1B11EB549CB3 Ref B: BY1AA1072317029 Ref C: 2026-03-24T01:15:20Z' + - 'Ref A: 654D9260A6004DECA67376A87A67EA33 Ref B: SYD281080709031 Ref C: 2026-09-10T07:11:45Z' status: code: 200 message: OK @@ -3277,18 +3223,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3297,7 +3243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:15:51 GMT + - Thu, 10 Sep 2026 07:12:17 GMT expires: - '-1' pragma: @@ -3309,11 +3255,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3de2239c-081f-443c-8a5d-e657f95b6017 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d26fc907-ccc1-4ff5-9645-34a0e4a0e4d0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 84212A302A14476284C1357F9A782916 Ref B: SJC211051205017 Ref C: 2026-03-24T01:15:51Z' + - 'Ref A: 4FC25F0E9C964771AA669282E4EAB3A1 Ref B: SYD281080708023 Ref C: 2026-09-10T07:12:16Z' status: code: 200 message: OK @@ -3325,18 +3271,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Updating"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache @@ -3345,7 +3291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:22 GMT + - Thu, 10 Sep 2026 07:12:48 GMT expires: - '-1' pragma: @@ -3357,11 +3303,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cb2ab8fd-36ed-4513-ab95-b3986aafe7da + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/42106a73-72c1-4df5-a65a-7af4c17bbce5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3AA30AA4F1B94F5B89109C2BA72D80B4 Ref B: BY1AA1072319025 Ref C: 2026-03-24T01:16:22Z' + - 'Ref A: 822AFDA37D784BFD8F5D9DC10D1F618B Ref B: SYD281080710031 Ref C: 2026-09-10T07:12:47Z' status: code: 200 message: OK @@ -3373,27 +3319,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/0b9afaf8-574f-48cb-8718-7d2c300dadcd?api-version=2025-03-01-preview&t=639099114761779989&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mpO-YKA3ZcDI_dY0RzmvyruTl2CYcRtuPjLPusNdb2lVwxUjQSt2RdpRmGSakVzgL6Q1L_SeceD8VbRgjbLH10gGcvXKlIaQRTrW1cd3Xi6_suIsIbqao7_O5JiE7fAg4Ta1LTGM8SKpPIKTmMmIyZ_13R538PCMva-euZAxIP-ocCFwQUhXApoEPs0Fk80aFtyauQHTkerHO5b3uQ37E9zMVqLOzyr3GxClDw4MSTIiF3UjGgWHtHSnLV2l5SkwsxSX269aAcuAj28-cVDMe8FXQv-7_ahSTJ9GTjJ-msn9VXxv3pXw0FNiYQWo9cuKPI8s6afbTKSuWzpZGrxZnw&h=JzA2E-XHP5nf8SAebak_qjefT37LSMnRHq_Wjbhp9QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:52 GMT + - Thu, 10 Sep 2026 07:13:19 GMT expires: - '-1' pragma: @@ -3405,11 +3351,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b8b2f636-3aaf-4872-b03c-d25951e90aff + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f0c10b39-4e15-4854-aed2-e2262a16aeda x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 29E7E02083BA44EDBC35DA53D4032EFF Ref B: SJC211051203035 Ref C: 2026-03-24T01:16:52Z' + - 'Ref A: 5F80B27873B14A488D16EDDA9700C0B5 Ref B: SYD281080706029 Ref C: 2026-09-10T07:13:19Z' status: code: 200 message: OK @@ -3421,27 +3367,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2025-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:22.3352729+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:11:15.7873706+00:00"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '585' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:52 GMT + - Thu, 10 Sep 2026 07:13:51 GMT expires: - '-1' pragma: @@ -3452,10 +3398,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e381030e-e070-4490-97b1-d8d1e1b0ef68 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 68A24C7BCF2A46D181BEB44EEC67F50A Ref B: BY1AA1072320060 Ref C: 2026-03-24T01:16:53Z' + - 'Ref A: 124E35A757CD4738A53CFA641582ED33 Ref B: SYD281080707040 Ref C: 2026-09-10T07:13:50Z' status: code: 200 message: OK @@ -3463,31 +3411,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool show + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272Z"}}]}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '2185' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:53 GMT + - Thu, 10 Sep 2026 07:14:21 GMT expires: - '-1' pragma: @@ -3498,10 +3446,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ac918cb3-b564-41ff-ad7a-a38489a781ab x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F88BB43487E04015935D4F499E616775 Ref B: BY1AA1072320034 Ref C: 2026-03-24T01:16:54Z' + - 'Ref A: EF3DCBAF78BD48B1AF8CB65968800C72 Ref B: SYD281080706060 Ref C: 2026-09-10T07:14:21Z' status: code: 200 message: OK @@ -3509,33 +3459,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool show + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"status":"Creating"}' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1665' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:54 GMT + - Thu, 10 Sep 2026 07:14:52 GMT expires: - '-1' pragma: @@ -3546,10 +3494,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/028e4a62-35e0-485d-9135-bc1a73cf62c7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 784FEF24A7B84DCA9EC5F80F207B3633 Ref B: SJC211051201039 Ref C: 2026-03-24T01:16:54Z' + - 'Ref A: 3460B3246E894389820DF71B5AA36748 Ref B: SYD281080708025 Ref C: 2026-09-10T07:14:52Z' status: code: 200 message: OK @@ -3557,31 +3507,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool show + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2025-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:22.3352729+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:11:15.7873706+00:00"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '585' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:54 GMT + - Thu, 10 Sep 2026 07:15:23 GMT expires: - '-1' pragma: @@ -3592,10 +3542,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/98497c85-06b4-45bf-9023-8d3bafc098ab x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 34062289A644462E97545A3C7CC066AC Ref B: BY1AA1072320062 Ref C: 2026-03-24T01:16:54Z' + - 'Ref A: 8E9133EFFB314D3DA371D457FD529B54 Ref B: SYD281080712034 Ref C: 2026-09-10T07:15:23Z' status: code: 200 message: OK @@ -3607,35 +3559,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr delete + - acr agentpool create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:58:01.0626272+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:58:01.0626272+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T00:58:01.0626272Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:58:08.0202996+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:58:08.0203543+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"status":"Creating"}' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1664' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:55 GMT + - Thu, 10 Sep 2026 07:15:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-253e1df3-271f-11f1-afdb-70a8a51b6037?api-version=2026-03-01-preview&t=639099118156879057&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Gsw9HkLW8AD9aDuULw0oIyVlaBkgjnKBjEuaLwAFr5N7JvA5WHQIlZmURWfaTdxua7lOPr8a29S0-uFAFRobqLm3hKrwVQT-SfWnst5kR6QW-o6NSndMp0bR21ZMOM6L2tyxjJzSTbwaVAS6wDASp62Gwat0nKGBmBuChKU25J2vMuNR46l-EV2JyFwl_bzyYI95Yl_y6iYKSFx-SvPnt-Rmq8a4BAxjNRuLr1BkivuGNBr9Mtb3CEvO_D3X9l5ZUS27b7YKpob822JtMsJMwPL4HKVxnklv6_hggtwjrnzNkyPVyoWLNeLCiO6-wLY-6uTY8sAYOleCmMd8IeRwBQ&h=z4OhZKaArEMbhnUte_N_qv05arGp5xbFQZPWy-Gk7hE pragma: - no-cache strict-transport-security: @@ -3645,16 +3591,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b96f824c-6c8d-42ec-bdb6-4d234d0c963a - x-ms-ratelimit-remaining-subscription-deletes: - - '799' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '11999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3e8baeca-c106-41bb-a9e7-cf27079b460b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 61E11EA545214DB48F5C5DC389D8D080 Ref B: BY1AA1072316054 Ref C: 2026-03-24T01:16:54Z' + - 'Ref A: 97B2267446F641E982842DF444FC4284 Ref B: SYD281080705060 Ref C: 2026-09-10T07:15:54Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3663,29 +3607,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -g -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-253e1df3-271f-11f1-afdb-70a8a51b6037?api-version=2026-03-01-preview&t=639099118156879057&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Gsw9HkLW8AD9aDuULw0oIyVlaBkgjnKBjEuaLwAFr5N7JvA5WHQIlZmURWfaTdxua7lOPr8a29S0-uFAFRobqLm3hKrwVQT-SfWnst5kR6QW-o6NSndMp0bR21ZMOM6L2tyxjJzSTbwaVAS6wDASp62Gwat0nKGBmBuChKU25J2vMuNR46l-EV2JyFwl_bzyYI95Yl_y6iYKSFx-SvPnt-Rmq8a4BAxjNRuLr1BkivuGNBr9Mtb3CEvO_D3X9l5ZUS27b7YKpob822JtMsJMwPL4HKVxnklv6_hggtwjrnzNkyPVyoWLNeLCiO6-wLY-6uTY8sAYOleCmMd8IeRwBQ&h=z4OhZKaArEMbhnUte_N_qv05arGp5xbFQZPWy-Gk7hE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '0' + - '21' + content-type: + - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:16:56 GMT + - Thu, 10 Sep 2026 07:16:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-253e1df3-271f-11f1-afdb-70a8a51b6037?api-version=2026-03-01-preview&t=639099118163579222&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=QbMXh3N45HEAXwt5bG74Mvxt-0hWNVxUDfUWGvWrD_pWGrtPeK6Dye-R8cMY6T6NXeJWuoQkXVAwycAOODVQz5sOWyTtUYJ7gqh33FHI8IpDXrR39lKESiuWoZ-x2M6-AXV_LaFbugVeNPHVkPtLOje1hBZxo8e7HX54HWlzUezgybh3B7jv_1omVzisyuLrCLvtmHSJG0UOMx_9tUk9-oFqLNaZFL5QizlGUdRf-xr7oZsLJnpb_zz7Mi2mCcOS0qde7qqkFkpf61Z7u9YX4BpHcpeCLT97tlGUONO4vE-2HJTIebAZU82T8Edv6hWh5ycHuMXkf6h6yyRbQYUc1Q&h=pKYdxtOGyJoAuZojJEtYR8mTF3X5hHAL9eFPjtA2Vfc pragma: - no-cache strict-transport-security: @@ -3695,14 +3639,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f9735bbf-e4c1-4121-8f65-510d5b77bb84 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/cb74d869-ce19-487b-afe3-6d83c71fbd9d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E55D4CF8D023422CA970F6EE714F857A Ref B: SJC211051203033 Ref C: 2026-03-24T01:16:55Z' + - 'Ref A: 0AAB5A8FE6DE4B6FBE8B0FCAF81807B7 Ref B: SYD281080711054 Ref C: 2026-09-10T07:16:25Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3711,25 +3655,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -g -y + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-253e1df3-271f-11f1-afdb-70a8a51b6037?api-version=2026-03-01-preview&t=639099118163579222&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=QbMXh3N45HEAXwt5bG74Mvxt-0hWNVxUDfUWGvWrD_pWGrtPeK6Dye-R8cMY6T6NXeJWuoQkXVAwycAOODVQz5sOWyTtUYJ7gqh33FHI8IpDXrR39lKESiuWoZ-x2M6-AXV_LaFbugVeNPHVkPtLOje1hBZxo8e7HX54HWlzUezgybh3B7jv_1omVzisyuLrCLvtmHSJG0UOMx_9tUk9-oFqLNaZFL5QizlGUdRf-xr7oZsLJnpb_zz7Mi2mCcOS0qde7qqkFkpf61Z7u9YX4BpHcpeCLT97tlGUONO4vE-2HJTIebAZU82T8Edv6hWh5ycHuMXkf6h6yyRbQYUc1Q&h=pKYdxtOGyJoAuZojJEtYR8mTF3X5hHAL9eFPjtA2Vfc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '0' + - '21' + content-type: + - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:17:06 GMT + - Thu, 10 Sep 2026 07:16:56 GMT expires: - '-1' pragma: @@ -3741,11 +3687,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/00c921ae-7d85-4594-b579-5b5988fe62bc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7fb0c6e9-8667-49d5-bf68-d9a0e1b08cf8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 60714F3D25904916876E73737C99AE06 Ref B: BY1AA1072319060 Ref C: 2026-03-24T01:17:06Z' + - 'Ref A: 57C4336822324BB49E5DACAA53FABF6C Ref B: SYD281080706040 Ref C: 2026-09-10T07:16:56Z' status: code: 200 message: OK @@ -3757,35 +3703,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet delete + - acr agentpool create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2024-07-01 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '' + string: '{"status":"Creating"}' headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/95cde918-ecda-4f41-9574-a206dabd4281?api-version=2024-07-01&t=639099118277804012&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=YbPPmD0Gzp0QKhP9Gu7oM2GeAgykYByE5EqEK7pMr1tBWtzL9Cq9XuQuhNAnNcwFyOc5F0FHX5bdHmN36Mozo5chpC0LmkDyAKYU8IMqzLahhe_hOVstaJP6j-aIw2xOJ-MChXRBaQFhVv_SmgjTGlxbEu_Wf-TJKz9NQRXXKMXhnNixQugEbH63cCwn7VX6s-CW1-niso236yuYNXpo4fJyPe9ZzcaaZYe6bbfcfvrBSoQgZ3Q4vYEnyqCxOqr4Gk9PoSyQ17nHENNI5svPv06SCPyqAG-Xc7ivojqd8Rrh9fScyR978eYNoOgGDm8OBWCepFDIi9Db0xq6-CjMNg&h=tzeAiDC64Y3Rzc-NNSgRYZCD9BD9VDfuQNgLk3i_lUo cache-control: - no-cache content-length: - - '0' + - '21' + content-type: + - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:17:07 GMT + - Thu, 10 Sep 2026 07:17:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/95cde918-ecda-4f41-9574-a206dabd4281?api-version=2024-07-01&t=639099118277960277&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KL2UpqqczNjQtp1porgp7qMFD0ArHeaK7N8NvZFNJ7cyRgt3HGNTv4S6YXIpNP21AZMHWnvHDsthHlReBXVRld9tuOwC6kC0pAPJm9fskHCRSmIO6wKMcXYCx5faOLTIidHf9Sg90aOHE4jxh214OEepFlBIY30pkswqauwySDNdG_iQGMNiEWXTKO4-7drn1elvLiSAZncaIf1c_X6KBiYeJW71_o57NUq2ptSCRJZttOK9tZlvO0w_XndqJvlhMP4z_77XCtA4wYSBBqroSNU4egT1jUoXTWbA2rrVQx6KVBhfM_jusUOK4xY8JCtKCKpnpmYWvQUtx7Se-j5myQ&h=wTpnXSJPXEA-Z_bLBZzsxARlgdJ2iXechub8PRhng_k pragma: - no-cache strict-transport-security: @@ -3794,19 +3734,15 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 5819a3b2-ed2f-42ee-bfda-4928cdbbb149 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3ac7ab73-ad75-4f04-8087-eafdfac60752 - x-ms-ratelimit-remaining-subscription-deletes: - - '799' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '11999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/44ef5e02-0631-4a68-87fd-215b3e11951a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 50508A8D98684583BAD35280DEC19658 Ref B: SJC211051205017 Ref C: 2026-03-24T01:17:07Z' + - 'Ref A: 9ACF353C5C5D478CA995B3D5F8EE066B Ref B: SYD281080709034 Ref C: 2026-09-10T07:17:28Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3815,27 +3751,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/95cde918-ecda-4f41-9574-a206dabd4281?api-version=2024-07-01&t=639099118277804012&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=YbPPmD0Gzp0QKhP9Gu7oM2GeAgykYByE5EqEK7pMr1tBWtzL9Cq9XuQuhNAnNcwFyOc5F0FHX5bdHmN36Mozo5chpC0LmkDyAKYU8IMqzLahhe_hOVstaJP6j-aIw2xOJ-MChXRBaQFhVv_SmgjTGlxbEu_Wf-TJKz9NQRXXKMXhnNixQugEbH63cCwn7VX6s-CW1-niso236yuYNXpo4fJyPe9ZzcaaZYe6bbfcfvrBSoQgZ3Q4vYEnyqCxOqr4Gk9PoSyQ17nHENNI5svPv06SCPyqAG-Xc7ivojqd8Rrh9fScyR978eYNoOgGDm8OBWCepFDIi9Db0xq6-CjMNg&h=tzeAiDC64Y3Rzc-NNSgRYZCD9BD9VDfuQNgLk3i_lUo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"InProgress"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '23' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:17:07 GMT + - Thu, 10 Sep 2026 07:17:59 GMT expires: - '-1' pragma: @@ -3846,14 +3782,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 8ea12d22-af0e-4eb4-80f0-846bd2afbb36 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/698ccee2-20d3-455d-a518-ad3b48246b5d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0812ee2a-b8dc-48a1-a432-d6bdff54e730 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 670E569AFB81445F9A2225F6B001C9D2 Ref B: BY1AA1072320054 Ref C: 2026-03-24T01:17:07Z' + - 'Ref A: FBBED9BC54C84CE2AFEC753C6BC7439A Ref B: SYD281080706025 Ref C: 2026-09-10T07:17:59Z' status: code: 200 message: OK @@ -3865,27 +3799,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/95cde918-ecda-4f41-9574-a206dabd4281?api-version=2024-07-01&t=639099118277804012&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=YbPPmD0Gzp0QKhP9Gu7oM2GeAgykYByE5EqEK7pMr1tBWtzL9Cq9XuQuhNAnNcwFyOc5F0FHX5bdHmN36Mozo5chpC0LmkDyAKYU8IMqzLahhe_hOVstaJP6j-aIw2xOJ-MChXRBaQFhVv_SmgjTGlxbEu_Wf-TJKz9NQRXXKMXhnNixQugEbH63cCwn7VX6s-CW1-niso236yuYNXpo4fJyPe9ZzcaaZYe6bbfcfvrBSoQgZ3Q4vYEnyqCxOqr4Gk9PoSyQ17nHENNI5svPv06SCPyqAG-Xc7ivojqd8Rrh9fScyR978eYNoOgGDm8OBWCepFDIi9Db0xq6-CjMNg&h=tzeAiDC64Y3Rzc-NNSgRYZCD9BD9VDfuQNgLk3i_lUo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:17:18 GMT + - Thu, 10 Sep 2026 07:18:30 GMT expires: - '-1' pragma: @@ -3896,14 +3830,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 38cfed79-32c1-4a4f-a50c-6f45ea1c2de5 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/fc7adb75-0922-417c-a4bf-89ef78b66251 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/44f87fcf-0925-4d3a-bdf0-06a2ac69d845 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7908149F665E448C9B6586DE107C3E1D Ref B: BY1AA1072318040 Ref C: 2026-03-24T01:17:18Z' + - 'Ref A: 54273D1B48374E52A6D9C2813BFD1317 Ref B: SYD281080706023 Ref C: 2026-09-10T07:18:30Z' status: code: 200 message: OK @@ -3915,33 +3847,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet delete + - acr agentpool create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/95cde918-ecda-4f41-9574-a206dabd4281?api-version=2024-07-01&t=639099118277960277&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KL2UpqqczNjQtp1porgp7qMFD0ArHeaK7N8NvZFNJ7cyRgt3HGNTv4S6YXIpNP21AZMHWnvHDsthHlReBXVRld9tuOwC6kC0pAPJm9fskHCRSmIO6wKMcXYCx5faOLTIidHf9Sg90aOHE4jxh214OEepFlBIY30pkswqauwySDNdG_iQGMNiEWXTKO4-7drn1elvLiSAZncaIf1c_X6KBiYeJW71_o57NUq2ptSCRJZttOK9tZlvO0w_XndqJvlhMP4z_77XCtA4wYSBBqroSNU4egT1jUoXTWbA2rrVQx6KVBhfM_jusUOK4xY8JCtKCKpnpmYWvQUtx7Se-j5myQ&h=wTpnXSJPXEA-Z_bLBZzsxARlgdJ2iXechub8PRhng_k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/6a64400e-1e8f-4752-9811-6c98bd74fec7?api-version=2025-03-01-preview&t=639246197647420734&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=WPQBmT7DtfVIwNTj8DovSVS5I8aZ0HiJwz2q8De9ZOZdchGmEN7mgkSgFLa2icOKcjaObFxb8SHMQ_upPD6lR3PQx0GJuTrONfO3oeWkBKc1SZ6wzc_CXPdAEyRj_wE9QgV9xHCe2Ylm-xVP26FPthT7zknqZYGilpg3V7QEDxcNXhjGi6sVRy23E-D-1p5yqxP-GLPxzir8bvPUbvfzKAP8F0Iygeb-AR7gNTp_dqCb9w2rwXyuOSMAgvoTeG-2PyDU9iNvV-5gsJqAeagrKA9-kZ_AS9FptKKzpnlcp-3hFqU_ivoPVH9joOG1A4nQUiaxHdMdVUCo7zS7_iSxVQ&h=Q_tP5oJpgpWGI5CP4FmmtmNQtT9Ar-A8CDFiG4MI1jk response: body: - string: '' + string: '{"status":"Creating"}' headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/95cde918-ecda-4f41-9574-a206dabd4281?api-version=2024-07-01&t=639099118389558851&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Z-vLbKo1kP_mm599b7ybhcHcXetIpt8Zng3zwtu7xNIZresfBHTsIAyhrF05fY7tedEpr0UnNpKHkrnK9_TcK1WkqP94DnPIl7lgX6eJ09w726x4EvLwUQR4sEz_b8wJ7ryvQ1ipmlUlvRqKJP3MWzetPMlYnyb9OUnKWmjqSn_3yz8KXNkzi1l6okc9beBGzQx21Q550vWFU05BpmGXm_Bq8PMuBaTGsqsY19Of4CSIWGntHb8u3UCohuFuPZ5iHuoVhmmZrHbAUz_VYQoPLIajPm-V688k_MGtFxWXm0AVKvpSqMeZtgozjnJfsKdI5e_-Ah8CiIL5d-3Unp7_uQ&h=m_LGScL9Z064FT8j1X1u-_B1P-KkWjLF0uSV4F75mvk cache-control: - no-cache + content-length: + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:17:18 GMT + - Thu, 10 Sep 2026 07:19:02 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/95cde918-ecda-4f41-9574-a206dabd4281?api-version=2024-07-01&t=639099118389558851&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=yxO-ugWgv1HDyGx59Ebp4PeAtmfnmimMQh8XvtHiGJby3QzCQYOjbxeFCVpI9waBtTWnYu_NzS6wcHnh3RLau7bkx1b0yv1VEFJx8nCRT8IwvG6WQaaPkmaTGWsHp0a_yQaVz_hTjD93Or2aw3hxs_ehUJtpbeH1B1jrDpvRMNo44Hukajv-Uc4nd0IxcDT8VzJZx_6-wfByFsU1ekvvDO8dsdHxOfVQEytkNszaPZ4kwpM72nis-LRES6BmQZTA6zAQDVpO5SIN8MxzI6X_JtJjiiRyR8YK-jgumHvrMvpURkg6I7lyyIJsxUCcTbkvmgk0FWidbG_oJvgznDFFeg&h=QWlyJkkAOSULYK24he1wRdL59C_ANCHvwwN2cyYjzJE pragma: - no-cache strict-transport-security: @@ -3950,15 +3878,13 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 5819a3b2-ed2f-42ee-bfda-4928cdbbb149 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/32c968ac-1325-4786-afad-9247b4ce362e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d4b7e06c-0e4c-4693-bdc6-f3a891554257 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 347D7424222E4B4D87DA73656C23A0A8 Ref B: BY1AA1072320023 Ref C: 2026-03-24T01:17:18Z' + - 'Ref A: 558B5270E3594E89AE40ADFFA309B48B Ref B: SYD281080708040 Ref C: 2026-09-10T07:19:02Z' status: - code: 204 - message: No Content + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache.yaml index d6428f672e6..dfe82b51011 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:41.1619116Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:02.9488457+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:02.9488932+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.4953872Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.0733291+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.07337+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1641' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:02 GMT + - Thu, 10 Sep 2026 06:42:37 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/c6bf8c09-16be-4359-97d4-c02b88635e15 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0d6659b9-8bf1-4c80-8a81-0437dfab67c0 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 0FDBC28CBB6C4D568EC0E221BD75B6D0 Ref B: BN1AA2051012009 Ref C: 2026-04-03T02:29:39Z' + - 'Ref A: FD5A53249D8B44F9BD19992B8F44C237 Ref B: SYD281080705031 Ref C: 2026-09-10T06:42:31Z' status: code: 200 message: OK @@ -70,22 +70,21 @@ interactions: ParameterSetName: - -n -r -l -u -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:57.9619491Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.1288554Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:01.7335514Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:00.7226231Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqnvz3ac3ofqtyvifcbuuppnwvnvdohlwrjl33ubg5z2mqgyorwoydviffupgn3fsa/providers/Microsoft.ContainerRegistry/registries/clireg2zytrs6hf7patr","name":"clireg2zytrs6hf7patr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.7454326Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.7454326Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.829285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxithhbczzzlieoewxjg4j73u3vbowohwxwwfl7gxqfyzzn2bixzcip2snlwmb3xuq/providers/Microsoft.ContainerRegistry/registries/clireg2445j56a6bm22l","name":"clireg2445j56a6bm22l","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.8397885Z"}}]}' headers: cache-control: - no-cache content-length: - - '11779' + - '2215' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:07 GMT + - Thu, 10 Sep 2026 06:42:38 GMT expires: - '-1' pragma: @@ -99,7 +98,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 519AFA8B5D8042E3B98CE1CE57A67FD8 Ref B: BN1AA2051013039 Ref C: 2026-04-03T02:30:08Z' + - 'Ref A: B911239504C04525BB668E21ED54B943 Ref B: SYD281080705031 Ref C: 2026-09-10T06:42:38Z' status: code: 200 message: OK @@ -124,31 +123,31 @@ interactions: ParameterSetName: - -n -r -l -u -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"00326228-54e6-494c-8943-2b1a432d17e5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:14.1900427+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.1900427+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The - user, group or application ''name=microsoft.containerregistry/registries;appid=ccf91310-b6b2-4d89-b08d-122ad008874c;oid=00326228-54e6-494c-8943-2b1a432d17e5;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' + string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"f8710bde-7f55-42a0-a2c1-7fc68efe0822","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:40.1689018+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:40.1689018+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The + user, group or application ''name=microsoft.containerregistry/registries;appid=9eb3db62-6a25-45af-b897-d9d8f4da0002;oid=f8710bde-7f55-42a0-a2c1-7fc68efe0822;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' does not have secrets get permission on key vault ''cliimportkv73021;location=westus''. - For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-04-03T02:30:15.9238862+00:00","provisioningState":"Creating"}}' + For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-09-10T06:42:43.389588+00:00","provisioningState":"Creating"}}' headers: api-supported-versions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-86f6c54d-bf65-40ba-91c5-18bef0e138be?api-version=2026-03-01-preview&t=639107802167213198&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=CpnAVBnq9FC5NOUVygLO6Fhoxhk1E4BaP-NJdueraJ9g2D8Q_-GARFJ5J6uHMDzUNG7YcFBvFPoI1XuwfEByPch-ARKuoqanc5zl4Sdfu8GGvfSiV2PiwcKPxZXsK2D4JgEh9071HXQKDwP1MefOJ3tvFK7GlqGuRtbW8dyBF0k1sDcNxrgSXcg07I8YsS-ghgS2Oz3eVeEB2kwYdxMj0YD0xx1PBSVdGUuB2Od-A4dO16uH2Ce8gZ6ONn7VeEglYF9ho9l7mH6cuDdfAF7ke4bPglaBFUCDtYR5EdY4QtnzuFUVeKzO-0EDuGw3rvM1EObmqaBTNJLxpcwcLdT_7Q&h=7J7kqV_tJouJ1-vco3RP_Up1ByyPjj3tFtDlzXAuz8M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-8ab1917f-35db-4dec-a2f4-667d76e3a9ad?api-version=2026-09-01-preview&t=639246193640595648&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=iBvpJxKX4OfBvul5vWZNU5NhxQIp9DwGt-TfYZp-LcUH5eN3kiVRafEYm2pfDyNpiwgLWinTog_uqYXsJycHFSZhNPcaJ0YXFN2CY2GamEFyzeV4wJa1Zoc79hQBYDJz55RyKG3fR6mK2FDjEDWWP64V_-ugWaMtqeSZVR4EWTLn_GNsatzbWNyM4BEExzwukayAN6Alqf_KG8NqNIeaSuSRw_Dk58Qfea9odksl5PPvyKPL9LmpGKFBhMGCnkQmTZndWf7hKbC8X4o5cnLmmtj1CdtHFDCYcp1xUp7yZaIkFq4I2hz-tRbwHCyL6K72gktYYCa7omIri6HCvD0eIg&h=1DrXv8-CdH-ZlJEDMrOaF2ulXQjC9CGDM9-FYiqSXIs cache-control: - no-cache content-length: - - '1465' + - '1464' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:16 GMT + - Thu, 10 Sep 2026 06:42:43 GMT expires: - '-1' pragma: @@ -160,13 +159,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/c1048ee1-7518-4400-950d-535a3975cf8d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/2b0af904-1d40-48e9-8a9e-aad14b44d48d x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 56D3E006C2C8431ABA1498AE48F7EE29 Ref B: BN1AA2051014023 Ref C: 2026-04-03T02:30:13Z' + - 'Ref A: 1F9A99057A844F0B98E9BF05022EF316 Ref B: SYD281080711060 Ref C: 2026-09-10T06:42:39Z' status: code: 201 message: Created @@ -184,9 +183,9 @@ interactions: ParameterSetName: - -n -r -l -u -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-86f6c54d-bf65-40ba-91c5-18bef0e138be?api-version=2026-03-01-preview&t=639107802167213198&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=CpnAVBnq9FC5NOUVygLO6Fhoxhk1E4BaP-NJdueraJ9g2D8Q_-GARFJ5J6uHMDzUNG7YcFBvFPoI1XuwfEByPch-ARKuoqanc5zl4Sdfu8GGvfSiV2PiwcKPxZXsK2D4JgEh9071HXQKDwP1MefOJ3tvFK7GlqGuRtbW8dyBF0k1sDcNxrgSXcg07I8YsS-ghgS2Oz3eVeEB2kwYdxMj0YD0xx1PBSVdGUuB2Od-A4dO16uH2Ce8gZ6ONn7VeEglYF9ho9l7mH6cuDdfAF7ke4bPglaBFUCDtYR5EdY4QtnzuFUVeKzO-0EDuGw3rvM1EObmqaBTNJLxpcwcLdT_7Q&h=7J7kqV_tJouJ1-vco3RP_Up1ByyPjj3tFtDlzXAuz8M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-8ab1917f-35db-4dec-a2f4-667d76e3a9ad?api-version=2026-09-01-preview&t=639246193640595648&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=iBvpJxKX4OfBvul5vWZNU5NhxQIp9DwGt-TfYZp-LcUH5eN3kiVRafEYm2pfDyNpiwgLWinTog_uqYXsJycHFSZhNPcaJ0YXFN2CY2GamEFyzeV4wJa1Zoc79hQBYDJz55RyKG3fR6mK2FDjEDWWP64V_-ugWaMtqeSZVR4EWTLn_GNsatzbWNyM4BEExzwukayAN6Alqf_KG8NqNIeaSuSRw_Dk58Qfea9odksl5PPvyKPL9LmpGKFBhMGCnkQmTZndWf7hKbC8X4o5cnLmmtj1CdtHFDCYcp1xUp7yZaIkFq4I2hz-tRbwHCyL6K72gktYYCa7omIri6HCvD0eIg&h=1DrXv8-CdH-ZlJEDMrOaF2ulXQjC9CGDM9-FYiqSXIs response: body: string: '{"status":"Succeeded"}' @@ -195,9 +194,9 @@ interactions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-86f6c54d-bf65-40ba-91c5-18bef0e138be?api-version=2026-03-01-preview&t=639107802241337266&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=RV0gx8aSG0whzZ8SDz1rskRObW8KcXiS8ruIPTPZgMYdCWDpwHAOUNuZVzGwCQ6lsYJT4cXKtt0UfmdRIFSDUh2j6GwxC7bm3sJoFdgkkz6rJ-yy4JL4Kn3BW7v4Y94XUC5dRK4L1Rsmi90XbKe6-iXCswFYNg_DT75IzRAJetSOTB4cYks_WGpiVzCmNnoDk6TdFyev-G5ZO6m2LN_9OuNxXgaKcWv-8aRtRPzKWT3rKLdg7Hele3Qi9nGhCnEI9U0gfUYe4EmVb9l_e_Efp7ot1N2J_RmMgj_tubdSP10fKGeyXlnDCmUndzFb9un4VjXLSt_f6ydBLHAV3Kpg_Q&h=VX5EnvxupPGNnCMiM39qXZpYLfVZ1dcT_ietqIfB1NQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-8ab1917f-35db-4dec-a2f4-667d76e3a9ad?api-version=2026-09-01-preview&t=639246193654614208&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=M9Bo6PWIFFFlWu1rWNz1W0F0qmjxwY2-txRvqSuCDKpX24uVFtqlXqD4yJAcNEWDtNPFrHhnvHqrWWxlJa9Nv_KiuJvflU2RFa62bMLDocQVghw8vlCJmtMjF0ucVW7UXZQDyeYIGNjbAm6AfLzxBnYhSNnQHRrCeiiTsahPticspkeAUUil1GwzmpZa7b_5a4mnUH92YbZBJlOvv6qGgE0ATrU71Pp011on7CZcL0vsUSKArWKiuTwLIM983cwFWoJwF7cqqp87vHoHjfSTXTnNr1XwXxS0sQYZCeP0xHSXivNmUSBGKC7zP_5S75_nwRDnoophywKWEj6MZNJuqw&h=ZeQ_l4jP1Ja6U-WN214BlaNQE3qM2ZxLhCV6wyBFzSQ cache-control: - no-cache content-length: @@ -205,7 +204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:23 GMT + - Thu, 10 Sep 2026 06:42:45 GMT expires: - '-1' pragma: @@ -217,11 +216,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/56cb87fb-5d77-49cd-ba52-53a3e798972c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/156c418b-0aae-42ab-a456-1cf7aceb0151 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B8BAB89B779A442C9D40C5A0A800396D Ref B: BN1AA2051015031 Ref C: 2026-04-03T02:30:23Z' + - 'Ref A: E8E4106B7E0B41F78804CC9E03A77712 Ref B: SYD281080710036 Ref C: 2026-09-10T06:42:44Z' status: code: 200 message: OK @@ -239,29 +238,29 @@ interactions: ParameterSetName: - -n -r -l -u -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"00326228-54e6-494c-8943-2b1a432d17e5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:14.1900427+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.1900427+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The - user, group or application ''name=microsoft.containerregistry/registries;appid=ccf91310-b6b2-4d89-b08d-122ad008874c;oid=00326228-54e6-494c-8943-2b1a432d17e5;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' + string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"f8710bde-7f55-42a0-a2c1-7fc68efe0822","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:40.1689018+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:40.1689018+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The + user, group or application ''name=microsoft.containerregistry/registries;appid=9eb3db62-6a25-45af-b897-d9d8f4da0002;oid=f8710bde-7f55-42a0-a2c1-7fc68efe0822;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' does not have secrets get permission on key vault ''cliimportkv73021;location=westus''. - For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-04-03T02:30:15.9238862+00:00","provisioningState":"Succeeded"}}' + For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-09-10T06:42:43.389588+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1466' + - '1465' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:28 GMT + - Thu, 10 Sep 2026 06:42:46 GMT expires: - '-1' pragma: @@ -273,11 +272,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/cd403d31-cdd8-493a-a261-0ee871cc9ed1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/81bc1a40-759c-4d86-a025-07a50f6adcc7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B39445391DB44E25998A21F267EE6B99 Ref B: BN1AA2051014025 Ref C: 2026-04-03T02:30:28Z' + - 'Ref A: F172F4DACB984314967671A6117F5A1D Ref B: SYD281080705042 Ref C: 2026-09-10T06:42:45Z' status: code: 200 message: OK @@ -295,29 +294,29 @@ interactions: ParameterSetName: - -r -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"00326228-54e6-494c-8943-2b1a432d17e5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:14.1900427+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.1900427+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The - user, group or application ''name=microsoft.containerregistry/registries;appid=ccf91310-b6b2-4d89-b08d-122ad008874c;oid=00326228-54e6-494c-8943-2b1a432d17e5;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"f8710bde-7f55-42a0-a2c1-7fc68efe0822","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:40.1689018+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:40.1689018+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The + user, group or application ''name=microsoft.containerregistry/registries;appid=9eb3db62-6a25-45af-b897-d9d8f4da0002;oid=f8710bde-7f55-42a0-a2c1-7fc68efe0822;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' does not have secrets get permission on key vault ''cliimportkv73021;location=westus''. - For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-04-03T02:30:15.9238862+00:00","provisioningState":"Succeeded"}}]}' + For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-09-10T06:42:43.389588+00:00","provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1478' + - '1477' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:34 GMT + - Thu, 10 Sep 2026 06:42:47 GMT expires: - '-1' pragma: @@ -329,11 +328,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/32c9ec1a-955b-499c-823a-0b3ef92b5d63 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/ddbff5d9-f925-4200-8dd7-6571af44dfe3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 573207305FED480AB3AFF61A392EBB96 Ref B: BN1AA2051013053 Ref C: 2026-04-03T02:30:34Z' + - 'Ref A: 0BA98BE472A44E72B9B37F3F8DC597BE Ref B: SYD281080707062 Ref C: 2026-09-10T06:42:47Z' status: code: 200 message: OK @@ -351,29 +350,29 @@ interactions: ParameterSetName: - -n -r -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"00326228-54e6-494c-8943-2b1a432d17e5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:14.1900427+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.1900427+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The - user, group or application ''name=microsoft.containerregistry/registries;appid=ccf91310-b6b2-4d89-b08d-122ad008874c;oid=00326228-54e6-494c-8943-2b1a432d17e5;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' + string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"f8710bde-7f55-42a0-a2c1-7fc68efe0822","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:40.1689018+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:40.1689018+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The + user, group or application ''name=microsoft.containerregistry/registries;appid=9eb3db62-6a25-45af-b897-d9d8f4da0002;oid=f8710bde-7f55-42a0-a2c1-7fc68efe0822;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' does not have secrets get permission on key vault ''cliimportkv73021;location=westus''. - For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-04-03T02:30:15.9238862+00:00","provisioningState":"Succeeded"}}' + For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-09-10T06:42:43.389588+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1466' + - '1465' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:40 GMT + - Thu, 10 Sep 2026 06:42:47 GMT expires: - '-1' pragma: @@ -385,11 +384,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/d28741a7-38b3-402a-bb4b-7bf3df05b7f2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0b3c5fb0-2f67-4d3c-a8c8-115a96c33dac x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 170331B44B3246EE9DCB36606CE24542 Ref B: BN1AA2051014011 Ref C: 2026-04-03T02:30:40Z' + - 'Ref A: 2F57DD3964A949B4A592BB4C7A9BC3E9 Ref B: SYD281080705040 Ref C: 2026-09-10T06:42:48Z' status: code: 200 message: OK @@ -407,23 +406,21 @@ interactions: ParameterSetName: - -n -r -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityn6fndszynarctkhxxb":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.0893447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxithhbczzzlieoewxjg4j73u3vbowohwxwwfl7gxqfyzzn2bixzcip2snlwmb3xuq/providers/Microsoft.ContainerRegistry/registries/clireg2445j56a6bm22l","name":"clireg2445j56a6bm22l","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:44.3416047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '12381' + - '3400' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:45 GMT + - Thu, 10 Sep 2026 06:42:49 GMT expires: - '-1' pragma: @@ -437,7 +434,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 555E0408BFB746539BAB35B060957513 Ref B: BN1AA2051013029 Ref C: 2026-04-03T02:30:45Z' + - 'Ref A: 57F770CD0007444AA2FA242250C26900 Ref B: SYD281080712031 Ref C: 2026-09-10T06:42:49Z' status: code: 200 message: OK @@ -455,29 +452,29 @@ interactions: ParameterSetName: - -n -r -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"00326228-54e6-494c-8943-2b1a432d17e5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:14.1900427+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.1900427+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The - user, group or application ''name=microsoft.containerregistry/registries;appid=ccf91310-b6b2-4d89-b08d-122ad008874c;oid=00326228-54e6-494c-8943-2b1a432d17e5;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' + string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"f8710bde-7f55-42a0-a2c1-7fc68efe0822","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:40.1689018+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:40.1689018+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPpassword","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The + user, group or application ''name=microsoft.containerregistry/registries;appid=9eb3db62-6a25-45af-b897-d9d8f4da0002;oid=f8710bde-7f55-42a0-a2c1-7fc68efe0822;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' does not have secrets get permission on key vault ''cliimportkv73021;location=westus''. - For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-04-03T02:30:15.9238862+00:00","provisioningState":"Succeeded"}}' + For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-09-10T06:42:43.389588+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1466' + - '1465' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:50 GMT + - Thu, 10 Sep 2026 06:42:50 GMT expires: - '-1' pragma: @@ -489,11 +486,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c78bed1c-9d6e-4328-8f6b-0cc20f82cac9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b6f75046-2264-4313-8200-c87aa7ae29d0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5037D106B9AA451CB5D38813C97F6CB4 Ref B: BN1AA2051015011 Ref C: 2026-04-03T02:30:50Z' + - 'Ref A: 29D3D63F77AF4862BA20DF58DDDFA785 Ref B: SYD281080712029 Ref C: 2026-09-10T06:42:50Z' status: code: 200 message: OK @@ -511,23 +508,21 @@ interactions: ParameterSetName: - -n -r -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testreg2tsb6e7fghlb5","name":"testreg2tsb6e7fghlb5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:42.4384986Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:42.4384986Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityn6fndszynarctkhxxb":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.2435103Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngvq3j2s6go3ca7pdmvcp3uw46m4ckmzjxz676nwqrkl65et6nayfby6ntoihrqrw/providers/Microsoft.ContainerRegistry/registries/cliregh5bnhbcrxi6mej","name":"cliregh5bnhbcrxi6mej","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxithhbczzzlieoewxjg4j73u3vbowohwxwwfl7gxqfyzzn2bixzcip2snlwmb3xuq/providers/Microsoft.ContainerRegistry/registries/clireg2445j56a6bm22l","name":"clireg2445j56a6bm22l","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '12971' + - '3420' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:55 GMT + - Thu, 10 Sep 2026 06:42:50 GMT expires: - '-1' pragma: @@ -541,7 +536,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 33EFCB44AFA94E08B531C96FA9C1C17D Ref B: BN1AA2051012025 Ref C: 2026-04-03T02:30:55Z' + - 'Ref A: 9FBAE8E651944305A6831E1773124833 Ref B: SYD281080708034 Ref C: 2026-09-10T06:42:51Z' status: code: 200 message: OK @@ -565,31 +560,31 @@ interactions: ParameterSetName: - -n -r -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"00326228-54e6-494c-8943-2b1a432d17e5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:00.701279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:00.701279+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The - user, group or application ''name=microsoft.containerregistry/registries;appid=ccf91310-b6b2-4d89-b08d-122ad008874c;oid=00326228-54e6-494c-8943-2b1a432d17e5;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' + string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"f8710bde-7f55-42a0-a2c1-7fc68efe0822","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:52.417001+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:52.417001+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The + user, group or application ''name=microsoft.containerregistry/registries;appid=9eb3db62-6a25-45af-b897-d9d8f4da0002;oid=f8710bde-7f55-42a0-a2c1-7fc68efe0822;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' does not have secrets get permission on key vault ''cliimportkv73021;location=westus''. - For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-04-03T02:30:15.9238862+00:00","provisioningState":"Updating"}}' + For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-09-10T06:42:43.389588+00:00","provisioningState":"Updating"}}' headers: api-supported-versions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-b9d52e7d-e036-458e-b54a-25c1693308b5?api-version=2026-03-01-preview&t=639107802609044057&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=M6c0ciJ3gS1-9KrYJbttt3UJKJmZARE8gVkkrt1TRFvnD8q4JuphDCK0IonufL06zFiVQ_V6mGJAEOS-SN5nWg7SAcdItCuAoHstVA2rphikAB3G-qHe0SolaiW3d2peuzzMSEvoJWhHx9go7JCf5i4nrhy8soVDnF3Fb69vUZgqbK8rUH1pu8oEU3GY3GqEXCsv6T2iJc66LI5AaJ-o-JT9lJW0DjYtMMN5qBYRC8QfnuVdeDO7gOmklyqqrFVxdpzlKXk5Y_Cw9d9KKoM_KpUxkuFo6S0d2GK8iG8jOuKGfI87FB7FzhgyLM8lBcEF6SBizx-kGAyzOVXKWNLGow&h=PljdprjhEtIuJ_A2Ua_Gjsn4_E9KNX3_yAuwNBMBnb4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-bc5993cb-1046-4f03-ba08-6011b7be3f23?api-version=2026-09-01-preview&t=639246193726045205&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=YMzy6GYvnzBxO6SCOWggncdRLymF4IL4rXY35Ip_tek__cZJBv60OgCL4PWKGN4amGnphXhjONEnXOSV-_oF2b_Q7JDntlo-eSIfFKDrcJg6TC5MtUS6GiDrsP-MNaJWcoK4dwJlic6YThmyv8orLvr92sVAps_U6-tr_zBJ76N0V7SV5gU8f7Q5gqFxO4MHYaFbniKRI6hnjVkYln0n1NSy2IKex6ZENsCSsR6-dHU1Yrg5J-kHyV9PoUKVRQ6hqsiVzvEFZggrnytQgJBi8FeqC2uCxbfABr7RcpoSrHcUVaqpavMYWt1OEObZbQ8b7NcvClZ9O5TTX1YzPH4GBQ&h=D5g7yx4h1VnpgBDLlwVH4V5i-4uzMYtqGGe4TUCIo7w cache-control: - no-cache content-length: - - '1463' + - '1462' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:00 GMT + - Thu, 10 Sep 2026 06:42:52 GMT expires: - '-1' pragma: @@ -601,13 +596,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/04853dc9-42f6-4827-b53b-47b97a5cd256 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/20247ee8-470d-4dac-9d60-d041acdb2206 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 446480AEF8B5470AA56A6769CFA3777C Ref B: BN1AA2051014011 Ref C: 2026-04-03T02:31:00Z' + - 'Ref A: 1CB25437E08A48F79A6D16EB5F44E0E7 Ref B: SYD281080710023 Ref C: 2026-09-10T06:42:52Z' status: code: 201 message: Created @@ -625,9 +620,9 @@ interactions: ParameterSetName: - -n -r -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-b9d52e7d-e036-458e-b54a-25c1693308b5?api-version=2026-03-01-preview&t=639107802609044057&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=M6c0ciJ3gS1-9KrYJbttt3UJKJmZARE8gVkkrt1TRFvnD8q4JuphDCK0IonufL06zFiVQ_V6mGJAEOS-SN5nWg7SAcdItCuAoHstVA2rphikAB3G-qHe0SolaiW3d2peuzzMSEvoJWhHx9go7JCf5i4nrhy8soVDnF3Fb69vUZgqbK8rUH1pu8oEU3GY3GqEXCsv6T2iJc66LI5AaJ-o-JT9lJW0DjYtMMN5qBYRC8QfnuVdeDO7gOmklyqqrFVxdpzlKXk5Y_Cw9d9KKoM_KpUxkuFo6S0d2GK8iG8jOuKGfI87FB7FzhgyLM8lBcEF6SBizx-kGAyzOVXKWNLGow&h=PljdprjhEtIuJ_A2Ua_Gjsn4_E9KNX3_yAuwNBMBnb4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-bc5993cb-1046-4f03-ba08-6011b7be3f23?api-version=2026-09-01-preview&t=639246193726045205&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=YMzy6GYvnzBxO6SCOWggncdRLymF4IL4rXY35Ip_tek__cZJBv60OgCL4PWKGN4amGnphXhjONEnXOSV-_oF2b_Q7JDntlo-eSIfFKDrcJg6TC5MtUS6GiDrsP-MNaJWcoK4dwJlic6YThmyv8orLvr92sVAps_U6-tr_zBJ76N0V7SV5gU8f7Q5gqFxO4MHYaFbniKRI6hnjVkYln0n1NSy2IKex6ZENsCSsR6-dHU1Yrg5J-kHyV9PoUKVRQ6hqsiVzvEFZggrnytQgJBi8FeqC2uCxbfABr7RcpoSrHcUVaqpavMYWt1OEObZbQ8b7NcvClZ9O5TTX1YzPH4GBQ&h=D5g7yx4h1VnpgBDLlwVH4V5i-4uzMYtqGGe4TUCIo7w response: body: string: '{"status":"Succeeded"}' @@ -636,9 +631,9 @@ interactions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-b9d52e7d-e036-458e-b54a-25c1693308b5?api-version=2026-03-01-preview&t=639107802648344526&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=gEycfa8DZJaNAFv-IL2l-NT8wKR_lWO1rpqWU5A6rfKxggcMylzNCG4E5bm-HsJMDcpjNO9qFPMGDWAsArNQHUKII-qP0svj0UqiNLloyTiVRG-XcwNItScCRfcy_9Ij83spOtV1w7Z1efbI6xGR62itztAxQqKSLeUxxNk03Paz-sL5Zebh6vdqjBPDMzXyL7uQpnTDf_R7LibmjJ2wFEFlGzHBdPXIRrOpkSl9fN_i34mnAgKB-C3PyR_uMJOBezgOenyJfLtZONYCtPBbOcUTxfPEhIWvGeG2I5ZeS3uFq91s-AFJElpuw1dpjzYqhfrlsJzu7uLjUWiuwVrE4Q&h=XUcSHtVUtdpHzLph2rjIAcip5qtDJCYLxA-hFboQBps + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1/operationStatuses/credentialsets-bc5993cb-1046-4f03-ba08-6011b7be3f23?api-version=2026-09-01-preview&t=639246193736231860&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ADqhINaLhhf4irryJGxH2RRPv2qHOljCsL6V96I8TBHbA-KNYCj6uFytPwmDBxVcXj-LUxbUayWPke9nTxrQrUHrCAxohkmWlUnhcZ4n1KrdM-9Ldd-bZ7MmmxM7JSk-tN9zS52X3D846KkJ3Nh7rZzsuPcxVwjNXi6HeGZlRnN4r2tJG50C3FXCmLYNX3P-D6eYyelkhESD_ylA8lBS5XD0R6fx_YXyGPx0NnOtdp69e6gtM8eRBgMG7cw3gwjzoPChGGmNWfVeMe7x4Gh1-TqmxjfB0eEwt1Wy6DhER2-JR7Cbz6bQO-W2cDpNWm4ItnVsJ27ENrHKWn6ZzvgEFg&h=9G7M6yGD6ySuNeI-C7rUMcAEcZaHdAc3exnuNeLjrr8 cache-control: - no-cache content-length: @@ -646,7 +641,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:04 GMT + - Thu, 10 Sep 2026 06:42:53 GMT expires: - '-1' pragma: @@ -658,11 +653,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/f1f8b9bd-fcb2-47b6-8273-17d899509a43 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4ffed6b3-e891-4202-bee9-52541459c721 x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: CDC1BE4E78474E3C81DC4CE0D4EEFDDA Ref B: BN1AA2051015029 Ref C: 2026-04-03T02:31:04Z' + - 'Ref A: F365B0D9E348416AB35A8AD04A03796C Ref B: SYD281080712040 Ref C: 2026-09-10T06:42:53Z' status: code: 200 message: OK @@ -680,29 +675,29 @@ interactions: ParameterSetName: - -n -r -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"00326228-54e6-494c-8943-2b1a432d17e5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:00.701279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:00.701279+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The - user, group or application ''name=microsoft.containerregistry/registries;appid=ccf91310-b6b2-4d89-b08d-122ad008874c;oid=00326228-54e6-494c-8943-2b1a432d17e5;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' + string: '{"type":"Microsoft.ContainerRegistry/registries/credentialSets","identity":{"principalId":"f8710bde-7f55-42a0-a2c1-7fc68efe0822","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:52.417001+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:52.417001+00:00"},"properties":{"loginServer":"mcr.microsoft.com","authCredentials":[{"name":"Credential1","usernameSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","passwordSecretIdentifier":"https://cliimportkv73021.vault.azure.net/secrets/SPusername","credentialHealth":{"status":"Unhealthy","errorCode":"Forbidden","errorMessage":"The + user, group or application ''name=microsoft.containerregistry/registries;appid=9eb3db62-6a25-45af-b897-d9d8f4da0002;oid=f8710bde-7f55-42a0-a2c1-7fc68efe0822;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/'' does not have secrets get permission on key vault ''cliimportkv73021;location=westus''. - For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-04-03T02:30:15.9238862+00:00","provisioningState":"Succeeded"}}' + For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125287"}}],"creationDate":"2026-09-10T06:42:43.389588+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1464' + - '1463' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:06 GMT + - Thu, 10 Sep 2026 06:42:54 GMT expires: - '-1' pragma: @@ -714,11 +709,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/0cfc2241-2aef-418e-8982-e14985531da5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/657f4272-54e2-4489-8e8c-37407cde580f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4143DB7D337C4ED7B6761095943469E3 Ref B: BN1AA2051015025 Ref C: 2026-04-03T02:31:07Z' + - 'Ref A: B4208BBDE7DB420F8C54B2D7BC3E081D Ref B: SYD281080707034 Ref C: 2026-09-10T06:42:54Z' status: code: 200 message: OK @@ -736,23 +731,21 @@ interactions: ParameterSetName: - -n -r -s -t -c User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testreg2tsb6e7fghlb5","name":"testreg2tsb6e7fghlb5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:42.4384986Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:42.4384986Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityn6fndszynarctkhxxb":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:56.3286837Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngvq3j2s6go3ca7pdmvcp3uw46m4ckmzjxz676nwqrkl65et6nayfby6ntoihrqrw/providers/Microsoft.ContainerRegistry/registries/cliregh5bnhbcrxi6mej","name":"cliregh5bnhbcrxi6mej","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxithhbczzzlieoewxjg4j73u3vbowohwxwwfl7gxqfyzzn2bixzcip2snlwmb3xuq/providers/Microsoft.ContainerRegistry/registries/clireg2445j56a6bm22l","name":"clireg2445j56a6bm22l","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '12971' + - '3420' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:12 GMT + - Thu, 10 Sep 2026 06:42:55 GMT expires: - '-1' pragma: @@ -766,7 +759,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 251E135F9ADD4F57944B1733BD132FCB Ref B: BN1AA2051012045 Ref C: 2026-04-03T02:31:12Z' + - 'Ref A: 58A7696E87364B208E67E25FEB408AAD Ref B: SYD281080709034 Ref C: 2026-09-10T06:42:55Z' status: code: 200 message: OK @@ -789,25 +782,25 @@ interactions: ParameterSetName: - -n -r -s -t -c User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:17.1992117+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:17.1992117+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-04-03T02:31:17.3269369+00:00","provisioningState":"Creating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.787392+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.787392+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-09-10T06:42:56.9317766+00:00","provisioningState":"Creating"}}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-0054afcf-4a6d-4bbe-87a6-d9ca3439374b?api-version=2026-03-01-preview&t=639107802774179661&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=SHQGmSBTgPu3XR6J_Jxv1zAdDsjdmN3EG6j7ilqTumxsQKRqcU_g9Tf6qwCiLGcVHUQqkUQaECypa9fcbWVlFK7TfaHiz-5HrOyCOPm7jI3pa27OloohdoKWpiGzFJjaQil0IsOHLc_iVjuKbm4FXkFExoVfv92OB4JJtz4zgW-JC6PtNgz6WxwXkOUoItRVTuYZc9aI4BZBP4o4wdg2Iz1r2xj3quQKTijbgdso9Cxu8rp1pZy2DuJBxh-_azgW7GyV-EerekC3_CwmPwLMzBS-riaGXCdl9KwGLLcET5AmCjRknbY98dKjhY0sju5xjAl-4UHPAS2jFPt26-KZgg&h=LB3a0GcAewNaW6ifnwU0o8Ml2rNe2UInbOLlkZSBZZ8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-c21f32a0-541d-4041-bbc9-c08baadffb5a?api-version=2026-09-01-preview&t=639246193770061427&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=E5X9QhtXhSujOHuVt6XT7_f7rGk_BsPwGslGEntBR-ZOC4ahQ4AJiOpwr2l6eK9yxd9CH52jv9WNfs6czFt6HHM2VAI1fbVNq7UmntzisxHJsYTmPSmZ8k4H5YIY7ccEQt253lHfwVfPZ4uVur938g7d1ZuhHDn-B7jm0_KgMSuxaon4acFWmcoRXiS29tsZaSQMk53o3pdqVdOINLitRW2K3jH91lOmUxizR1qHFiG_eGLRMAy-YYnCkHllg9UBCimTid1zEG48_6folTXHyLdwKY3aH6aaxxf8ttGu4pnowREceJ6h8kjREvCI_MlJ4aujJ3rJBkF_iugSyzt97A&h=dSY9dC8VjICSa0QAgd3JmEbWG2aZNEzPyHRi7FskH2Q cache-control: - no-cache content-length: - - '859' + - '857' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:17 GMT + - Thu, 10 Sep 2026 06:42:56 GMT expires: - '-1' pragma: @@ -819,13 +812,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/3b5a9868-b277-4edd-abaf-af0ec199c915 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ff58e0e1-bb31-4e7f-9f9b-4f676b1ba93a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E771EE37CA40432985F1AE8F3579F682 Ref B: BN1AA2051014019 Ref C: 2026-04-03T02:31:17Z' + - 'Ref A: C124E3756BAE4AD4992270DD070EF020 Ref B: SYD281080711034 Ref C: 2026-09-10T06:42:56Z' status: code: 201 message: Created @@ -843,17 +836,17 @@ interactions: ParameterSetName: - -n -r -s -t -c User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-0054afcf-4a6d-4bbe-87a6-d9ca3439374b?api-version=2026-03-01-preview&t=639107802774179661&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=SHQGmSBTgPu3XR6J_Jxv1zAdDsjdmN3EG6j7ilqTumxsQKRqcU_g9Tf6qwCiLGcVHUQqkUQaECypa9fcbWVlFK7TfaHiz-5HrOyCOPm7jI3pa27OloohdoKWpiGzFJjaQil0IsOHLc_iVjuKbm4FXkFExoVfv92OB4JJtz4zgW-JC6PtNgz6WxwXkOUoItRVTuYZc9aI4BZBP4o4wdg2Iz1r2xj3quQKTijbgdso9Cxu8rp1pZy2DuJBxh-_azgW7GyV-EerekC3_CwmPwLMzBS-riaGXCdl9KwGLLcET5AmCjRknbY98dKjhY0sju5xjAl-4UHPAS2jFPt26-KZgg&h=LB3a0GcAewNaW6ifnwU0o8Ml2rNe2UInbOLlkZSBZZ8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-c21f32a0-541d-4041-bbc9-c08baadffb5a?api-version=2026-09-01-preview&t=639246193770061427&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=E5X9QhtXhSujOHuVt6XT7_f7rGk_BsPwGslGEntBR-ZOC4ahQ4AJiOpwr2l6eK9yxd9CH52jv9WNfs6czFt6HHM2VAI1fbVNq7UmntzisxHJsYTmPSmZ8k4H5YIY7ccEQt253lHfwVfPZ4uVur938g7d1ZuhHDn-B7jm0_KgMSuxaon4acFWmcoRXiS29tsZaSQMk53o3pdqVdOINLitRW2K3jH91lOmUxizR1qHFiG_eGLRMAy-YYnCkHllg9UBCimTid1zEG48_6folTXHyLdwKY3aH6aaxxf8ttGu4pnowREceJ6h8kjREvCI_MlJ4aujJ3rJBkF_iugSyzt97A&h=dSY9dC8VjICSa0QAgd3JmEbWG2aZNEzPyHRi7FskH2Q response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-0054afcf-4a6d-4bbe-87a6-d9ca3439374b?api-version=2026-03-01-preview&t=639107802832743700&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=O3YMjlxwdsNi-8hsECBg7Xuo4_XzCHH0W2NUVyqCn2XMMs2WgomRBsWWJiT_EcMuvRg_A_08LvHQ2zDPL5mRTVDuWztI_V30JeckBXqjiq2H3yPdLMPsNVYseGnFTZJ6pZyHsJXahYou1qjK7MPeMQc1yeZnf45pBaUH9AG7S68-PI67tlyDep8_HVvRYu-Zq6rx0X5tfAXqRPDhdnGnJp5OGoH3VzmBVSSQv0vmM1TT___zw4ONvbmrlOjtXvnYYRjh2-XmSAPMve925XmhLjoi9xhJA50ooMwrQbJ0LAIJaNWJ6sW6G7gvbsQmZx2UGEDrKUTmqudDZPFMgBTsyA&h=rl8ci7zN2UUommc_6hfpUPk63jBz_F7jKiMfaFjVtLk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-c21f32a0-541d-4041-bbc9-c08baadffb5a?api-version=2026-09-01-preview&t=639246193783578533&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mWSTiGJIRu3723LMgvPrj774WX7uYp-6xOZ8Wy17XtnHKKv6O6CyJnO2WJlvi7uniu7aQwx4Kp7mbYPXpSio4nXL8wFJCjswy6VqukpsmnUFrcWa9xTTjhGU2M8wg43Y2reFv-DQ64yJ4YA_bi4oKRvtcJC7mCUn1UV7_4e1PLmpbdEEyToFnKch5mzW0TE0H5yObj2wpNJcVpIyVMMU_e7lMkuwutHj0vkr4IC1LQTNlXb_nQquvBVk7hsqV4c_64LVvjqAPbTuQ6fcU2r69Ak0kfPYkRGbFacPqdRlaHe7E7BuSP_9lsvtgJewYFWfd1CJ651tzLh2_DYJ-fKZ7A&h=rjFuJhL-Fxx0xAdj3qLv6x6QuPuKJYUoYMmKEpPqHIE cache-control: - no-cache content-length: @@ -861,7 +854,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:22 GMT + - Thu, 10 Sep 2026 06:42:58 GMT expires: - '-1' pragma: @@ -873,11 +866,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/2f91927c-a617-4285-bc31-249e472f5daf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4c5a736b-6ec1-4c6b-b1ed-4e6573a81c2f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82B0D456166242999E6154D02A99E2B1 Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:31:23Z' + - 'Ref A: 61DF522C87394151A8B7619DEB0F0058 Ref B: SYD281080708023 Ref C: 2026-09-10T06:42:57Z' status: code: 200 message: OK @@ -895,23 +888,23 @@ interactions: ParameterSetName: - -n -r -s -t -c User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:17.1992117+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:17.1992117+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-04-03T02:31:17.3269369+00:00","provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.787392+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.787392+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-09-10T06:42:56.9317766+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '860' + - '858' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:27 GMT + - Thu, 10 Sep 2026 06:42:58 GMT expires: - '-1' pragma: @@ -923,11 +916,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/487ebe25-e971-4797-9af2-7c0c86101d14 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7208cef4-3bda-4df1-a7bd-5653303a95c9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 013A0E41FD494DB0AF101E66A32C2920 Ref B: BN1AA2051012053 Ref C: 2026-04-03T02:31:27Z' + - 'Ref A: C0F9FC07AF8F4C09BE50A1CCB15B64A2 Ref B: SYD281080712036 Ref C: 2026-09-10T06:42:59Z' status: code: 200 message: OK @@ -945,23 +938,23 @@ interactions: ParameterSetName: - -r -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:17.1992117+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:17.1992117+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-04-03T02:31:17.3269369+00:00","provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.787392+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.787392+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-09-10T06:42:56.9317766+00:00","provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '872' + - '870' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:31 GMT + - Thu, 10 Sep 2026 06:42:59 GMT expires: - '-1' pragma: @@ -973,11 +966,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9d8371fd-202f-4483-9b0d-dc9f2fad8ff5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/cd9a3051-494a-49c2-97a0-614a18099796 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 74C258EF8A1942DE9FDB0FB65D8F5803 Ref B: BN1AA2051015039 Ref C: 2026-04-03T02:31:31Z' + - 'Ref A: 525C86A8583C40DDB12387C0FF3CBD10 Ref B: SYD281080705023 Ref C: 2026-09-10T06:43:00Z' status: code: 200 message: OK @@ -995,23 +988,23 @@ interactions: ParameterSetName: - -n -r -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:17.1992117+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:17.1992117+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-04-03T02:31:17.3269369+00:00","provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.787392+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.787392+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-09-10T06:42:56.9317766+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '860' + - '858' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:37 GMT + - Thu, 10 Sep 2026 06:43:00 GMT expires: - '-1' pragma: @@ -1023,11 +1016,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/efae40ba-5c93-4169-839c-aac01d09765b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1706a75d-3455-4898-bf8a-ea71581615d4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AD3E0FE6B15D49FC9CE8A766FEED86FE Ref B: BN1AA2051015031 Ref C: 2026-04-03T02:31:37Z' + - 'Ref A: 39D122C0616D47619B007B3BF44008FF Ref B: SYD281080711034 Ref C: 2026-09-10T06:43:00Z' status: code: 200 message: OK @@ -1045,22 +1038,21 @@ interactions: ParameterSetName: - -n -r --remove-cred-set User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:25.4992735Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgycnm3cbfidtkas5krtgdymfvptp3wxu7hke7xub4cybqx5k7ha5smyc4ygtlrhtud/providers/Microsoft.ContainerRegistry/registries/testreghevpvx6rip6so","name":"testreghevpvx6rip6so","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:26.6785239Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxithhbczzzlieoewxjg4j73u3vbowohwxwwfl7gxqfyzzn2bixzcip2snlwmb3xuq/providers/Microsoft.ContainerRegistry/registries/clireg2445j56a6bm22l","name":"clireg2445j56a6bm22l","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '10666' + - '3420' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:41 GMT + - Thu, 10 Sep 2026 06:43:02 GMT expires: - '-1' pragma: @@ -1074,7 +1066,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9A409CA2C98748059C6FBC53B4ECAD61 Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:31:42Z' + - 'Ref A: 1DAEFC81C6574ED09DA6D49B744EF270 Ref B: SYD281080710031 Ref C: 2026-09-10T06:43:01Z' status: code: 200 message: OK @@ -1096,17 +1088,17 @@ interactions: ParameterSetName: - -n -r --remove-cred-set User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:46.8501572+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:46.8501572+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-04-03T02:31:17.3269369+00:00","provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:03.3232117+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:03.3232117+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-09-10T06:42:56.9317766+00:00","provisioningState":"Updating"}}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-7c9ebd34-feec-46c9-a175-fdc368125b53?api-version=2026-03-01-preview&t=639107803070220274&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=lYJdujmNSbwtLKSfJuWIehX4PXPvtA44yTs0R4L2RFUEizLqetZiM6srF13v4ZZQjWJdWLaU3LC980nYvKPHiRzq2HaZJyMardNDbBsfjUQIicwz9EaPLUOy9FML57HJHH7G_7OXXanPkwTQbNpRZUm0R9N55BO9DL1IQaU7BwdSy2vvGliwljuy9OjMebu5kcc5z1-vAbTCA9sn9p0pexkO2GsLUqCQ8WJ6dmzFpGbGEOy-n3VdtT7dko1CCW6dl7YGkT5-MnNIi-CicnShgBZtH9KLbIcSZDXv7c2L4KAwAdzOfYQ4Ggd3WlSQpzUrGuca_5-_l1d6bSnf8DHnZQ&h=kthnP2UE9b_jVGJGySSXeAt7MYb7EavcTU5Z_Arywyk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-838e0512-949e-4515-8b59-b112cf6bbacf?api-version=2026-09-01-preview&t=639246193835263468&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=n-T_gIy4_6vx1vwWMcNRAHl3DHvq-7G5rYNTvEPFWbsYzjp5vcnkrG0KZz1_0k5CHA_usQZ5fMN0VB3AdqEK8HVjxHbjp1YGQR9M3VVzGAvJE9mjfUG-CIOpEJbC9C1to6LuylMBDzU3cQRtiF-25qcYNYWpIySdycLmCeCqmhWZ3IQ35HQ3alCJI1onbeYk6brJODFUcAAIDjX7Ct1TCAC8W3isR2Ja68GBtq0I7wJ9DAqqE8QrBriLxtzlwV_fqo-MRLt4qpH33TynjBPk59cYjptMBxL7lDNU4l_hWB8gKU6TNWilWgLfysoAJ4gH3nJrbbGFsMG4SHPdwu6OGw&h=vk1z8Lk5g2OxUMD1rtqBD_WVclD1aUnwgTjWJFDB8rQ cache-control: - no-cache content-length: @@ -1114,7 +1106,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:46 GMT + - Thu, 10 Sep 2026 06:43:03 GMT expires: - '-1' pragma: @@ -1126,13 +1118,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/fa7db7e1-c091-4f12-84b7-2c2bdd9f14ba + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/677bc869-9859-45fa-a2d7-71c490ac44e5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C1A8AA7F989F47308A9F5E62928CCE0E Ref B: BN1AA2051014035 Ref C: 2026-04-03T02:31:46Z' + - 'Ref A: 1D8677714EC34172A60934F7B50FA740 Ref B: SYD281080705025 Ref C: 2026-09-10T06:43:02Z' status: code: 201 message: Created @@ -1150,17 +1142,17 @@ interactions: ParameterSetName: - -n -r --remove-cred-set User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-7c9ebd34-feec-46c9-a175-fdc368125b53?api-version=2026-03-01-preview&t=639107803070220274&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=lYJdujmNSbwtLKSfJuWIehX4PXPvtA44yTs0R4L2RFUEizLqetZiM6srF13v4ZZQjWJdWLaU3LC980nYvKPHiRzq2HaZJyMardNDbBsfjUQIicwz9EaPLUOy9FML57HJHH7G_7OXXanPkwTQbNpRZUm0R9N55BO9DL1IQaU7BwdSy2vvGliwljuy9OjMebu5kcc5z1-vAbTCA9sn9p0pexkO2GsLUqCQ8WJ6dmzFpGbGEOy-n3VdtT7dko1CCW6dl7YGkT5-MnNIi-CicnShgBZtH9KLbIcSZDXv7c2L4KAwAdzOfYQ4Ggd3WlSQpzUrGuca_5-_l1d6bSnf8DHnZQ&h=kthnP2UE9b_jVGJGySSXeAt7MYb7EavcTU5Z_Arywyk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-838e0512-949e-4515-8b59-b112cf6bbacf?api-version=2026-09-01-preview&t=639246193835263468&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=n-T_gIy4_6vx1vwWMcNRAHl3DHvq-7G5rYNTvEPFWbsYzjp5vcnkrG0KZz1_0k5CHA_usQZ5fMN0VB3AdqEK8HVjxHbjp1YGQR9M3VVzGAvJE9mjfUG-CIOpEJbC9C1to6LuylMBDzU3cQRtiF-25qcYNYWpIySdycLmCeCqmhWZ3IQ35HQ3alCJI1onbeYk6brJODFUcAAIDjX7Ct1TCAC8W3isR2Ja68GBtq0I7wJ9DAqqE8QrBriLxtzlwV_fqo-MRLt4qpH33TynjBPk59cYjptMBxL7lDNU4l_hWB8gKU6TNWilWgLfysoAJ4gH3nJrbbGFsMG4SHPdwu6OGw&h=vk1z8Lk5g2OxUMD1rtqBD_WVclD1aUnwgTjWJFDB8rQ response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-7c9ebd34-feec-46c9-a175-fdc368125b53?api-version=2026-03-01-preview&t=639107803126596658&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Id-ASbiQXcUDB_3dJMQYbNJpFrh4ubkx9b52AiLFdtcx9ssCby1CvELRr_jQjxehtUaBMvnoncFVOog2exRxxkGIrx939UUNEgVsSn6l0d0QCcHWYtLhX3u1m5JCEmxFEemyEXkIeLQ_8Kd6EzYWg3VGKOsBrvukCgHENAMynHwyzsHXV1-OQ3-WaSM3pbqMbqTHhw5ve-iR6mOYANevbN37JXQmEPsJWB-frISLb9sZgidMvbgbxeiNQQZ_s7h9N3CuRE3GcBAgtODerexTjVnpsL4_QeaZjaRCjK-HxYehpeeuuoftjS4wih76FwvJNSKPrgk2oRJwZvunBDa0Ug&h=FTmHtF3UVFPm5_qvP3aXiejFZ-fZJq6g2OD-A_0WDcM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1/operationStatuses/cacherules-838e0512-949e-4515-8b59-b112cf6bbacf?api-version=2026-09-01-preview&t=639246193846083060&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ZLyIdE7uebmkI6w_Na-ortqLwxYrFFcFLAIKTJ9mbJTtMSBYo-d8BrRJHZPG4THXuXHj4Ddak5940vre83Cs7C6yvEyQ7WCgNaD26aPIAcJ4bbvn6wlwZFb0JE4KGsatFJmUUcyZPAZUO8jJ0jbLsgQH1zxHpmd2x1yFVKBr8wbHpD6uveh5XMyxdMWgw4ZdYncnXy0HjJU88K-pvvWuBYrZcGuy9jl-4VAFoMoJ9doFWcQD5SsxbJfpme9Qf2BWql-cu3EKfic5pzJ8DbCk2su9AmNWH3uCFeb_p_qVgefshriegxUTHoQroW8srcbapsrVsN6Y4MQWzzj-gf4P7w&h=IxC8gVwFlDmaL44bzCWnUk9wjMWtHg-YehiazaNSiAg cache-control: - no-cache content-length: @@ -1168,7 +1160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:52 GMT + - Thu, 10 Sep 2026 06:43:04 GMT expires: - '-1' pragma: @@ -1180,11 +1172,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/4717483f-d87b-40c9-86e7-0ac2426c5ff1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5da0ac66-cf37-4bd9-b63c-94580feca924 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 736015D313EB42B3A5552FDCCC94972A Ref B: BN1AA2051012027 Ref C: 2026-04-03T02:31:52Z' + - 'Ref A: A9A03304554B489E90F1B611163152EC Ref B: SYD281080709054 Ref C: 2026-09-10T06:43:04Z' status: code: 200 message: OK @@ -1202,15 +1194,15 @@ interactions: ParameterSetName: - -n -r --remove-cred-set User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:46.8501572+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:46.8501572+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-04-03T02:31:17.3269369+00:00","provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1","name":"test1","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:03.3232117+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:03.3232117+00:00"},"properties":{"credentialSetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1","sourceRepository":"mcr.microsoft.com/mcr/hello-world","targetRepository":"hello-world","creationDate":"2026-09-10T06:42:56.9317766+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -1218,7 +1210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:56 GMT + - Thu, 10 Sep 2026 06:43:04 GMT expires: - '-1' pragma: @@ -1230,11 +1222,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a8bd9e87-6953-468a-b933-d93e6bb11d8d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/27960728-e335-4a32-ba21-fbc7dfd6fa16 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B8F0D4757E284D458A803F683DC1D384 Ref B: BN1AA2051015039 Ref C: 2026-04-03T02:31:56Z' + - 'Ref A: B50A7E90BEA840FE80A934D578B696C3 Ref B: SYD281080705062 Ref C: 2026-09-10T06:43:05Z' status: code: 200 message: OK @@ -1252,22 +1244,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"9373b13a-8682-47be-825a-4650da38bbea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:52.3703058Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgycnm3cbfidtkas5krtgdymfvptp3wxu7hke7xub4cybqx5k7ha5smyc4ygtlrhtud/providers/Microsoft.ContainerRegistry/registries/testreghevpvx6rip6so","name":"testreghevpvx6rip6so","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:26.6785239Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxithhbczzzlieoewxjg4j73u3vbowohwxwwfl7gxqfyzzn2bixzcip2snlwmb3xuq/providers/Microsoft.ContainerRegistry/registries/clireg2445j56a6bm22l","name":"clireg2445j56a6bm22l","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}}]}' headers: cache-control: - no-cache content-length: - - '10190' + - '2831' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:00 GMT + - Thu, 10 Sep 2026 06:43:06 GMT expires: - '-1' pragma: @@ -1281,7 +1272,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B0943247D2C74705BB801422EB7FFBF8 Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:32:00Z' + - 'Ref A: CC9D735B44E04B4E9239A1DD7F680AA7 Ref B: SYD281080711042 Ref C: 2026-09-10T06:43:06Z' status: code: 200 message: OK @@ -1301,25 +1292,25 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test1?api-version=2026-09-01-preview response: body: string: '' headers: api-supported-versions: - - 2026-01-01-preview, 2026-03-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:32:04 GMT + - Thu, 10 Sep 2026 06:43:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-ef0141e4-314b-4cb6-8df6-58237b398fc5?api-version=2026-03-01-preview&t=639107803252580481&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=USLYlywWoGQkq1-0bOGDJN3iqv8sDjxIYvbuKEYiDlXcFUELeQb_2w3-odDXhZejOh85CqR5jbfk0b9Styn1J9yk7jxWMZ7Szjc7x05yXhGXuq-uSOXVQtDqkZqyQDKRVBdKTY4FjfI70yxekJ1DjF2z4aPjAT7zNPUzycUuN0A9KH3zoCaBTeu5KYcn2czqiig6_TUEc6xyAcCaNvp0azxFr5wQ-sbnu80jNwZwpQeyUy1esuJWU3m9lgq4DrPLzhidattmvN1VaUMpwXMRNfsqkQwvQheVwIIR_BXvpbEy5hb90zELp6ZfKJHSIITcMciiRzRhzGdP1QbZGR9EDg&h=ybbjxYaKMH92-en939Y0nru8CxEwF_QY06mjh_QCzN8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-3cfa436e-8096-4b82-a306-a046ba81076a?api-version=2026-09-01-preview&t=639246193874833066&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=OR2MZY5rfRam4KoqbE3jvBNr2jb8FhRE720XOaiCwnVWwboAfDkkDCcX5iU2aGC3JQNe2tm-qwkSR07Tcw_o_9W1B07MXxlJwaDAy8SEQ5qDq3eUNCAAsaJuvmz-qBUhNFdbbFQyLbN2fYwQYOBJMlItgHBQUwNuP2DcWUG_knwXJ7xV4WfIb16x76ZAkNyN4Ny28Na9A7uhKq93TZzv6v8xf9BSGOGpXhI-kdsCDME5KdxV8UOkEgF-oasB5hjdE6mJlw-hYsJ_Pab2MZqnz4stbHz0ambeufbQXXf49yTL3TIsFDFu4WMo_oJxSnItXfejS8jiUS7EKctY_GI1Gw&h=_sGf0Wwwea1t287TDBfx69THq9lHrhCXuiDJrWiLQbc pragma: - no-cache strict-transport-security: @@ -1329,13 +1320,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/db4a9242-7828-4a26-9e83-e2353551aae2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/24538fa4-f8c3-4022-9eca-026d695f7a29 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 3E8A7AC11A5544E49BCACBF989BA6468 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:32:04Z' + - 'Ref A: C8037355F2164D55B26C9F2EA8710DA7 Ref B: SYD281080708062 Ref C: 2026-09-10T06:43:07Z' status: code: 202 message: Accepted @@ -1353,9 +1344,9 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-ef0141e4-314b-4cb6-8df6-58237b398fc5?api-version=2026-03-01-preview&t=639107803252580481&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=USLYlywWoGQkq1-0bOGDJN3iqv8sDjxIYvbuKEYiDlXcFUELeQb_2w3-odDXhZejOh85CqR5jbfk0b9Styn1J9yk7jxWMZ7Szjc7x05yXhGXuq-uSOXVQtDqkZqyQDKRVBdKTY4FjfI70yxekJ1DjF2z4aPjAT7zNPUzycUuN0A9KH3zoCaBTeu5KYcn2czqiig6_TUEc6xyAcCaNvp0azxFr5wQ-sbnu80jNwZwpQeyUy1esuJWU3m9lgq4DrPLzhidattmvN1VaUMpwXMRNfsqkQwvQheVwIIR_BXvpbEy5hb90zELp6ZfKJHSIITcMciiRzRhzGdP1QbZGR9EDg&h=ybbjxYaKMH92-en939Y0nru8CxEwF_QY06mjh_QCzN8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-3cfa436e-8096-4b82-a306-a046ba81076a?api-version=2026-09-01-preview&t=639246193874833066&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=OR2MZY5rfRam4KoqbE3jvBNr2jb8FhRE720XOaiCwnVWwboAfDkkDCcX5iU2aGC3JQNe2tm-qwkSR07Tcw_o_9W1B07MXxlJwaDAy8SEQ5qDq3eUNCAAsaJuvmz-qBUhNFdbbFQyLbN2fYwQYOBJMlItgHBQUwNuP2DcWUG_knwXJ7xV4WfIb16x76ZAkNyN4Ny28Na9A7uhKq93TZzv6v8xf9BSGOGpXhI-kdsCDME5KdxV8UOkEgF-oasB5hjdE6mJlw-hYsJ_Pab2MZqnz4stbHz0ambeufbQXXf49yTL3TIsFDFu4WMo_oJxSnItXfejS8jiUS7EKctY_GI1Gw&h=_sGf0Wwwea1t287TDBfx69THq9lHrhCXuiDJrWiLQbc response: body: string: '' @@ -1365,7 +1356,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:32:08 GMT + - Thu, 10 Sep 2026 06:43:08 GMT expires: - '-1' pragma: @@ -1377,11 +1368,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/bd9f01af-cbe0-4273-9133-68c9d86d3281 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/7c54cb6b-94ff-4747-b51d-e3ee2f8baeec x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CCDF75B39F3F4E8F97FA190A2D24FF9E Ref B: BN1AA2051012029 Ref C: 2026-04-03T02:32:08Z' + - 'Ref A: A508396D34A6432498E44FC71EC7A9DD Ref B: SYD281080712036 Ref C: 2026-09-10T06:43:08Z' status: code: 200 message: OK @@ -1399,22 +1390,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"9373b13a-8682-47be-825a-4650da38bbea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:52.3703058Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgycnm3cbfidtkas5krtgdymfvptp3wxu7hke7xub4cybqx5k7ha5smyc4ygtlrhtud/providers/Microsoft.ContainerRegistry/registries/testreghevpvx6rip6so","name":"testreghevpvx6rip6so","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:26.6785239Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxithhbczzzlieoewxjg4j73u3vbowohwxwwfl7gxqfyzzn2bixzcip2snlwmb3xuq/providers/Microsoft.ContainerRegistry/registries/clireg2445j56a6bm22l","name":"clireg2445j56a6bm22l","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}}]}' headers: cache-control: - no-cache content-length: - - '9575' + - '3427' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:12 GMT + - Thu, 10 Sep 2026 06:43:09 GMT expires: - '-1' pragma: @@ -1428,7 +1418,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E2C88F5DEB13406E896384DD52F2BAA6 Ref B: BN1AA2051012039 Ref C: 2026-04-03T02:32:12Z' + - 'Ref A: 5D13FFE40494490194347F881412624F Ref B: SYD281080705023 Ref C: 2026-09-10T06:43:09Z' status: code: 200 message: OK @@ -1448,9 +1438,9 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/credentialSets/test1?api-version=2026-09-01-preview response: body: string: '' @@ -1459,17 +1449,17 @@ interactions: - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:32:15 GMT + - Thu, 10 Sep 2026 06:43:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/credentialsets-b3a9ae1d-2bd4-4bce-bbac-7d5cf63f6a79?api-version=2026-03-01-preview&t=639107803359183295&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Yj5sgkupH-_mnV0WSkIUNHoiMnvgiMIwWZ8KQH4ZrQ11zkmRQXZkD15s0IpKGYeT3d8YGqF_dRV1NQPB7acnTojU5ri7SlmK21A3Uwwjsfb9po4QucrCWyERtkt8y2MqS-0scRX8jYlrtPtULyuHekKWD-QtkXX0ktpx92KMVUILomM25QR_ckvIsFWyxOiXG9qBMZji4hFYlA48b8XnJuFG-1CcRIRc803l7rRUZpJ0W7v5ANXBJVJ5Y8x9LzKT7MpTVvgqvJNwFXkzLiWO7NbghwOGx3vXZICG5EZZn-zHrnWb8PLME23BQkrkRvPQzfUXSXS2N1WMVbGu323p9g&h=0MuAkqMuVaM7ClvXhy3-055P3LsSS88ZN0fwDRIKJzw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/credentialsets-8f1b9c35-761a-4a3d-8ed4-b17e074b55cb?api-version=2026-09-01-preview&t=639246193912651969&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=xfTPPODcRMmjUERuIB3ALy1Qlz_pB99XajGKa4A5zgP8YsYRuLH9Fh8il0nvKB68_qz1dxBym-uhAEfjYB6hzc26uolzUJ9WyIuEwrh4Ha-cV9aowZb5RvvpE30_ZQ7fyJx9nj4Yrr_TZ_9pGG4IFEwbiMxNEIQnCg38BiLNIoDY92O6iNG1Jlc-o953j5czXTro7ZDQtHXW3Ew-_TgCcxJjblS5VA2rvGo_dGcnXibB4DAww9rGqOuVZHs-kblr9F73vQZO136IBoSfWXbXdRqZVVJxF4A8S2MadyUoQcynwRswJWvl_gx0yi3rs85SJknG1Mrxj5Fwa8M7In_USg&h=26EEbygYal1YsOC3DPwfAHuQEMuRDtk5fVQDm_4U4x0 pragma: - no-cache strict-transport-security: @@ -1479,13 +1469,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/45280281-1657-4058-a49a-7097ad31855b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2765bea3-50d4-4018-9082-d9adfb7a007c x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: A6DE5C51470840D993F61D1D4EA3A4C7 Ref B: BN1AA2051014035 Ref C: 2026-04-03T02:32:15Z' + - 'Ref A: 3E0F8DB03C8C463381C05F686F0B2378 Ref B: SYD281080712031 Ref C: 2026-09-10T06:43:10Z' status: code: 202 message: Accepted @@ -1503,9 +1493,9 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/credentialsets-b3a9ae1d-2bd4-4bce-bbac-7d5cf63f6a79?api-version=2026-03-01-preview&t=639107803359183295&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Yj5sgkupH-_mnV0WSkIUNHoiMnvgiMIwWZ8KQH4ZrQ11zkmRQXZkD15s0IpKGYeT3d8YGqF_dRV1NQPB7acnTojU5ri7SlmK21A3Uwwjsfb9po4QucrCWyERtkt8y2MqS-0scRX8jYlrtPtULyuHekKWD-QtkXX0ktpx92KMVUILomM25QR_ckvIsFWyxOiXG9qBMZji4hFYlA48b8XnJuFG-1CcRIRc803l7rRUZpJ0W7v5ANXBJVJ5Y8x9LzKT7MpTVvgqvJNwFXkzLiWO7NbghwOGx3vXZICG5EZZn-zHrnWb8PLME23BQkrkRvPQzfUXSXS2N1WMVbGu323p9g&h=0MuAkqMuVaM7ClvXhy3-055P3LsSS88ZN0fwDRIKJzw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/credentialsets-8f1b9c35-761a-4a3d-8ed4-b17e074b55cb?api-version=2026-09-01-preview&t=639246193912651969&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=xfTPPODcRMmjUERuIB3ALy1Qlz_pB99XajGKa4A5zgP8YsYRuLH9Fh8il0nvKB68_qz1dxBym-uhAEfjYB6hzc26uolzUJ9WyIuEwrh4Ha-cV9aowZb5RvvpE30_ZQ7fyJx9nj4Yrr_TZ_9pGG4IFEwbiMxNEIQnCg38BiLNIoDY92O6iNG1Jlc-o953j5czXTro7ZDQtHXW3Ew-_TgCcxJjblS5VA2rvGo_dGcnXibB4DAww9rGqOuVZHs-kblr9F73vQZO136IBoSfWXbXdRqZVVJxF4A8S2MadyUoQcynwRswJWvl_gx0yi3rs85SJknG1Mrxj5Fwa8M7In_USg&h=26EEbygYal1YsOC3DPwfAHuQEMuRDtk5fVQDm_4U4x0 response: body: string: '' @@ -1515,7 +1505,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:32:19 GMT + - Thu, 10 Sep 2026 06:43:11 GMT expires: - '-1' pragma: @@ -1527,11 +1517,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/35469562-171e-4cc9-8e3f-6b0787bc393d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/eaed0441-b91b-4587-b8aa-9c38c6115ac2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CE3BE7F24079432EB258136807444B0A Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:32:18Z' + - 'Ref A: 6572C1C0DF284FC4A90D58C0AE18D610 Ref B: SYD281080705036 Ref C: 2026-09-10T06:43:11Z' status: code: 200 message: OK @@ -1551,27 +1541,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:41.1619116Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:02.9488457+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:02.9488932+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.4953872Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.0733291+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.07337+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1610' + - '1640' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:24 GMT + - Thu, 10 Sep 2026 06:43:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-56147a93-2f05-11f1-ae0f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803444336549&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=JOulAaPBnuKAugV8IzkpazSAbpwTRkOXqU2LgWp9UwkzLQd9we-_Zh6m1ZPHTRYb3XY2XdnujlAy0RW77ueMLlxI5E3R6WeUp8Yf1m_LU_IBEZN6D9p2wwjhq6pR2KuuIrdLZbXEuE9j5PCqf-sYVrFMXRhSv606nm7VAsHMlNuvHmpOwpcKNodXPyGIexmhO4ina9Z8fuYyJ9N48JzQSLYiJY5pB77BkbBMC6YXWC_gOpCFi5ckdsfrckvVwjkELBe8EXXZO7BAtX8oqNWUym1clAoURmc-rVQbewggRnYLrB50DF2jQo-AYgDvKiobOoego4KNHV-Mtcxk6t0NOw&h=2vSlVrVoRMlsZt-7v30aId9dWrnPQE9gwXn9ihMyDKU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e5d0c767-ace2-11f1-9d96-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193938951726&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LtTXT26JQJamnpldTxUucQrcPG8494kUIi6B1moGz9Gy9qT-1-IsmxSV4wda_frod5SSBIqoNnrrup4Eu_18O_79HB5Sr9cdLp5CF1SQnaMhwYSfvT4pgBdaDB9ySqpxlUQhVC2gt4JVkHDcbaW9_GYhi0dVw0cPg6rxRdX2pNZEBFQ6-sbKbcgtn6alZABAZsYtRCKicSWSt6-X2bjMbL-Mz0EDrYiRD0GGLRD4W9oqUfOGeHqG-3T_l6IetyLCUuGlmMEAxDbqEU3EL87oaaReblhml_rsqUCIH8LxkQGt--CRPxvP7Q0hkkplCB3aX_cE9xSzxnol2f6tM9waQQ&h=-Z7pEqRtn_OH1jGlc1AR7XkpEthccaO6rOI02rqktYE pragma: - no-cache strict-transport-security: @@ -1581,13 +1571,61 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/bc2fc95d-1e80-429e-9bc4-3f48f40ac435 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/452e7889-4c19-4098-99b3-aa5afe52dd2d x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 2C32EC7CA67A43E780C2403ADFB33311 Ref B: BN1AA2051013021 Ref C: 2026-04-03T02:32:24Z' + - 'Ref A: 9BA2C860282E4B4A8F2CED3B09966847 Ref B: SYD281080707036 Ref C: 2026-09-10T06:43:13Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e5d0c767-ace2-11f1-9d96-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193938951726&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LtTXT26JQJamnpldTxUucQrcPG8494kUIi6B1moGz9Gy9qT-1-IsmxSV4wda_frod5SSBIqoNnrrup4Eu_18O_79HB5Sr9cdLp5CF1SQnaMhwYSfvT4pgBdaDB9ySqpxlUQhVC2gt4JVkHDcbaW9_GYhi0dVw0cPg6rxRdX2pNZEBFQ6-sbKbcgtn6alZABAZsYtRCKicSWSt6-X2bjMbL-Mz0EDrYiRD0GGLRD4W9oqUfOGeHqG-3T_l6IetyLCUuGlmMEAxDbqEU3EL87oaaReblhml_rsqUCIH8LxkQGt--CRPxvP7Q0hkkplCB3aX_cE9xSzxnol2f6tM9waQQ&h=-Z7pEqRtn_OH1jGlc1AR7XkpEthccaO6rOI02rqktYE + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Sep 2026 06:43:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e5d0c767-ace2-11f1-9d96-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193952691339&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=Qh46c41fYI_eIkCRfGENNYFRLuDpW6OUzb1xSzMtpB1YHAvikEOCW0mC1UtkiYumT9we7Ic42a1g2KvYkz7tu-WzZe56g3ig65d5eWmeQXgHSzdj0NiIOEbP8zOq-SEON1jKrQnWp_MpDs-5EmM3ife7-HZkS61bKknL3X_PBxGH_jJz10YDbTXwV8Bsek-OkyT-CQ8-RBV-xtbnCA5zMhZKcEzHBVIRHCqdcNgotEt9UwfO2LeGrIv-8-3aGzNB4kwM4b9Brvlcpv1eQwRLbN1x-w3ThinZ7qAs9UQ_mD6WaSsHBio2HJicbZV9sx8THqn18a0NwTUy-L6rYj87IA&h=ol11HHrPdF4u00c7cCX5EsG30ROemgFP9XZuw4EGFIc + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/12c9a202-e14e-499e-a580-581d7c88003d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AE2F56E279E34BF5ADD4948C6A4F6FAD Ref B: SYD281080705025 Ref C: 2026-09-10T06:43:14Z' status: code: 202 message: Accepted @@ -1605,9 +1643,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-56147a93-2f05-11f1-ae0f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803444336549&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=JOulAaPBnuKAugV8IzkpazSAbpwTRkOXqU2LgWp9UwkzLQd9we-_Zh6m1ZPHTRYb3XY2XdnujlAy0RW77ueMLlxI5E3R6WeUp8Yf1m_LU_IBEZN6D9p2wwjhq6pR2KuuIrdLZbXEuE9j5PCqf-sYVrFMXRhSv606nm7VAsHMlNuvHmpOwpcKNodXPyGIexmhO4ina9Z8fuYyJ9N48JzQSLYiJY5pB77BkbBMC6YXWC_gOpCFi5ckdsfrckvVwjkELBe8EXXZO7BAtX8oqNWUym1clAoURmc-rVQbewggRnYLrB50DF2jQo-AYgDvKiobOoego4KNHV-Mtcxk6t0NOw&h=2vSlVrVoRMlsZt-7v30aId9dWrnPQE9gwXn9ihMyDKU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e5d0c767-ace2-11f1-9d96-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193952691339&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=Qh46c41fYI_eIkCRfGENNYFRLuDpW6OUzb1xSzMtpB1YHAvikEOCW0mC1UtkiYumT9we7Ic42a1g2KvYkz7tu-WzZe56g3ig65d5eWmeQXgHSzdj0NiIOEbP8zOq-SEON1jKrQnWp_MpDs-5EmM3ife7-HZkS61bKknL3X_PBxGH_jJz10YDbTXwV8Bsek-OkyT-CQ8-RBV-xtbnCA5zMhZKcEzHBVIRHCqdcNgotEt9UwfO2LeGrIv-8-3aGzNB4kwM4b9Brvlcpv1eQwRLbN1x-w3ThinZ7qAs9UQ_mD6WaSsHBio2HJicbZV9sx8THqn18a0NwTUy-L6rYj87IA&h=ol11HHrPdF4u00c7cCX5EsG30ROemgFP9XZuw4EGFIc response: body: string: '' @@ -1617,7 +1655,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:32:26 GMT + - Thu, 10 Sep 2026 06:43:26 GMT expires: - '-1' pragma: @@ -1629,11 +1667,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/6a633b85-840b-4507-beb0-4ea2f1f169f3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/f6e1cbf4-942d-4ce7-b8be-5398896bba41 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4FBCA1D821844315B9701213B94D9CC0 Ref B: BN1AA2051015023 Ref C: 2026-04-03T02:32:26Z' + - 'Ref A: 24F547D8278148C8960191F426EE58A2 Ref B: SYD281080705034 Ref C: 2026-09-10T06:43:26Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache_managed_identity.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache_managed_identity.yaml index 324525fa9aa..2e7cb5a707b 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache_managed_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_cache_managed_identity.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:17.1836776+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:17.1836776+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T03:19:17.1836776Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T03:19:24.5850991+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T03:19:24.5851328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:33.4565203Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:39.8984636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:39.8985006+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:24 GMT + - Thu, 10 Sep 2026 06:43:39 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/81397c06-a616-4679-8dcf-c4371c06cf1e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/59ec1060-817b-4592-8e0d-ec0334362405 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: FB5367DE723845B4B8A9BBE17A48D367 Ref B: CO6AA3150220035 Ref C: 2026-03-26T03:19:15Z' + - 'Ref A: C4E34EF4B151456F8D7423B0B752E42F Ref B: SYD281080709036 Ref C: 2026-09-10T06:43:33Z' status: code: 200 message: OK @@ -70,12 +70,12 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_cache_managed_identity","date":"2026-03-26T03:19:13Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_cache_managed_identity","date":"2026-09-10T06:43:29Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -84,7 +84,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:24 GMT + - Thu, 10 Sep 2026 06:43:40 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4837EAC167154CE6886FD9D72C944176 Ref B: MWH011020806040 Ref C: 2026-03-26T03:19:25Z' + - 'Ref A: 671227B587B54F3081965D51588BB9EA Ref B: SYD281080710040 Ref C: 2026-09-10T06:43:40Z' status: code: 200 message: OK @@ -120,21 +120,21 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003?api-version=2025-05-31-preview response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003","name":"cache-identity000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"f6e4c6f9-9741-4c23-8e1b-e6900eeb1d74","clientId":"7e64ae13-50c6-40da-a3b5-b26b575ee512"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003","name":"cache-identity000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","assignmentRestrictions":{"providers":[]},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"128fddc9-6459-4634-9d41-32230f15079f","clientId":"71b65309-d34c-467b-8f88-cd18df1caf25"}}' headers: cache-control: - no-cache content-length: - - '482' + - '524' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:27 GMT + - Thu, 10 Sep 2026 06:43:44 GMT expires: - '-1' location: @@ -148,13 +148,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/571fd2fd-e528-4be6-b6bd-70b92298d339 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ef0ea182-f787-4a26-939b-46979ae25de4 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2E7DD8297B4645A2A7DCF181C7D38CBC Ref B: MWH011020806031 Ref C: 2026-03-26T03:19:25Z' + - 'Ref A: 7DEEB78DB1B54F388B6F970139E83E08 Ref B: SYD281080710042 Ref C: 2026-09-10T06:43:41Z' status: code: 201 message: Created @@ -172,12 +172,12 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_cache_managed_identity","date":"2026-03-26T03:19:13Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_cache_managed_identity","date":"2026-09-10T06:43:29Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:26 GMT + - Thu, 10 Sep 2026 06:43:44 GMT expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 14942E677C15421EB6259B3CDC4839A1 Ref B: MWH011020807060 Ref C: 2026-03-26T03:19:27Z' + - 'Ref A: 5B13FDB429A94B99AC7A7F3C0C31E243 Ref B: SYD281080707023 Ref C: 2026-09-10T06:43:45Z' status: code: 200 message: OK @@ -222,21 +222,21 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity2000004?api-version=2025-05-31-preview response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity2000004","name":"cache-identity2000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"fb447b60-b81e-454b-a422-e319fd222cfc","clientId":"49a1f76a-d93a-43ba-8201-fb74ee0cd609"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity2000004","name":"cache-identity2000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","assignmentRestrictions":{"providers":[]},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"453e6cf9-9059-4b12-b144-39272257ae51","clientId":"8762588b-c712-4b1f-aab2-67a4a3f2b5c1"}}' headers: cache-control: - no-cache content-length: - - '484' + - '526' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:28 GMT + - Thu, 10 Sep 2026 06:43:47 GMT expires: - '-1' location: @@ -250,13 +250,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/4cf2c25d-467c-43ff-92d0-38d70a8ce818 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/dced09bb-6fee-4604-8308-2b8908391197 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: B8E34B6C0DF14E03A497E23476839680 Ref B: CO6AA3150220029 Ref C: 2026-03-26T03:19:27Z' + - 'Ref A: F408721553974EA68E0898E3E0FA7229 Ref B: SYD281080710029 Ref C: 2026-09-10T06:43:45Z' status: code: 201 message: Created @@ -274,21 +274,21 @@ interactions: ParameterSetName: - -n -r -s -t --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvarga","name":"anvarga","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dev-anvarga/providers/Microsoft.ManagedIdentity/userAssignedIdentities/anvargaidentity":{"principalId":"bf7b10eb-1784-40fb-bc60-2bc2c780d6a4","clientId":"c8deb855-42ed-432b-99f5-dc9cbc6c8d02"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-04-20T21:35:14.9732943Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T18:24:37.9722734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargadev","name":"anvargadev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-16T00:02:46.5515473Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T00:02:46.5515473Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-artifactcache/providers/Microsoft.ContainerRegistry/registries/anvargasd","name":"anvargasd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-03T18:42:30.1306296Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-07T01:16:30.8836181Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargacuseuap","name":"anvargacuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-17T05:09:28.2847833Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T05:09:28.2847833Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargatargetregistry","name":"anvargatargetregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-14T21:32:22.1211214Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-14T21:32:22.1211214Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargacuseuap2","name":"anvargacuseuap2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-16T23:59:03.139671Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-16T23:59:03.139671Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-artifactcache/providers/Microsoft.ContainerRegistry/registries/anvargaupstreamfirewall","name":"anvargaupstreamfirewall","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T19:52:04.3843475Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T19:54:36.3753519Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/acranvargalogs","name":"acranvargalogs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-11T22:00:56.7502595Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-11T22:00:56.7502595Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abac-artifact-cache/providers/Microsoft.ContainerRegistry/registries/abacupstream","name":"abacupstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-16T22:05:31.24Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-16T22:05:31.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abac-artifact-cache/providers/Microsoft.ContainerRegistry/registries/abacdownstream","name":"abacdownstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-16T22:06:06.547017Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-16T22:06:06.547017Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf002","name":"perf002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:47.0749168Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:47.0749168Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf005","name":"perf005","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:36:04.5870512Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-18T14:51:49.3136858Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf000","name":"perf000","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:35.5817756Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:35.5817756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf003","name":"perf003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:52.6000756Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:52.6000756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf001","name":"perf001","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:40.8123499Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:40.8123499Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf004","name":"perf004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:58.8025388Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:58.8025388Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:17.1836776Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:17.1836776Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-demo/providers/Microsoft.ContainerRegistry/registries/anvargadownstream","name":"anvargadownstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-28T23:23:41.5959636Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-28T23:29:01.5110085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-demo/providers/Microsoft.ContainerRegistry/registries/anvargaupstream","name":"anvargaupstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-28T23:24:03.8642396Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-28T23:24:03.8642396Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_y2esesfzzb4b47qyvjdy5k4k2if3tkrtu367fwlunxtu7xddrkb5uuz5dx/providers/Microsoft.ContainerRegistry/registries/clitestrbacfqrvg","name":"clitestrbacfqrvg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' headers: cache-control: - no-cache content-length: - - '10257' + - '4022' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:28 GMT + - Thu, 10 Sep 2026 06:43:49 GMT expires: - '-1' pragma: @@ -302,7 +302,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 06CA666CAEA1410A8CAFC12A61F1DC91 Ref B: MWH011020806025 Ref C: 2026-03-26T03:19:29Z' + - 'Ref A: BB0D4F82155A4E2B9ED3698C11C9E10A Ref B: SYD281080708036 Ref C: 2026-09-10T06:43:49Z' status: code: 200 message: OK @@ -327,25 +327,25 @@ interactions: ParameterSetName: - -n -r -s -t --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003":{"principalId":"f6e4c6f9-9741-4c23-8e1b-e6900eeb1d74","clientId":"7e64ae13-50c6-40da-a3b5-b26b575ee512"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:29.9003558+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:29.9003558+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-03-26T03:19:30.401722+00:00","provisioningState":"Creating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003":{"principalId":"128fddc9-6459-4634-9d41-32230f15079f","clientId":"71b65309-d34c-467b-8f88-cd18df1caf25"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:50.2007906+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:50.2007906+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-09-10T06:43:50.6015043+00:00","provisioningState":"Creating"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-12323aac-3a4e-4e0d-9c01-71a3c3656bc0?api-version=2026-03-01-preview&t=639100919704628687&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=c5khRcrrbclmFZkoPtMhlwTZMmeRNGiboIinJ_w_h5vmSdwHqx7XJEXAr4Q3XqpxmD4fxKOPDacaFmW6PbJ2AaCtoLJaqGfNSQvUVJ3orXLxB1zXc8VgrsodrgYARsxuBeINkD9mU-YB7rYiprNdqPi9wCF33vj8Qiqjp0eRd1d-UvdTAPCU2b9Ul8QNeK9516qkmNKJvcbDfhRyxcKDtejfFntlxVw7Wi3xrwiv0rrtzgevA_XlM2-NMjSTscUWyhBGXmfEAzW-Jse92MM3X72VV0WAleaFnGwxv3nAzLNkuCgUhiRiBi2jcgiPvdeLz76JSjBoHJwjYwNq6CUOcQ&h=AqvZBpGiUeWIIP8XMnL3lulnS5vitlrAdaiadXCeGVs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-ab354aeb-1e51-43c9-b97f-070cdfc09f14?api-version=2026-09-01-preview&t=639246194306539064&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Uv8hANQ_ysm9QbAzC0AHoZmLjP8gA3hmUSlV9A7JfF3MlkUQF0maJWKVk-g7lxnbA5aaDdGpASxUCWst2srtD-8b_V5JUHdPxNDuzFyVDekpLUWhjh8eVG_ijTla6ImBMbSq6bsbl32ns5pFJkkV8phYec3BIuE6gvwG6soYrDSnrdXKZTQDopjJOJcEuZZfnnzXOSODiiplxHY5L6AQtvdieGvdNQbhvlqr87OgNdri8hdTp6L1nTS05mmTO19QzUTPYyD1SPkfTV_YzJTE1J0usFiv802sll-s8Am7dBWnI77QHMqsrDrukLaVG-4nglc4_NZ_CnzC3R6QdXO6Gg&h=UeyQjrTZVI4izkEkAbOQn_KqwOr7uBIvrR8JletEL08 cache-control: - no-cache content-length: - - '1009' + - '1010' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:30 GMT + - Thu, 10 Sep 2026 06:43:50 GMT expires: - '-1' pragma: @@ -357,13 +357,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/403b71f2-3bfb-44fd-abf7-a357897a9e4b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a09908c7-bdf3-4fd1-9f21-5e2ed4a68236 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 05FD478202834E7BA84CF4DD986DDDAF Ref B: MWH011020806052 Ref C: 2026-03-26T03:19:29Z' + - 'Ref A: F450EBCE7FBE4772B0587DE3B1F2A1D1 Ref B: SYD281080708060 Ref C: 2026-09-10T06:43:50Z' status: code: 201 message: Created @@ -381,69 +381,17 @@ interactions: ParameterSetName: - -n -r -s -t --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-12323aac-3a4e-4e0d-9c01-71a3c3656bc0?api-version=2026-03-01-preview&t=639100919704628687&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=c5khRcrrbclmFZkoPtMhlwTZMmeRNGiboIinJ_w_h5vmSdwHqx7XJEXAr4Q3XqpxmD4fxKOPDacaFmW6PbJ2AaCtoLJaqGfNSQvUVJ3orXLxB1zXc8VgrsodrgYARsxuBeINkD9mU-YB7rYiprNdqPi9wCF33vj8Qiqjp0eRd1d-UvdTAPCU2b9Ul8QNeK9516qkmNKJvcbDfhRyxcKDtejfFntlxVw7Wi3xrwiv0rrtzgevA_XlM2-NMjSTscUWyhBGXmfEAzW-Jse92MM3X72VV0WAleaFnGwxv3nAzLNkuCgUhiRiBi2jcgiPvdeLz76JSjBoHJwjYwNq6CUOcQ&h=AqvZBpGiUeWIIP8XMnL3lulnS5vitlrAdaiadXCeGVs - response: - body: - string: '{"status":"Creating"}' - headers: - api-supported-versions: - - 2026-01-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-12323aac-3a4e-4e0d-9c01-71a3c3656bc0?api-version=2026-03-01-preview&t=639100919709086471&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=XxQaVu47Uy7xdEUpZMFXXjoCXxOJF4ylY7fESdjl7uHgDVq7E47bGlMUhGnFlTDrITnEFmj77hy1zz11tX-1t-LzoVhu6fnLyy5oItn369-kSkwzEu0AqZtwjRX3Hz-vp0s3fGLgLJm5Tjh8x4-n6k9oCrWeKvkJJYR9D38a-6dcPJJHfWdpeaTJV5a1M_rY45FJGeepdBOdsIuNGUx2I0aWdz5aEKP80ZuuX59wYFx5-xMOpwxEq6OPA7C-ZcS8R323RJuaIAFkHpk-FZgav3a0jpjD9Twb3NcgwLhyRYpZrXufbJNkq8VpuE1ERzu9f7khdWhxg1UgEgYFRltqiw&h=bwsESLx2GK2UVD7krgJ9iPJTVHyehk6euYHt9NB8qeQ - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 26 Mar 2026 03:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/b7ab0fd9-6cbd-4894-9efd-808f62153f03 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E4D1BA6412514F34A52421EBCB125DA5 Ref B: MWH011020808062 Ref C: 2026-03-26T03:19:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr cache create - Connection: - - keep-alive - ParameterSetName: - - -n -r -s -t --identity - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-12323aac-3a4e-4e0d-9c01-71a3c3656bc0?api-version=2026-03-01-preview&t=639100919704628687&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=c5khRcrrbclmFZkoPtMhlwTZMmeRNGiboIinJ_w_h5vmSdwHqx7XJEXAr4Q3XqpxmD4fxKOPDacaFmW6PbJ2AaCtoLJaqGfNSQvUVJ3orXLxB1zXc8VgrsodrgYARsxuBeINkD9mU-YB7rYiprNdqPi9wCF33vj8Qiqjp0eRd1d-UvdTAPCU2b9Ul8QNeK9516qkmNKJvcbDfhRyxcKDtejfFntlxVw7Wi3xrwiv0rrtzgevA_XlM2-NMjSTscUWyhBGXmfEAzW-Jse92MM3X72VV0WAleaFnGwxv3nAzLNkuCgUhiRiBi2jcgiPvdeLz76JSjBoHJwjYwNq6CUOcQ&h=AqvZBpGiUeWIIP8XMnL3lulnS5vitlrAdaiadXCeGVs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-ab354aeb-1e51-43c9-b97f-070cdfc09f14?api-version=2026-09-01-preview&t=639246194306539064&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Uv8hANQ_ysm9QbAzC0AHoZmLjP8gA3hmUSlV9A7JfF3MlkUQF0maJWKVk-g7lxnbA5aaDdGpASxUCWst2srtD-8b_V5JUHdPxNDuzFyVDekpLUWhjh8eVG_ijTla6ImBMbSq6bsbl32ns5pFJkkV8phYec3BIuE6gvwG6soYrDSnrdXKZTQDopjJOJcEuZZfnnzXOSODiiplxHY5L6AQtvdieGvdNQbhvlqr87OgNdri8hdTp6L1nTS05mmTO19QzUTPYyD1SPkfTV_YzJTE1J0usFiv802sll-s8Am7dBWnI77QHMqsrDrukLaVG-4nglc4_NZ_CnzC3R6QdXO6Gg&h=UeyQjrTZVI4izkEkAbOQn_KqwOr7uBIvrR8JletEL08 response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-12323aac-3a4e-4e0d-9c01-71a3c3656bc0?api-version=2026-03-01-preview&t=639100919814340547&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=iYBw22haGkmR0dCNypcTEUYW1SHiFxhWW_HxJVhG4yjILHnwZfJGlokSShyTn7FoIWmN9hVruAz8nzf-M9DcV9j4pO0fHVAjl67jXKdjaYBkQOk3aCh4Pz7E6MrJOhRYIX9NSGHMFFjkQvvMbaFFIsDAL2S5cIGUU37BU_sjz4-qrMDvlTAtuyTPoOgpD7GShbITqO8pPcjOOB6UiAm2TzC0E6uQe2285h8kWNAhhzxviB1hA0GezF_3u372k0lRzvCT0oUbkEMytUgkPZMZ2wcg0XMsg9opCmlgWeUB10UrsocgLIkRop4RXucdqaixUHpAMEhVSeTKc3cm_EFF-g&h=tiIOFqkvtEgr1TgkuwJKRM8MlxvM9VYHJa7160f8MeA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-ab354aeb-1e51-43c9-b97f-070cdfc09f14?api-version=2026-09-01-preview&t=639246194317270575&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=wK154RMx1zj3S0XOO5ZwkVzZVs6cnZkcac2cPE-jKGzNwS1DnW3nrI9grx0_gcbHK10assva2ae75-0NWxCR3f3TMIhrdTEfFScjr3AP01LHkyJNvtvikS1Q0_SngXvKjQuNWJAnyjbO-wDbqgm0aYCQIJ55UmMJbPGY_9c-d6qy7wkpsMtvXj0q9I_m2L1RNymMz6ASmoe7V3TznZWP-ALB3ajRZa2Slwb7nw31tySqChOw6aYUKdOgDYhoCVKYYeyHIUv0to0iOIkSvGv3Q2fnVTx9czAMj72vP21R9Pz_yF7PNxOy8rFFtvO8GE5VCXO2DRFEyRjTMil3Utlo0g&h=NNZF7BdMTFOtaND2Hs8TLCwIBSECSzh8ihUu4A-wW8k cache-control: - no-cache content-length: @@ -451,7 +399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:40 GMT + - Thu, 10 Sep 2026 06:43:51 GMT expires: - '-1' pragma: @@ -463,11 +411,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/9355ef05-7341-45b8-8975-bec87b458d67 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b1b0cf40-52bc-436d-a963-485f533c05ca x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E04DBDC2A5C947FDAECAD0FEF6DB06CA Ref B: MWH011020809042 Ref C: 2026-03-26T03:19:41Z' + - 'Ref A: 04B26D4EAA7342CDA30178EDAA1B0056 Ref B: SYD281080708060 Ref C: 2026-09-10T06:43:51Z' status: code: 200 message: OK @@ -485,23 +433,23 @@ interactions: ParameterSetName: - -n -r -s -t --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003":{"principalId":"f6e4c6f9-9741-4c23-8e1b-e6900eeb1d74","clientId":"7e64ae13-50c6-40da-a3b5-b26b575ee512"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:29.9003558+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:29.9003558+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-03-26T03:19:30.401722+00:00","provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003":{"principalId":"128fddc9-6459-4634-9d41-32230f15079f","clientId":"71b65309-d34c-467b-8f88-cd18df1caf25"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:50.2007906+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:50.2007906+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-09-10T06:43:50.6015043+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1010' + - '1011' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:42 GMT + - Thu, 10 Sep 2026 06:43:52 GMT expires: - '-1' pragma: @@ -513,11 +461,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/e8c78622-2019-4724-acd0-4c6ee3a5acff + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/96c36b1e-312c-4211-a2fb-5ef75b80dabf x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 49A8A8B72DA04DF391873D2B2BC9D6CD Ref B: CO6AA3150219031 Ref C: 2026-03-26T03:19:41Z' + - 'Ref A: 15863529518745D7AB1F7D91C7997A20 Ref B: SYD281080709034 Ref C: 2026-09-10T06:43:52Z' status: code: 200 message: OK @@ -535,23 +483,23 @@ interactions: ParameterSetName: - -n -r -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003":{"principalId":"f6e4c6f9-9741-4c23-8e1b-e6900eeb1d74","clientId":"7e64ae13-50c6-40da-a3b5-b26b575ee512"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:29.9003558+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:29.9003558+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-03-26T03:19:30.401722+00:00","provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity000003":{"principalId":"128fddc9-6459-4634-9d41-32230f15079f","clientId":"71b65309-d34c-467b-8f88-cd18df1caf25"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:50.2007906+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:50.2007906+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-09-10T06:43:50.6015043+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1010' + - '1011' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:42 GMT + - Thu, 10 Sep 2026 06:43:53 GMT expires: - '-1' pragma: @@ -563,11 +511,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/fdc29e3c-171d-45e3-bd96-13ecd95d7f56 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/f3754c89-e62e-44a1-883c-0ad0d2f111ea x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D18F4DA0EAFA456CB729C83A62E35BAA Ref B: CO6AA3150218049 Ref C: 2026-03-26T03:19:43Z' + - 'Ref A: F2FCB10410BA40219B1A8FE5B2817C92 Ref B: SYD281080706054 Ref C: 2026-09-10T06:43:53Z' status: code: 200 message: OK @@ -585,21 +533,21 @@ interactions: ParameterSetName: - -n -r --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvarga","name":"anvarga","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dev-anvarga/providers/Microsoft.ManagedIdentity/userAssignedIdentities/anvargaidentity":{"principalId":"bf7b10eb-1784-40fb-bc60-2bc2c780d6a4","clientId":"c8deb855-42ed-432b-99f5-dc9cbc6c8d02"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-04-20T21:35:14.9732943Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T18:24:37.9722734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargadev","name":"anvargadev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-16T00:02:46.5515473Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T00:02:46.5515473Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-artifactcache/providers/Microsoft.ContainerRegistry/registries/anvargasd","name":"anvargasd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-03T18:42:30.1306296Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-07T01:16:30.8836181Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargacuseuap","name":"anvargacuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-17T05:09:28.2847833Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T05:09:28.2847833Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargatargetregistry","name":"anvargatargetregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-14T21:32:22.1211214Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-14T21:32:22.1211214Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargacuseuap2","name":"anvargacuseuap2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-16T23:59:03.139671Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-16T23:59:03.139671Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-artifactcache/providers/Microsoft.ContainerRegistry/registries/anvargaupstreamfirewall","name":"anvargaupstreamfirewall","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T19:52:04.3843475Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T19:54:36.3753519Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/acranvargalogs","name":"acranvargalogs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-11T22:00:56.7502595Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-11T22:00:56.7502595Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abac-artifact-cache/providers/Microsoft.ContainerRegistry/registries/abacupstream","name":"abacupstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-16T22:05:31.24Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-16T22:05:31.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abac-artifact-cache/providers/Microsoft.ContainerRegistry/registries/abacdownstream","name":"abacdownstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-16T22:06:06.547017Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-16T22:06:06.547017Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf002","name":"perf002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:47.0749168Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:47.0749168Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf005","name":"perf005","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:36:04.5870512Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-18T14:51:49.3136858Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf000","name":"perf000","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:35.5817756Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:35.5817756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf003","name":"perf003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:52.6000756Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:52.6000756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf001","name":"perf001","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:40.8123499Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:40.8123499Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf004","name":"perf004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:58.8025388Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:58.8025388Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:17.1836776Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:17.1836776Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-demo/providers/Microsoft.ContainerRegistry/registries/anvargadownstream","name":"anvargadownstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-28T23:23:41.5959636Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-28T23:29:01.5110085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-demo/providers/Microsoft.ContainerRegistry/registries/anvargaupstream","name":"anvargaupstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-28T23:24:03.8642396Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-28T23:24:03.8642396Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' headers: cache-control: - no-cache content-length: - - '10257' + - '2851' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:43 GMT + - Thu, 10 Sep 2026 06:43:55 GMT expires: - '-1' pragma: @@ -613,7 +561,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 66EBBC08F4B043EF88023991AA0DCD24 Ref B: MWH011020808025 Ref C: 2026-03-26T03:19:43Z' + - 'Ref A: 9C4E76238C5C4815B05FB29EEBC7494E Ref B: SYD281080707060 Ref C: 2026-09-10T06:43:55Z' status: code: 200 message: OK @@ -637,25 +585,25 @@ interactions: ParameterSetName: - -n -r --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity2000004":{"principalId":"fb447b60-b81e-454b-a422-e319fd222cfc","clientId":"49a1f76a-d93a-43ba-8201-fb74ee0cd609"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:44.1756681+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:44.1756681+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-03-26T03:19:30.401722+00:00","provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity2000004":{"principalId":"453e6cf9-9059-4b12-b144-39272257ae51","clientId":"8762588b-c712-4b1f-aab2-67a4a3f2b5c1"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:56.6334369+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:56.6334369+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-09-10T06:43:50.6015043+00:00","provisioningState":"Updating"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-e8ff4d38-b190-4d5a-9fc1-c456c84deaf7?api-version=2026-03-01-preview&t=639100919846131686&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mFVPB-DgqcjE074z6VAbDDOr81DCVBshrPwl_3bs7DeX_lLx2J5z29apuvJ9MPx97-nVYo5UAXNV5Q6Q0fHrw3upto4my2ylL1RxTB3kXUdFok9S1F1kBUm-3qbs7ww-LYwzTFONKSk9A9lEcO6CjLoqoTkRS2gDfa2r_Nj3IknJ92y51gRSSm13EFoPvtj9BgpeofWsKKstOdLdQhSgM3_eOhFgfunyA_2JVoRsHr1YeD7glU0AYN62AIetEiUkNJvlRbNCqRKIe49TocIB5Ty-ExeGpjxZsgoxZGWgpe6xypfRXl7Q5yM1sA5umvGGvEVHaQ2T3l5FezTYf4wgdg&h=Q9Gl_hctphdjFKr4YVZK-GN0kBVDCZ5w2qku_4gsjrw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-94790378-ca43-40a8-b839-91dee68da73e?api-version=2026-09-01-preview&t=639246194370397017&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LtJPFYl1eVuZ7ahChFjBFPK1Y3QZHZ3xuQY4m32GTj2UasTQDQloyDx8qqiehDEMV891ZOHKptNgzVvSGdFOv6kBhHXIvxbc-UqfyXxXLBYuVDj4u8MqmzNyIsqt8GRlCso-QnRX9xUqXa8urvjYilY8wYHoflOK4jJfjXN8SGbRZmW4uO9r-iwxCZjxKHBKKcDUQwHZQmgeQY4Dmhm8R2lIA5QGMJxPM6b2DsLLh2SHlFrFUorqd0czxQcrhKcVg2EmpzNTxyNubf5aQR-qvJwo1KOqF70d-uPmwtCErtDEQoRVdlqwwqqFDuLToT4aVP_fmKfyQmWvkCovHgQjKg&h=ZrUcRpgEL3ubpugVVLtiWYT4JWDVfbcZD005MJ4gRxg cache-control: - no-cache content-length: - - '1010' + - '1011' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:43 GMT + - Thu, 10 Sep 2026 06:43:56 GMT expires: - '-1' pragma: @@ -667,13 +615,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/58988b9b-12c3-48fc-8eec-7e386b92f14a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/495108b3-cc24-406f-8e74-9eb3ec8a2519 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 87007CD05A1D46E1BFD79AD1B857E49C Ref B: CO6AA3150220021 Ref C: 2026-03-26T03:19:43Z' + - 'Ref A: 289C10BF15974383865D0C5CC6680D9F Ref B: SYD281080707023 Ref C: 2026-09-10T06:43:56Z' status: code: 201 message: Created @@ -691,17 +639,17 @@ interactions: ParameterSetName: - -n -r --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-e8ff4d38-b190-4d5a-9fc1-c456c84deaf7?api-version=2026-03-01-preview&t=639100919846131686&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mFVPB-DgqcjE074z6VAbDDOr81DCVBshrPwl_3bs7DeX_lLx2J5z29apuvJ9MPx97-nVYo5UAXNV5Q6Q0fHrw3upto4my2ylL1RxTB3kXUdFok9S1F1kBUm-3qbs7ww-LYwzTFONKSk9A9lEcO6CjLoqoTkRS2gDfa2r_Nj3IknJ92y51gRSSm13EFoPvtj9BgpeofWsKKstOdLdQhSgM3_eOhFgfunyA_2JVoRsHr1YeD7glU0AYN62AIetEiUkNJvlRbNCqRKIe49TocIB5Ty-ExeGpjxZsgoxZGWgpe6xypfRXl7Q5yM1sA5umvGGvEVHaQ2T3l5FezTYf4wgdg&h=Q9Gl_hctphdjFKr4YVZK-GN0kBVDCZ5w2qku_4gsjrw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-94790378-ca43-40a8-b839-91dee68da73e?api-version=2026-09-01-preview&t=639246194370397017&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LtJPFYl1eVuZ7ahChFjBFPK1Y3QZHZ3xuQY4m32GTj2UasTQDQloyDx8qqiehDEMV891ZOHKptNgzVvSGdFOv6kBhHXIvxbc-UqfyXxXLBYuVDj4u8MqmzNyIsqt8GRlCso-QnRX9xUqXa8urvjYilY8wYHoflOK4jJfjXN8SGbRZmW4uO9r-iwxCZjxKHBKKcDUQwHZQmgeQY4Dmhm8R2lIA5QGMJxPM6b2DsLLh2SHlFrFUorqd0czxQcrhKcVg2EmpzNTxyNubf5aQR-qvJwo1KOqF70d-uPmwtCErtDEQoRVdlqwwqqFDuLToT4aVP_fmKfyQmWvkCovHgQjKg&h=ZrUcRpgEL3ubpugVVLtiWYT4JWDVfbcZD005MJ4gRxg response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-e8ff4d38-b190-4d5a-9fc1-c456c84deaf7?api-version=2026-03-01-preview&t=639100919850093663&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=PGHEULZeIllZTUeV_QGSwmmnpeXn_B6Bs-xZeGvcoD8WBZoes73pLHG9fD3xuzhpJ9pmWFabz-7mJmq4LBmemwEgcrwsKjf44kwHsHxda0jbZ9jiiIvbVcB6wseGdXPFWkr66Ml1ITU_86FpWkDaE4zlvYt5xNnwifjSBoSWFtBlu-gQOl88ozAbkZ9P2_3ZOW8XJRpNqzMSeHQ6s89MKSCCci8XVjnv_4mCFCwNJWU-5vaMWHE02Y56JUSW8bA7jKdeIuMH4fpcDOxJ6uKS_BuJhAjX_NF3J4sHgSmxaZGY43eWA3jugdy0bIzJTm6XvlUOgWLG4zQCtWYt2qgE0g&h=D0NwceIOb1Adv-FXVkQrYNU04XWVe06jbHxiA8y6nJ0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi/operationStatuses/cacherules-94790378-ca43-40a8-b839-91dee68da73e?api-version=2026-09-01-preview&t=639246194380527862&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gWL8XuHjJRe_OQbpueoBLIcYn4cRcc2r3UvJNmCB5TabUKM0WY82l120LQPRUCwAQA9gmuA_-BTj-X5kM4qAtCeYSbbOpQpL6RNpHW-yprsr-gKQv4K2qZCDAKMGt8BGKl6V_HkofroODDxy7DODiy-Tp0AVN9gdKixUp_NO8vs0vXgjK1qfRAmsAvjFrm6H60eP8U4l83fqbu4-rX-Rnruj2MVv2nkuVj5b1ClLTegv5JBaqA2UMeqSWvt5fro9PSmw4mBhpjDe-1CsTku8bqhBtFZyqK_01xHI0AnJWQYn6ZC0eBi0JY04yZOZJ2IaY8mhNzxp2d9P_pDx2HYzWw&h=Xu6mQOIGs8V1w6D7SCDh6p_jBp9qz_CmI6kkkYyoKi8 cache-control: - no-cache content-length: @@ -709,7 +657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:44 GMT + - Thu, 10 Sep 2026 06:43:57 GMT expires: - '-1' pragma: @@ -721,11 +669,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/67803fba-c1bf-4b06-9c50-f2af9d6a9b43 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f75c8c24-88c8-4dd9-afe2-c8e0b4f8a80e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0A77B7DD46DE4313B48324B327A1708F Ref B: CO6AA3150218017 Ref C: 2026-03-26T03:19:44Z' + - 'Ref A: 8EC5DE13442A4C4884DB534BD23F3A7C Ref B: SYD281080706040 Ref C: 2026-09-10T06:43:57Z' status: code: 200 message: OK @@ -743,23 +691,23 @@ interactions: ParameterSetName: - -n -r --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity2000004":{"principalId":"fb447b60-b81e-454b-a422-e319fd222cfc","clientId":"49a1f76a-d93a-43ba-8201-fb74ee0cd609"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:44.1756681+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:44.1756681+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-03-26T03:19:30.401722+00:00","provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/cacheRules","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cache-identity2000004":{"principalId":"453e6cf9-9059-4b12-b144-39272257ae51","clientId":"8762588b-c712-4b1f-aab2-67a4a3f2b5c1"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi","name":"test-mi","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:56.6334369+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:56.6334369+00:00"},"properties":{"sourceRepository":"upstreamregistry.azurecr.io/hello-world","targetRepository":"hello-world-mi","creationDate":"2026-09-10T06:43:50.6015043+00:00","provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1011' + - '1012' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:44 GMT + - Thu, 10 Sep 2026 06:43:58 GMT expires: - '-1' pragma: @@ -771,11 +719,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/4eebf850-caec-4774-bb7c-3fdede7efcca + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/63ecf30e-30a5-451a-ab53-4b58d50d9459 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5E3D1D665E09402BA4B4387C5B30ABAD Ref B: MWH011020808034 Ref C: 2026-03-26T03:19:45Z' + - 'Ref A: A10C38633D5E4A1F98EDB52E9762BF1E Ref B: SYD281080706034 Ref C: 2026-09-10T06:43:58Z' status: code: 200 message: OK @@ -793,21 +741,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvarga","name":"anvarga","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/dev-anvarga/providers/Microsoft.ManagedIdentity/userAssignedIdentities/anvargaidentity":{"principalId":"bf7b10eb-1784-40fb-bc60-2bc2c780d6a4","clientId":"c8deb855-42ed-432b-99f5-dc9cbc6c8d02"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-04-20T21:35:14.9732943Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T18:24:37.9722734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargadev","name":"anvargadev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-16T00:02:46.5515473Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T00:02:46.5515473Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-artifactcache/providers/Microsoft.ContainerRegistry/registries/anvargasd","name":"anvargasd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-03T18:42:30.1306296Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-07T01:16:30.8836181Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargacuseuap","name":"anvargacuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-17T05:09:28.2847833Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T05:09:28.2847833Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargatargetregistry","name":"anvargatargetregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-14T21:32:22.1211214Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-14T21:32:22.1211214Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/anvargacuseuap2","name":"anvargacuseuap2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-16T23:59:03.139671Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-16T23:59:03.139671Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-artifactcache/providers/Microsoft.ContainerRegistry/registries/anvargaupstreamfirewall","name":"anvargaupstreamfirewall","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T19:52:04.3843475Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T19:54:36.3753519Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-anvarga/providers/Microsoft.ContainerRegistry/registries/acranvargalogs","name":"acranvargalogs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-11T22:00:56.7502595Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-11T22:00:56.7502595Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abac-artifact-cache/providers/Microsoft.ContainerRegistry/registries/abacupstream","name":"abacupstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-16T22:05:31.24Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-16T22:05:31.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abac-artifact-cache/providers/Microsoft.ContainerRegistry/registries/abacdownstream","name":"abacdownstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-16T22:06:06.547017Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-16T22:06:06.547017Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf002","name":"perf002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:47.0749168Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:47.0749168Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf005","name":"perf005","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:36:04.5870512Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-18T14:51:49.3136858Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf000","name":"perf000","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:35.5817756Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:35.5817756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf003","name":"perf003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:52.6000756Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:52.6000756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf001","name":"perf001","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:40.8123499Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:40.8123499Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/performance/providers/Microsoft.ContainerRegistry/registries/perf004","name":"perf004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-15T23:35:58.8025388Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-03-15T23:35:58.8025388Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:17.1836776Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:17.1836776Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-demo/providers/Microsoft.ContainerRegistry/registries/anvargadownstream","name":"anvargadownstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-28T23:23:41.5959636Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-28T23:29:01.5110085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anvarga-demo/providers/Microsoft.ContainerRegistry/registries/anvargaupstream","name":"anvargaupstream","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-28T23:24:03.8642396Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-28T23:24:03.8642396Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' headers: cache-control: - no-cache content-length: - - '10257' + - '2851' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:45 GMT + - Thu, 10 Sep 2026 06:43:59 GMT expires: - '-1' pragma: @@ -821,7 +769,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 621AE73214FB4A90BAB6BBA4A00AE060 Ref B: CO6AA3150220035 Ref C: 2026-03-26T03:19:45Z' + - 'Ref A: 424CDBDE1ECA4A20A751946533812977 Ref B: SYD281080711031 Ref C: 2026-09-10T06:43:59Z' status: code: 200 message: OK @@ -841,25 +789,25 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/cacheRules/test-mi?api-version=2026-09-01-preview response: body: string: '' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 26 Mar 2026 03:19:46 GMT + - Thu, 10 Sep 2026 06:44:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-b2a9c218-8a1a-49b2-aaa1-344f86d22ce9?api-version=2026-03-01-preview&t=639100919863829298&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=HPU__YV0pxEng_hVeYwgVFsYavz6PD7rlaRLW6eqwUfcOXAV8aWNU51sowNNDvrdtafYuI3vJ7VJ91tC2HVclCDQ_sM8vFX5xQyd5WV8YCPG9Zb0C9bcukMwlC6xnIxV2ixLikpAybkmuswB7mkfFb8pMJOb2S9OAvlNQOb9N8pYY0STcBuW6mH3p8t-EaKGH2jZZUVWxecwi2A9rbFwgyStiSBca7Qfmi-Hbxb6Kk1z1W4ZXcvO4sLNnGQ5G6TidkRg6KCVaM2VkeZR5tdHcDTOMBKCAXnLtCCMJZ7EZ8NJVJBM65evWpG7vqSlg4OSNiXg9McP2BmFTAP1dGEGcQ&h=XmDCL6jwYClFrOuyzrCyEvuvGvCxDEWsxdNBbP3VOFc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-3aede6b5-e8df-43b9-aa95-35662e3358be?api-version=2026-09-01-preview&t=639246194408870247&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TCBn6kcEkAWJooGchUsRgAEOl5Smq9pv0xc80xtnr18QHxr7UqkKFftGfCsrM-EwWTPATaiK1XhDE7lIU2r6N9uRI05mLDilBT0tcP-bWAtl1xT7D-XvNrAi8foDFDfXpcy9h_NRFDFULRWJOlG0MCHAgAOK6rdow5jUp_O5XpSixTNOlk-vGWBXIuHx3C4I--9MyYgWL2XFL7GP1EWqAaHboBnpbsRjtKJfARsO51yoRxU7QPz5FWNAAuZy1oIXHCyl7wnWoR6oR2QjYvASjEIysh9FcSDkzSE8O2nsS2V4pewE2JcIn61UufExShDQ_kKB1ByR6w4XLXlOTeN1tQ&h=1o1Qsq7CoZebdwVKowwZOghEjHLaqFh2u3YaEFiPE08 pragma: - no-cache strict-transport-security: @@ -869,13 +817,61 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/b953e653-d9e4-43cc-8d86-95ccc8ea6d1c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8d46c055-7a77-4606-9fbf-c64b940ab72a x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 706AE183BEDD4AA38C583317D0792F90 Ref B: MWH011020808031 Ref C: 2026-03-26T03:19:46Z' + - 'Ref A: 9179C77405A4443BB9C7E04E19BDA9FB Ref B: SYD281080707062 Ref C: 2026-09-10T06:44:00Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr cache delete + Connection: + - keep-alive + ParameterSetName: + - -n -r -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-3aede6b5-e8df-43b9-aa95-35662e3358be?api-version=2026-09-01-preview&t=639246194408870247&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TCBn6kcEkAWJooGchUsRgAEOl5Smq9pv0xc80xtnr18QHxr7UqkKFftGfCsrM-EwWTPATaiK1XhDE7lIU2r6N9uRI05mLDilBT0tcP-bWAtl1xT7D-XvNrAi8foDFDfXpcy9h_NRFDFULRWJOlG0MCHAgAOK6rdow5jUp_O5XpSixTNOlk-vGWBXIuHx3C4I--9MyYgWL2XFL7GP1EWqAaHboBnpbsRjtKJfARsO51yoRxU7QPz5FWNAAuZy1oIXHCyl7wnWoR6oR2QjYvASjEIysh9FcSDkzSE8O2nsS2V4pewE2JcIn61UufExShDQ_kKB1ByR6w4XLXlOTeN1tQ&h=1o1Qsq7CoZebdwVKowwZOghEjHLaqFh2u3YaEFiPE08 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Sep 2026 06:44:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-3aede6b5-e8df-43b9-aa95-35662e3358be?api-version=2026-09-01-preview&t=639246194422168236&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=oE4ZgcFd3TTGB_flIoY5RBkhB3Ji59C9FyeLb09e-m402PbAhw6kYGbS7C2xgkY12qZIarh9fDQWWYTKRmat1vKhCotDpCpRrGMMOwr-XJU5IXjokK6DeAqXGhd0yzsddr82d0edE3HTlFM15I8v4ztwEXjzK12J6-uXG2PjeYUDhi21CQzW1QlTEdENobadnEiqXLjjBidtTjijBCufi5oW-nHzBoPc3d0tqcZy0rhZ4mwQQmauJzk-4zI4sJSfgUeBTtjorpWO-vs_8EZaEym8fA8JVV0pXg0OyYoMmrHfaL1cwsiPia1824nz51vVKhBeabrCgSEHBYFTIVZWPQ&h=AJg7v1za9miTgQ6iYu1rlb2gjn0M8jHtFUO5Jae4q54 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/39f237b7-ec99-4b80-8cea-4d461717d336 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D65273D6744C4465B3191AF3AE735E10 Ref B: SYD281080711062 Ref C: 2026-09-10T06:44:01Z' status: code: 202 message: Accepted @@ -893,9 +889,9 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-b2a9c218-8a1a-49b2-aaa1-344f86d22ce9?api-version=2026-03-01-preview&t=639100919863829298&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=HPU__YV0pxEng_hVeYwgVFsYavz6PD7rlaRLW6eqwUfcOXAV8aWNU51sowNNDvrdtafYuI3vJ7VJ91tC2HVclCDQ_sM8vFX5xQyd5WV8YCPG9Zb0C9bcukMwlC6xnIxV2ixLikpAybkmuswB7mkfFb8pMJOb2S9OAvlNQOb9N8pYY0STcBuW6mH3p8t-EaKGH2jZZUVWxecwi2A9rbFwgyStiSBca7Qfmi-Hbxb6Kk1z1W4ZXcvO4sLNnGQ5G6TidkRg6KCVaM2VkeZR5tdHcDTOMBKCAXnLtCCMJZ7EZ8NJVJBM65evWpG7vqSlg4OSNiXg9McP2BmFTAP1dGEGcQ&h=XmDCL6jwYClFrOuyzrCyEvuvGvCxDEWsxdNBbP3VOFc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/cacherules-3aede6b5-e8df-43b9-aa95-35662e3358be?api-version=2026-09-01-preview&t=639246194422168236&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=oE4ZgcFd3TTGB_flIoY5RBkhB3Ji59C9FyeLb09e-m402PbAhw6kYGbS7C2xgkY12qZIarh9fDQWWYTKRmat1vKhCotDpCpRrGMMOwr-XJU5IXjokK6DeAqXGhd0yzsddr82d0edE3HTlFM15I8v4ztwEXjzK12J6-uXG2PjeYUDhi21CQzW1QlTEdENobadnEiqXLjjBidtTjijBCufi5oW-nHzBoPc3d0tqcZy0rhZ4mwQQmauJzk-4zI4sJSfgUeBTtjorpWO-vs_8EZaEym8fA8JVV0pXg0OyYoMmrHfaL1cwsiPia1824nz51vVKhBeabrCgSEHBYFTIVZWPQ&h=AJg7v1za9miTgQ6iYu1rlb2gjn0M8jHtFUO5Jae4q54 response: body: string: '' @@ -905,7 +901,7 @@ interactions: content-length: - '0' date: - - Thu, 26 Mar 2026 03:19:46 GMT + - Thu, 10 Sep 2026 06:44:13 GMT expires: - '-1' pragma: @@ -917,11 +913,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/c3383b8c-3918-4c27-8cea-5775c46f10bb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b1a629fe-0041-4342-8c94-c08b5732be4a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8F6F80EBA51C474882E048568F917F1B Ref B: CO6AA3150220009 Ref C: 2026-03-26T03:19:46Z' + - 'Ref A: B9E01073454743C687F526185BF3340F Ref B: SYD281080710042 Ref C: 2026-09-10T06:44:12Z' status: code: 200 message: OK @@ -941,27 +937,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T03:19:17.1836776+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T03:19:17.1836776+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T03:19:17.1836776Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T03:19:24.5850991+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T03:19:24.5851328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:33.4565203Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:39.8984636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:39.8985006+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1610' + - '1642' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 03:19:46 GMT + - Thu, 10 Sep 2026 06:44:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-a4387d24-28c2-11f1-8292-002248bf0ab3?api-version=2026-03-01-preview&t=639100919874806314&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KX1qppuBDjmIYdYzb7ks4H3vJjU3Q2w6UUNo_Ftme4xSuGj_Ls3aj9Vn7LumRyRafNAWSJ5y6mMKsn955mioPR9OcIGyrSHwlshjl2uqw65VTNPr8ScqrNGObk9u2VX7dWXiGyFI64-cJkk6wWbRFWXREn1Nfx7JK1JdIXKl9Hfwa3gQdjW5qkH-t6Vs4xzz5rdI7f9wck0WhK974wcfahyrBO6ZDzTRd6FYN8_QxSJV2sbuNYsTi8huFTgRX4vH054kiPn_jJ8v-9ZjTypSs6qIJrvSME-q3SXmEn3RrFqndDBB8LD3Gj_yWJVze2UCmtwoPHnOoWRDb_f_IGqfqA&h=eUZfppUhPKE-6j-gj1Ps7pnNxwGBI44QiueP4aDUzfc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-09ed5be1-ace3-11f1-95c3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194556895339&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=rzRJ7W0abxoe8Gl2ONON4tXfgJg34V7AXTZTqcsgIx6eAdwnSzu6B4VV-sOoCCqq8abnU2atpSaDhQqIq5YnSSCM0MF27uMDTVF8ZYKOlhBXwfTqEPkjDvJLv1jze-NbHbre9DRU7A1qVs-bdSrMPEUJAisC7PImqaEnR3X1ckaqbqe7rupRSG7aaAXPSS2-nk_WcCDJ6PNiIvSc7X-aPHZ6lpArMuPPuxwdnD8IeqnPi4FBIHgLoN-72Sx4XSGHCfabESRrCaZ5upffDXNKrseTHb48rfip8vn52J13FdB7nSVJV2ERlDnFbtR-l7-7uE5s19IL25DPE4_wjlmJJg&h=JGGELZHjqn1b5ZzhGMnJw5AqRgQjSjoTCs3FZFVWN20 pragma: - no-cache strict-transport-security: @@ -971,13 +967,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/cd735537-1b07-4c0c-b42f-8a0cc7d19236 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/5aea857a-f07c-47de-a369-408d0612b733 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 2F049FB013C247568755C2F2547B60AE Ref B: CO6AA3150220053 Ref C: 2026-03-26T03:19:47Z' + - 'Ref A: AF5E215B70E54FB8AED56B35ECBBC8A5 Ref B: SYD281080712025 Ref C: 2026-09-10T06:44:14Z' status: code: 202 message: Accepted @@ -995,9 +991,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-a4387d24-28c2-11f1-8292-002248bf0ab3?api-version=2026-03-01-preview&t=639100919874806314&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KX1qppuBDjmIYdYzb7ks4H3vJjU3Q2w6UUNo_Ftme4xSuGj_Ls3aj9Vn7LumRyRafNAWSJ5y6mMKsn955mioPR9OcIGyrSHwlshjl2uqw65VTNPr8ScqrNGObk9u2VX7dWXiGyFI64-cJkk6wWbRFWXREn1Nfx7JK1JdIXKl9Hfwa3gQdjW5qkH-t6Vs4xzz5rdI7f9wck0WhK974wcfahyrBO6ZDzTRd6FYN8_QxSJV2sbuNYsTi8huFTgRX4vH054kiPn_jJ8v-9ZjTypSs6qIJrvSME-q3SXmEn3RrFqndDBB8LD3Gj_yWJVze2UCmtwoPHnOoWRDb_f_IGqfqA&h=eUZfppUhPKE-6j-gj1Ps7pnNxwGBI44QiueP4aDUzfc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-09ed5be1-ace3-11f1-95c3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194556895339&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=rzRJ7W0abxoe8Gl2ONON4tXfgJg34V7AXTZTqcsgIx6eAdwnSzu6B4VV-sOoCCqq8abnU2atpSaDhQqIq5YnSSCM0MF27uMDTVF8ZYKOlhBXwfTqEPkjDvJLv1jze-NbHbre9DRU7A1qVs-bdSrMPEUJAisC7PImqaEnR3X1ckaqbqe7rupRSG7aaAXPSS2-nk_WcCDJ6PNiIvSc7X-aPHZ6lpArMuPPuxwdnD8IeqnPi4FBIHgLoN-72Sx4XSGHCfabESRrCaZ5upffDXNKrseTHb48rfip8vn52J13FdB7nSVJV2ERlDnFbtR-l7-7uE5s19IL25DPE4_wjlmJJg&h=JGGELZHjqn1b5ZzhGMnJw5AqRgQjSjoTCs3FZFVWN20 response: body: string: '' @@ -1007,11 +1003,11 @@ interactions: content-length: - '0' date: - - Thu, 26 Mar 2026 03:19:47 GMT + - Thu, 10 Sep 2026 06:44:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-a4387d24-28c2-11f1-8292-002248bf0ab3?api-version=2026-03-01-preview&t=639100919879031596&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=RX8K11IhiaDUT6i7QA2My2BS01o-zAK3Dzf1YuJRvDDJ0jGfr5QTa7fXyfYqkAbjkpap4DkUz1Z_fPGoZV_ykQReXmP8Mf9vrinqUnVDq8rXNdsNPqrIKYi7euqL6GDMScIftDwC-NUogKPq3hithyk_gVjN_d70flRHT0hRC_pqniEb_hO58iJKkhNH0dtZ8jGLsu2_IEFthMTxifDho0l6sQGxrAWAC_pHepTMHp0BU32h5de4lTN7NobhCjEPFxWHwwBzG8Tzx6tO2Mg91yIWpAMkZs03RHHcwlpAuGDrx_G9miB8r5dK4cAlY5S2a82i9l6JmgZPr97HSXxFEA&h=h2TahsUFYOvxk8Gm5HjKM40EwCvHMeJ8Ugati76JydI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-09ed5be1-ace3-11f1-95c3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194567736317&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=cO4QztWqYqM3mk_SA8XxjgNLSD-VrGW9toXZmzHRxRdSv6R04_dLDKam0cMDa8D9x6CO4wd1zx2MC3UwKT1DhlQ2vz5gAkob1YSasDU8Yew0L_fgtijWp-AnBTqgRUGYPg9Glz4x79RCabRabZgky_TFOgXTe6kb-sR9iNMOxBwgwzG8vTp13StVh_t_DMFDH5Qc4hNgVDMxgZ3wvnGNV4N50XUcOf-3VOzT4A291_7LNpXLi3OHv5cp8C38FM8r5MJKtBP6UNSXnetBJRzIr3walV5WWyd5-rsbXVmzzOBWG2iLyhjxtuUIvmBfAs1mLnsxeKvnPphqTQi-tuaSMg&h=deRRBeML4VON0Hxho0xXHhoXUTsZBde3ceDZdHA7Fzs pragma: - no-cache strict-transport-security: @@ -1021,11 +1017,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus/5cd443bc-8a22-4c71-ab45-7f120bf3ee11 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e8253894-bf57-4e21-8a03-fee4d27cb380 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DF38CD8A27D443C08CD1DA4A16430F57 Ref B: CO6AA3150218039 Ref C: 2026-03-26T03:19:47Z' + - 'Ref A: DA7D580DB167416AAC45313E23393D9D Ref B: SYD281080712036 Ref C: 2026-09-10T06:44:16Z' status: code: 202 message: Accepted @@ -1043,9 +1039,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.11.9 (Windows-10-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-a4387d24-28c2-11f1-8292-002248bf0ab3?api-version=2026-03-01-preview&t=639100919879031596&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=RX8K11IhiaDUT6i7QA2My2BS01o-zAK3Dzf1YuJRvDDJ0jGfr5QTa7fXyfYqkAbjkpap4DkUz1Z_fPGoZV_ykQReXmP8Mf9vrinqUnVDq8rXNdsNPqrIKYi7euqL6GDMScIftDwC-NUogKPq3hithyk_gVjN_d70flRHT0hRC_pqniEb_hO58iJKkhNH0dtZ8jGLsu2_IEFthMTxifDho0l6sQGxrAWAC_pHepTMHp0BU32h5de4lTN7NobhCjEPFxWHwwBzG8Tzx6tO2Mg91yIWpAMkZs03RHHcwlpAuGDrx_G9miB8r5dK4cAlY5S2a82i9l6JmgZPr97HSXxFEA&h=h2TahsUFYOvxk8Gm5HjKM40EwCvHMeJ8Ugati76JydI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-09ed5be1-ace3-11f1-95c3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194567736317&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=cO4QztWqYqM3mk_SA8XxjgNLSD-VrGW9toXZmzHRxRdSv6R04_dLDKam0cMDa8D9x6CO4wd1zx2MC3UwKT1DhlQ2vz5gAkob1YSasDU8Yew0L_fgtijWp-AnBTqgRUGYPg9Glz4x79RCabRabZgky_TFOgXTe6kb-sR9iNMOxBwgwzG8vTp13StVh_t_DMFDH5Qc4hNgVDMxgZ3wvnGNV4N50XUcOf-3VOzT4A291_7LNpXLi3OHv5cp8C38FM8r5MJKtBP6UNSXnetBJRzIr3walV5WWyd5-rsbXVmzzOBWG2iLyhjxtuUIvmBfAs1mLnsxeKvnPphqTQi-tuaSMg&h=deRRBeML4VON0Hxho0xXHhoXUTsZBde3ceDZdHA7Fzs response: body: string: '' @@ -1055,7 +1051,7 @@ interactions: content-length: - '0' date: - - Thu, 26 Mar 2026 03:19:58 GMT + - Thu, 10 Sep 2026 06:44:26 GMT expires: - '-1' pragma: @@ -1067,11 +1063,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=1de06a28-1a3a-4047-8877-0fb23647661b/westus2/676ada8e-2567-434e-bcae-67cef09b01c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/fa3f3ff4-3e39-4da1-8724-9066aa442da6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DBCB007CC8EE4574822CF03DFCAB1A23 Ref B: CO6AA3150218029 Ref C: 2026-03-26T03:19:58Z' + - 'Ref A: ED8D454A0A74423D899BE98D2A0F8839 Ref B: SYD281080709052 Ref C: 2026-09-10T06:44:27Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml index 0a3b36c29c1..3d2323b7c43 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1687' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:30 GMT + - Thu, 10 Sep 2026 06:49:16 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/australiaeast/cbff1371-9da4-44b4-8e56-e63d6e0145cb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/c59b3f87-31a1-42f8-bfdc-9034cb294f72 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: 6C9F9FF6CF23415A8ADA6EB321FD4FC4 Ref B: SYD03EDGE1117 Ref C: 2026-04-21T05:31:20Z' + - 'Ref A: 02E6B73F19E249FE8A60286A5C79C2D2 Ref B: SYD281080707029 Ref C: 2026-09-10T06:49:07Z' status: code: 200 message: OK @@ -70,21 +70,21 @@ interactions: ParameterSetName: - -n --data-endpoint-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentitykuxrye6ngdnvb5jgxs":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:31 GMT + - Thu, 10 Sep 2026 06:49:17 GMT expires: - '-1' pragma: @@ -96,9 +96,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 29AEBDE350934AAD8B0391642BF99E69 Ref B: SYD03EDGE1116 Ref C: 2026-04-21T05:31:31Z' + - 'Ref A: BEBBA8F4B41246F0B61157881EB0F3E6 Ref B: SYD281080708025 Ref C: 2026-09-10T06:49:17Z' status: code: 200 message: OK @@ -116,23 +116,23 @@ interactions: ParameterSetName: - -n --data-endpoint-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1687' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:33 GMT + - Thu, 10 Sep 2026 06:49:19 GMT expires: - '-1' pragma: @@ -144,9 +144,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4E9DA8C8D65E4548A19E7607F5944F34 Ref B: SYD03EDGE1320 Ref C: 2026-04-21T05:31:32Z' + - 'Ref A: 7A603160AA09494B8EABE877E2937C83 Ref B: SYD281080712062 Ref C: 2026-09-10T06:49:18Z' status: code: 200 message: OK @@ -168,23 +168,23 @@ interactions: ParameterSetName: - -n --data-endpoint-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:34 GMT + - Thu, 10 Sep 2026 06:49:21 GMT expires: - '-1' pragma: @@ -196,13 +196,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5229f71e-dda2-4d3d-95cd-a2890453d666 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/faba20e6-3fd8-4140-ac4c-c26723a2b64f x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: DD64DFF38ADC4A47B25844E3FD6961DB Ref B: SYD03EDGE1118 Ref C: 2026-04-21T05:31:33Z' + - 'Ref A: D32172FC563F4ED69847A2BEA99CEA97 Ref B: SYD281080705042 Ref C: 2026-09-10T06:49:21Z' status: code: 200 message: OK @@ -220,21 +220,21 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentitykuxrye6ngdnvb5jgxs":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:35 GMT + - Thu, 10 Sep 2026 06:49:23 GMT expires: - '-1' pragma: @@ -246,9 +246,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 12AF00CBE60048C99F388146CEA99418 Ref B: SYD03EDGE2009 Ref C: 2026-04-21T05:31:35Z' + - 'Ref A: E7EE7552AAF34EE3833072E6C439510B Ref B: SYD281080710054 Ref C: 2026-09-10T06:49:22Z' status: code: 200 message: OK @@ -266,23 +266,23 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:36 GMT + - Thu, 10 Sep 2026 06:49:24 GMT expires: - '-1' pragma: @@ -294,9 +294,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 341E6FBBA9074A49A3E696A971BBC61D Ref B: SYD03EDGE2017 Ref C: 2026-04-21T05:31:36Z' + - 'Ref A: 7691E28BBFAB4114B3654D4F4882B490 Ref B: SYD281080710052 Ref C: 2026-09-10T06:49:24Z' status: code: 200 message: OK @@ -314,9 +314,9 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource connectedregistry @@ -327,7 +327,8 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -335,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:36 GMT + - Thu, 10 Sep 2026 06:49:25 GMT expires: - '-1' pragma: @@ -347,24 +348,24 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/6ef3dfb3-cb86-4361-8597-6002a8028765 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6c92f478-6504-4e65-a2ea-c10f05b397cf x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C44FC2FAAD004B3CBA87E2B740504727 Ref B: SYD03EDGE1009 Ref C: 2026-04-21T05:31:36Z' + - 'Ref A: F6429EAA414243DEA3EC62C0E878AD37 Ref B: SYD281080705062 Ref C: 2026-09-10T06:49:25Z' status: code: 404 message: Not Found - request: - body: '{"properties": {"actions": ["repositories/repo1/content/read", "repositories/repo1/content/write", + body: '{"properties": {"description": "Created by connected registry sync token: + connectedregistry", "actions": ["repositories/repo1/content/read", "repositories/repo1/content/write", "repositories/repo1/content/delete", "repositories/repo1/metadata/read", "repositories/repo1/metadata/write", "repositories/repo2/content/read", "repositories/repo2/content/write", "repositories/repo2/content/delete", "repositories/repo2/metadata/read", "repositories/repo2/metadata/write", "repositories/repo3/content/read", "repositories/repo3/content/write", "repositories/repo3/content/delete", "repositories/repo3/metadata/read", "repositories/repo3/metadata/write", "gateway/connectedregistry/config/read", "gateway/connectedregistry/config/write", "gateway/connectedregistry/message/read", - "gateway/connectedregistry/message/write"], "description": "Created by connected - registry sync token: connectedregistry"}}' + "gateway/connectedregistry/message/write"]}}' headers: Accept: - application/json @@ -381,28 +382,29 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:38.3089628+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:38.3089628+00:00"},"properties":{"description":"Created - by connected registry sync token: connectedregistry","type":"UserDefined","creationDate":"2026-04-21T05:31:38.3840292+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/content/write","repositories/repo1/content/delete","repositories/repo1/metadata/read","repositories/repo1/metadata/write","repositories/repo2/content/read","repositories/repo2/content/write","repositories/repo2/content/delete","repositories/repo2/metadata/read","repositories/repo2/metadata/write","repositories/repo3/content/read","repositories/repo3/content/write","repositories/repo3/content/delete","repositories/repo3/metadata/read","repositories/repo3/metadata/write","gateway/connectedregistry/config/read","gateway/connectedregistry/config/write","gateway/connectedregistry/message/read","gateway/connectedregistry/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:26.6069903+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:26.6069903+00:00"},"properties":{"description":"Created + by connected registry sync token: connectedregistry","type":"UserDefined","creationDate":"2026-09-10T06:49:26.8356589+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/content/write","repositories/repo1/content/delete","repositories/repo1/metadata/read","repositories/repo1/metadata/write","repositories/repo2/content/read","repositories/repo2/content/write","repositories/repo2/content/delete","repositories/repo2/metadata/read","repositories/repo2/metadata/write","repositories/repo3/content/read","repositories/repo3/content/write","repositories/repo3/content/delete","repositories/repo3/metadata/read","repositories/repo3/metadata/write","gateway/connectedregistry/config/read","gateway/connectedregistry/config/write","gateway/connectedregistry/message/read","gateway/connectedregistry/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1422' + - '1400' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:37 GMT + - Thu, 10 Sep 2026 06:49:26 GMT expires: - '-1' pragma: @@ -414,18 +416,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/92bb1867-c5c1-437e-9f43-cf1971bed59a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c351ac2b-fcfa-43aa-9712-8ef10302d278 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 926ADB4E9F2E47F3B6D07329672E6493 Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:31:37Z' + - 'Ref A: 437430C067A348AD9ACB353AC87FAE1E Ref B: SYD281080707036 Ref C: 2026-09-10T06:49:26Z' status: code: 200 message: OK - request: - body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry"}}' + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry", + "status": "enabled"}}' headers: Accept: - application/json @@ -442,29 +445,30 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:39.1550674+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:39.1550674+00:00"},"properties":{"creationDate":"2026-04-21T05:31:39.4487439+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:27.714156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:27.714156+00:00"},"properties":{"creationDate":"2026-09-10T06:49:27.9994448+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-5e5d3ccf-3d43-11f1-a43b-00155d7ffebd?api-version=2026-03-01-preview&t=639123462996551030&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=De7qzIvm-kG2l69Zhm5PrVuvONvz4DiVU8djQrXSLGKVggrQIQQZ3avJlAY7zb0lq-DggsBZosoUIuxI7ZidZ8zvK0DuhWVUQJJBtj-ZFSn6F6rwt2Yqw-9jMsWCFa8pQwMl8usdVm_7AB2Ofy5JmATa6zPm86oSrscBLbwlDPjLQ_ZZI1_qQtD8mHBq3UmVNeVL7Nh_OXELxv_0eRmaaGsATR66AKo4r6YZDtXbg3D34amZpacbTx7dTwNpT2JVH8FA2yvo_uhaLbG3IFD-xOmqJM6VoJZB-sp0URGJMlMbBwIfObqfqVdZMybctKgpVID9mGKKEg5-STjmpKtFpg&h=3PgQxLKQL_uVr59PLJfaxmLjn5SXN9h0zaYoSdG8RBE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-c1ebc355-ace3-11f1-b6dc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197681047748&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=w-990u1mMbo1rYR22HO6qkd-39Nky_jXcusM71Upp3JyQNvYT8aUj98iL-8BMcUyX-l7MsLcMqRD6-Ue5Mrk2mYTMu6IV_x0gxv7HsalWnI-XGjrmHoYMZwM3we_P7eyBxRu7xMMHBxmXsRr9aBknKSNUuk2Gi8YEtjgt-xTY0FJ4xIz8AutbfaKf2cS3QGSAPH2Sr4Dc4pYlUjJbl7UTkmfOF0Nh7PB3S0fw8vKDdf4AX-WOKcI4WL1r_TmiyWASChC_tFnmZv4Ovk6T_WntuYnq9aeMUfg31QlSETY6CEVvcCNaMFsy9uYh2T8jv7rXNB__GNWjxHMrF-S7pRtwQ&h=d2qkiIQlr0WBitpNsZtN_p7XxmOp2g8km2Nwss7NJ_g cache-control: - no-cache content-length: - - '853' + - '829' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:38 GMT + - Thu, 10 Sep 2026 06:49:27 GMT expires: - '-1' pragma: @@ -476,13 +480,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/f4d110cf-d87a-42a5-bb81-3fd45814f280 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1e80fe82-a3e0-42c2-b942-fd406abed536 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: C3614F032747494581000E8B6CFB876B Ref B: SYD03EDGE1108 Ref C: 2026-04-21T05:31:38Z' + - 'Ref A: 78D101D84CF04D3E9EE04AFD00751346 Ref B: SYD281080709052 Ref C: 2026-09-10T06:49:27Z' status: code: 201 message: Created @@ -500,9 +504,9 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-5e5d3ccf-3d43-11f1-a43b-00155d7ffebd?api-version=2026-03-01-preview&t=639123462996551030&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=De7qzIvm-kG2l69Zhm5PrVuvONvz4DiVU8djQrXSLGKVggrQIQQZ3avJlAY7zb0lq-DggsBZosoUIuxI7ZidZ8zvK0DuhWVUQJJBtj-ZFSn6F6rwt2Yqw-9jMsWCFa8pQwMl8usdVm_7AB2Ofy5JmATa6zPm86oSrscBLbwlDPjLQ_ZZI1_qQtD8mHBq3UmVNeVL7Nh_OXELxv_0eRmaaGsATR66AKo4r6YZDtXbg3D34amZpacbTx7dTwNpT2JVH8FA2yvo_uhaLbG3IFD-xOmqJM6VoJZB-sp0URGJMlMbBwIfObqfqVdZMybctKgpVID9mGKKEg5-STjmpKtFpg&h=3PgQxLKQL_uVr59PLJfaxmLjn5SXN9h0zaYoSdG8RBE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-c1ebc355-ace3-11f1-b6dc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197681047748&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=w-990u1mMbo1rYR22HO6qkd-39Nky_jXcusM71Upp3JyQNvYT8aUj98iL-8BMcUyX-l7MsLcMqRD6-Ue5Mrk2mYTMu6IV_x0gxv7HsalWnI-XGjrmHoYMZwM3we_P7eyBxRu7xMMHBxmXsRr9aBknKSNUuk2Gi8YEtjgt-xTY0FJ4xIz8AutbfaKf2cS3QGSAPH2Sr4Dc4pYlUjJbl7UTkmfOF0Nh7PB3S0fw8vKDdf4AX-WOKcI4WL1r_TmiyWASChC_tFnmZv4Ovk6T_WntuYnq9aeMUfg31QlSETY6CEVvcCNaMFsy9uYh2T8jv7rXNB__GNWjxHMrF-S7pRtwQ&h=d2qkiIQlr0WBitpNsZtN_p7XxmOp2g8km2Nwss7NJ_g response: body: string: '{"status":"Succeeded"}' @@ -512,9 +516,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-5e5d3ccf-3d43-11f1-a43b-00155d7ffebd?api-version=2026-03-01-preview&t=639123463007675454&c=MIIIJzCCBw-gAwIBAgIRAP6hYiF_Dzq5w1_0AMe4nPwwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNzExMzRaFw0yNjEwMDUxMzExMzRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoE2qD2iSSgVTc56bfpFrTfH5zeULX8V2qBWFWUM9Hh41x0XfYqDdZng5mVpI6E3hKxDxxE671rBnGOoBTT6tcSmt-bAvJJUL17oRMm5O1yxlqhj_Olfl8xW5LIWU4h59oBpMHDgL7y8Q6XSGzRIIEBdSCBjtidL8IFk6prya1VnykXstNmaVwQwM0dRAyNlAxEoO6OaSq2CNwU2f_IbKT289xvV4YP7UEXxnf4MV5ibKDrgnHp3R7hJD4VEu40vAnUcgDWCAGrDknDW-KTpqLkCwsvZlyIh9WajuZVnkJ66Ef4apgkt3gtfTibP7T6aOmsdvN4vsIWSG9bhHplVvcQIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdnsQVfKx9mIIFV-nKUsJkDlR7W8wHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI4L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOC9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI4L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI4L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCN4M3UbXiwMxbvsJypQLA0yLIdge74ZXm84ci2qnRBhfoSxICzJKlheI_oshKIVcM7mnysvWxwIYeeEoN9wxMOj7a2CBUN57KeNCHayrw5yZyVBcXCqhZxJaNAE1cjvhTsz7yAxcZDcItazyddashabgp83mQfQCNbFHHxRfsPZJ1mS3DS7S-GWT_VsM5LtlJOv47H1msgfMEp_GB7sTKhlP-e1Ys7X09NRP8iHY9ypY3PMaPnyZDKSgJz2_KA0Mv2ooG1NM63btziYSbEVr5oKaGl2rC0IE-kBZeK6GPUXL9thPU0KBPCzQywX5qCwwfrQDyTKPKnMEsCvGYm4GLI&s=SIMiIT5GpS9bayLBwwOafXU2vNglGZt7bcOHuMOirHtt-0RpFyqhPeyn3ya4xPS6_ytS8km_MOVI1raN7SvKs7p4TYmO-oUZbJ8uGBoAbP1OIa5AvXtyz9euzNN3BvyTX2pDptxTEF1HJcALF8nSxw9H7izFCAun4tnotOQcKDCUnwG_QqnT_flK20cOj6tPKxuQKLlqZysNgv0KM8pPGJqWp0dZVFaSWGnPInocdg6pYJPJqyqQOeuMJYh-QmNV5Dcwyv3mhlZTiX_MZa9XfoSL7pqFEubhcNh5NClJho3On93FxLQndmxguIFp8othOV6rsgYwjY-e4Bn4sATrQA&h=Z5vtymJqNVb5D17_0SfMe76bA77UuiAXZNGU_y9kFjQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-c1ebc355-ace3-11f1-b6dc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197691488833&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mNi2N5X-jEcj_It0-gp4GHEpIDHNvMw5PL92AiAebre0XFf_2Lo_V5qc5hG2OoBaHFU67fJPaFUZQmbXZJW1V1hbykEkTt0R4nv49fpc8A5PlBMnvNBvgbgUhRh_5W-IVP6yeiXcNZ_vcuHe6y_gm89Q_svtRBR8jmk55Ue_OUqHoDf51AoC9ieZnfXwqknbt9dG4FuRBfF3RopJV7gwTjvsa59Z5APt93TQVjVFbQksqzWxFm6gFKwGoe0q1N1146Va1XbaiEkiI-zoKu3slWqq4mk6OUt1611K39FRHOfkmwkAXdr77hvyzMmvUxjs7ZqiDKFe-J2asxavUpCZRw&h=HZ2_6_OWSzibwPOfHjsxU7TtBTCwJWbFmcZocLGMuug cache-control: - no-cache content-length: @@ -522,7 +527,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:40 GMT + - Thu, 10 Sep 2026 06:49:29 GMT expires: - '-1' pragma: @@ -534,11 +539,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/australiaeast/45b05029-ef01-47d8-afb8-3085b5f3144a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d372a1aa-59c4-473c-be78-b127f80a8dba x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3AD033C0B83042668E5B0D73C951F2CC Ref B: SYD03EDGE2114 Ref C: 2026-04-21T05:31:39Z' + - 'Ref A: FC37AA056BEE491E8FFDF06DEF74C405 Ref B: SYD281080708054 Ref C: 2026-09-10T06:49:28Z' status: code: 200 message: OK @@ -556,27 +561,28 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:39.1550674+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:39.1550674+00:00"},"properties":{"creationDate":"2026-04-21T05:31:39.4487439+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:27.714156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:27.714156+00:00"},"properties":{"creationDate":"2026-09-10T06:49:27.9994448+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '854' + - '830' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:41 GMT + - Thu, 10 Sep 2026 06:49:30 GMT expires: - '-1' pragma: @@ -588,19 +594,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/09990bfe-7214-491a-9439-bfdb0477966a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d0056111-3699-4952-a547-6e75af45909c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BC6FD01CCDF64647897D326EBE160C29 Ref B: SYD03EDGE1112 Ref C: 2026-04-21T05:31:40Z' + - 'Ref A: 235306D25C674E89AED7F93D6F64E26A Ref B: SYD281080707052 Ref C: 2026-09-10T06:49:29Z' status: code: 200 message: OK - request: - body: '{"properties": {"logging": {"logLevel": "Information", "auditLogStatus": - "Disabled"}, "mode": "readwrite", "garbageCollection": {"enabled": false, "schedule": - "0 0 * * *"}, "parent": {"syncProperties": {"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry", - "schedule": "* * * * *", "messageTtl": "P2D"}}}}' + body: '{"properties": {"mode": "readwrite", "garbageCollection": {"enabled": false, + "schedule": "0 0 * * *"}, "parent": {"syncProperties": {"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry", + "schedule": "* * * * *", "messageTtl": "P2D"}}, "logging": {"logLevel": "Information", + "auditLogStatus": "Disabled"}}}' headers: Accept: - application/json @@ -617,25 +623,26 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1150' + - '1151' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:43 GMT + - Thu, 10 Sep 2026 06:49:31 GMT expires: - '-1' pragma: @@ -647,13 +654,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/1c78c936-2848-4f91-a100-d7ecb74834ad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ef60e480-1062-4c41-967b-fac007772544 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: D547853C0396469AA9BCB1A5D7E926C9 Ref B: SYD03EDGE1714 Ref C: 2026-04-21T05:31:42Z' + - 'Ref A: C448016647BD411BB569ED283677F5DE Ref B: SYD281080709023 Ref C: 2026-09-10T06:49:30Z' status: code: 200 message: OK @@ -671,21 +678,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentitykuxrye6ngdnvb5jgxs":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:43 GMT + - Thu, 10 Sep 2026 06:49:31 GMT expires: - '-1' pragma: @@ -697,9 +704,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1D6DC5A8017441F9A19593D206FBC2EF Ref B: SYD03EDGE0805 Ref C: 2026-04-21T05:31:43Z' + - 'Ref A: 6B2C6CFD77444BB5BF1DEFBD003F67C4 Ref B: SYD281080711062 Ref C: 2026-09-10T06:49:31Z' status: code: 200 message: OK @@ -717,23 +724,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:44 GMT + - Thu, 10 Sep 2026 06:49:32 GMT expires: - '-1' pragma: @@ -745,9 +752,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 62BBD95D0BC441829654E353DCDFBAB5 Ref B: SYD03EDGE0806 Ref C: 2026-04-21T05:31:44Z' + - 'Ref A: BB94F949AC03456C8D6781FE36CF9C50 Ref B: SYD281080710029 Ref C: 2026-09-10T06:49:32Z' status: code: 200 message: OK @@ -767,9 +774,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry/resync?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry/resync?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ConnectedRegistryHasOfflineChildren","message":"Cannot @@ -779,7 +786,8 @@ interactions: please visit https://aka.ms/acr/connected-registry."},"status":"Failed"}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: @@ -787,7 +795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:44 GMT + - Thu, 10 Sep 2026 06:49:33 GMT expires: - '-1' pragma: @@ -799,13 +807,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/8ffe391d-aaa9-4997-a637-f19a979ec9ea + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/557b94be-53f8-4f91-a58c-9be5390374e3 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: DD1D0DDF2F6A4026B734BD9DC453FC47 Ref B: SYD03EDGE1107 Ref C: 2026-04-21T05:31:45Z' + - 'Ref A: 0B3011DDFBAB48409F5F0A989F566A85 Ref B: SYD281080706023 Ref C: 2026-09-10T06:49:33Z' status: code: 400 message: Bad Request @@ -823,21 +831,21 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentitykuxrye6ngdnvb5jgxs":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:45 GMT + - Thu, 10 Sep 2026 06:49:34 GMT expires: - '-1' pragma: @@ -849,9 +857,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CDCFBA6B4E844C48927019D34BCA691D Ref B: SYD03EDGE1422 Ref C: 2026-04-21T05:31:45Z' + - 'Ref A: DA470A36E10B4A9CA94BBB207BEBCAF7 Ref B: SYD281080712052 Ref C: 2026-09-10T06:49:34Z' status: code: 200 message: OK @@ -869,9 +877,9 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource syncToken-scope-map @@ -882,7 +890,8 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -890,7 +899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:46 GMT + - Thu, 10 Sep 2026 06:49:35 GMT expires: - '-1' pragma: @@ -902,18 +911,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5f82132f-e594-46fd-81cb-41a5a545736d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/efe543e3-30a6-455e-9c40-a6d25654212c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5102249495274D209DD2AC3C2CE99489 Ref B: SYD03EDGE1719 Ref C: 2026-04-21T05:31:46Z' + - 'Ref A: 996BC7F8716046758120E206CB560E82 Ref B: SYD281080706031 Ref C: 2026-09-10T06:49:35Z' status: code: 404 message: Not Found - request: - body: '{"properties": {"actions": ["repositories/repo1/content/read", "repositories/repo1/metadata/read", - "gateway/rootregistry/config/read", "gateway/rootregistry/config/write", "gateway/rootregistry/message/read", - "gateway/rootregistry/message/write"], "description": "Created by token: syncToken"}}' + body: '{"properties": {"description": "Created by token: syncToken", "actions": + ["repositories/repo1/content/read", "repositories/repo1/metadata/read", "gateway/rootregistry/config/read", + "gateway/rootregistry/config/write", "gateway/rootregistry/message/read", "gateway/rootregistry/message/write"]}}' headers: Accept: - application/json @@ -930,28 +939,29 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:47.8330211+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:47.8330211+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:36.9909848+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:36.9909848+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '915' + - '893' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:47 GMT + - Thu, 10 Sep 2026 06:49:36 GMT expires: - '-1' pragma: @@ -963,18 +973,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/7a1d85bc-091d-44b8-9637-db01ad548e17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/da379ff7-b8ea-45bc-8137-b85c1c9374f2 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 050D6A033E1741EE975A47E6BB1AD416 Ref B: SYD03EDGE1108 Ref C: 2026-04-21T05:31:47Z' + - 'Ref A: 34AAE0D0B58741A989DBE3C5A54BE9E1 Ref B: SYD281080712040 Ref C: 2026-09-10T06:49:36Z' status: code: 200 message: OK - request: - body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map"}}' + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map", + "status": "enabled"}}' headers: Accept: - application/json @@ -991,29 +1002,30 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-6353b627-3d43-11f1-981c-00155d7ffebd?api-version=2026-03-01-preview&t=639123463090782070&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=RtTE5uLBLXr3aZ6jn40xDfYMZj7UXTMMAEh1WccEoUr0yXNKNSVDcY3TuwufXbsNh6LxuiIbHMmrX0vVLWCo0-EzB0-xPYHaJTKqqW_Ax9NPDh4DImF1wRKh4oTf-Ta9HjY9usGjzKNho9Y043XpyxUexZKF4tXGyY964ovmGTnBn-KmzYpxR7IkQg9pHvUAZCbbO1pjcI1px9NpYkTiP8Vw_gOoKE7TX6MtiHzmbkG0m_iJBQB-eMx6hmWzFo6m-BOI5kfkGDJZeGTPEruhPlRT8PD_3JdzF7R23MDt1MosKc43-8if6Dw1GIXsPuM7MCW-a0xeiVcX0-l8TdQH2Q&h=V4KmdKB3h1mmpa3PPoiaD4HjN2JLYv0Spvy36zVZV08 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-c8e9f84b-ace3-11f1-b0b3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197790870647&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=BoBB0Qxsa1xnMlOCZXyqNn6qGRTg9HXjtx5LO19rLyWg4Q7_hm9ViEol2OQzIVM8R4drVIbFaOByC10kwJpIfZBFBVN5gYiPzGsea8MqIeRb9hwJW-1PR3kHZsUhbNfx19yqa8Vzloj8Ym-J9mBTXPYARzcMSvugt9GC8UUgVyxiI39tfKQPFEa8DFYVZOfCz2egIVL9EIziz-D0NpGvtIli371htjMrYicafsbQghToT65vFY_ve4iu9LU6NSA3VJjTclE24goA3TwaLOFhf2S6ivCWiZ-lrpr6fXaX0NFv_oJSmDMQ2r9PxLpXEQyaRlbfB39ZFwXvFMUbBjSazg&h=f-TnnaiMdVKlhb17c2FJSDrtlLeJGW4c9Z7es8WQk9E cache-control: - no-cache content-length: - - '839' + - '817' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:48 GMT + - Thu, 10 Sep 2026 06:49:38 GMT expires: - '-1' pragma: @@ -1025,13 +1037,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/487591ca-4940-4a11-a5e4-ffa4e3917843 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/918727eb-0650-44ea-84c9-a149397109ad x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: FF28277F13CD4D8CA20182B88F982729 Ref B: SYD03EDGE0722 Ref C: 2026-04-21T05:31:48Z' + - 'Ref A: 85AFD89A45894079A2313DE68B3257CF Ref B: SYD281080710042 Ref C: 2026-09-10T06:49:38Z' status: code: 201 message: Created @@ -1049,9 +1061,9 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-6353b627-3d43-11f1-981c-00155d7ffebd?api-version=2026-03-01-preview&t=639123463090782070&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=RtTE5uLBLXr3aZ6jn40xDfYMZj7UXTMMAEh1WccEoUr0yXNKNSVDcY3TuwufXbsNh6LxuiIbHMmrX0vVLWCo0-EzB0-xPYHaJTKqqW_Ax9NPDh4DImF1wRKh4oTf-Ta9HjY9usGjzKNho9Y043XpyxUexZKF4tXGyY964ovmGTnBn-KmzYpxR7IkQg9pHvUAZCbbO1pjcI1px9NpYkTiP8Vw_gOoKE7TX6MtiHzmbkG0m_iJBQB-eMx6hmWzFo6m-BOI5kfkGDJZeGTPEruhPlRT8PD_3JdzF7R23MDt1MosKc43-8if6Dw1GIXsPuM7MCW-a0xeiVcX0-l8TdQH2Q&h=V4KmdKB3h1mmpa3PPoiaD4HjN2JLYv0Spvy36zVZV08 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-c8e9f84b-ace3-11f1-b0b3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197790870647&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=BoBB0Qxsa1xnMlOCZXyqNn6qGRTg9HXjtx5LO19rLyWg4Q7_hm9ViEol2OQzIVM8R4drVIbFaOByC10kwJpIfZBFBVN5gYiPzGsea8MqIeRb9hwJW-1PR3kHZsUhbNfx19yqa8Vzloj8Ym-J9mBTXPYARzcMSvugt9GC8UUgVyxiI39tfKQPFEa8DFYVZOfCz2egIVL9EIziz-D0NpGvtIli371htjMrYicafsbQghToT65vFY_ve4iu9LU6NSA3VJjTclE24goA3TwaLOFhf2S6ivCWiZ-lrpr6fXaX0NFv_oJSmDMQ2r9PxLpXEQyaRlbfB39ZFwXvFMUbBjSazg&h=f-TnnaiMdVKlhb17c2FJSDrtlLeJGW4c9Z7es8WQk9E response: body: string: '{"status":"Succeeded"}' @@ -1061,9 +1073,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-6353b627-3d43-11f1-981c-00155d7ffebd?api-version=2026-03-01-preview&t=639123463099019937&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=io_cPSJpw5aIQhAtz9S7VtGjIx2A4DMtmJUAXOxdE_zDD7aOOBRNza9NxWPqr4wm1BLQW2rfG8N0UgLkWJjgxqU6K4byERM16j7w10L-Frvy8WYqmfr9wBP9w3K-5YkxIFZRfQPYfdzj5JcQ-wgrVgAs93MBvSgC2rg8-ZyoHx5tLmrNrWgLwIWdLT15aS4VR6q10qosZHs3VWZEtQj6IyAdRoZtbt9FFVxtZa-nv9T9e6DACmHu_SQPJjKICAX0ODDL2RIbNR9R4ATjAQtYQzj8sPKi9PWpOAK9oDaw0wZwoe6SF0llbXQ9Kg8m6PZtzD27SqDvBYSRiOM4673b8w&h=8Cn7BFnlD8dDza08u5ggOvcZ2_GNtplJD7UnV3t8scg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-c8e9f84b-ace3-11f1-b0b3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197812041289&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=VjBKsmPMjUgvkJZsZ0jcA5L-hpW3hWW9wzUom5MFR_tgsV5rkYVjOX82YZfb-lfohnp7OGa-Km5n00lNB170y03cpCXWlmo7geND5P40_kAHVkEAxxgVVpvFP270GSkXJHNNapcK5SRvC_JHZRHE8BFT_zmGPXSQUeI3N4Zgn0KvRYkGRWsY-fND1sk3wNdQAxy2M1XUwNJZpfLA4m6W1t4Bq1w7kZvNpIsQecwtMq7wo3jO0XGwvrXaLbQWEhRWNk7aRnCqqSUiGpUkXTPcs-hiNN3r5Fq0VxAjbOeQOmgDdR2LeaTW7SSWzc8tzmyWL27EPjbuIU2SsHcu7qq-Ow&h=DKu7z7Yoiz8NMvq8te0C4IN6Zhap2_uKKTSTrKDmYQM cache-control: - no-cache content-length: @@ -1071,7 +1084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:49 GMT + - Thu, 10 Sep 2026 06:49:40 GMT expires: - '-1' pragma: @@ -1083,11 +1096,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/62984704-adb3-4463-8e1b-1ca3e2d809e7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/07fe8dc2-c313-416b-b3e7-412e54c8bd56 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D72FC1CBAA6343CEB1345FB591FE7643 Ref B: SYD03EDGE1119 Ref C: 2026-04-21T05:31:49Z' + - 'Ref A: 3A877250BD8645AF8DCC63A2E8B700B7 Ref B: SYD281080705054 Ref C: 2026-09-10T06:49:40Z' status: code: 200 message: OK @@ -1105,27 +1118,28 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '840' + - '818' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:50 GMT + - Thu, 10 Sep 2026 06:49:41 GMT expires: - '-1' pragma: @@ -1137,11 +1151,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/deeee12b-fdaa-45f3-9fe5-9c4962a09fc4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8fd42eb9-b03b-4c4c-9a34-c1a88f88f7be x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B77B53D8FB7C4346ACEA99BB455FE07B Ref B: SYD03EDGE1021 Ref C: 2026-04-21T05:31:50Z' + - 'Ref A: B121C080D19A43DD9E99C7440384EEAB Ref B: SYD281080710031 Ref C: 2026-09-10T06:49:41Z' status: code: 200 message: OK @@ -1159,21 +1173,21 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.3357405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '3999' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:51 GMT + - Thu, 10 Sep 2026 06:49:43 GMT expires: - '-1' pragma: @@ -1185,9 +1199,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0EF767E01412449183D283A5E3652DAE Ref B: SYD03EDGE2107 Ref C: 2026-04-21T05:31:51Z' + - 'Ref A: B15D8854E0A5456E9259653DD2165CD1 Ref B: SYD281080710025 Ref C: 2026-09-10T06:49:43Z' status: code: 200 message: OK @@ -1205,9 +1219,9 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource clientToken-scope-map @@ -1218,7 +1232,8 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -1226,7 +1241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:52 GMT + - Thu, 10 Sep 2026 06:49:44 GMT expires: - '-1' pragma: @@ -1238,17 +1253,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/44a8095e-5fe3-4789-8a85-7761424b0278 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3b55b7f2-60ec-43fb-a781-e3c5211c294f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8D32B01FBCEE47DD940B15577F65E1C2 Ref B: SYD03EDGE0805 Ref C: 2026-04-21T05:31:52Z' + - 'Ref A: 6DBCEF1F23BA4BDDAE77EB82C3C36712 Ref B: SYD281080706034 Ref C: 2026-09-10T06:49:43Z' status: code: 404 message: Not Found - request: - body: '{"properties": {"actions": ["repositories/repo1/content/read"], "description": - "Created by token: clientToken"}}' + body: '{"properties": {"description": "Created by token: clientToken", "actions": + ["repositories/repo1/content/read"]}}' headers: Accept: - application/json @@ -1265,28 +1280,29 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","name":"clientToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:53.6419623+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:53.6419623+00:00"},"properties":{"description":"Created - by token: clientToken","type":"UserDefined","creationDate":"2026-04-21T05:31:53.9046747+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","name":"clientToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:45.2678415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:45.2678415+00:00"},"properties":{"description":"Created + by token: clientToken","type":"UserDefined","creationDate":"2026-09-10T06:49:45.5151981+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '742' + - '720' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:53 GMT + - Thu, 10 Sep 2026 06:49:45 GMT expires: - '-1' pragma: @@ -1298,18 +1314,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/8ca50b3f-e94d-42eb-aaca-03bbeec9a82b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/66bf8bc4-c258-42fd-88fd-97bb2f22af90 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 140B610637D24C2897A947C141E3E20A Ref B: SYD03EDGE2011 Ref C: 2026-04-21T05:31:53Z' + - 'Ref A: 65657A3C13134BF784FBAAEF7AFDD245 Ref B: SYD281080705025 Ref C: 2026-09-10T06:49:45Z' status: code: 200 message: OK - request: - body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map"}}' + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map", + "status": "enabled"}}' headers: Accept: - application/json @@ -1326,29 +1343,30 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:55.2638904+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:55.2638904+00:00"},"properties":{"creationDate":"2026-04-21T05:31:55.3400681+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:46.2445424+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:46.2445424+00:00"},"properties":{"creationDate":"2026-09-10T06:49:47.3344367+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-670e7d6b-3d43-11f1-8b87-00155d7ffebd?api-version=2026-03-01-preview&t=639123463155607657&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=n8h7Yn_RtcbTLPEvSkEFRJQx7S7ONQpL8qA2N_NU0-ek0rk1Xo9RBmyabLT08gmXgtHY3hRBIILN2L7fFzZvbDbg1WkZgZ0ofvehTtMutRNO8miJkXSZLfnxOgShc7FsEClyDx4CKbY-4G30XrA0PqRRdFw7xx--WxTiv-12eiXzeK_tXUqTt5KSOw1UimKI_DjY4wHkILKacuKw6umQMH9qUZpdQI3A_g80GP2pVOBohqL9hVH2m1miEDT5DIo5lF71JoPkBc7JuN7VTX6U-Oq14ucjDeBGDg5X_okt75iMLtvQMbJtRcd1afbRUAFwDQzb_5aHJhhYtkGpwm05VA&h=U5kNRe-Y9F6ze3Ho0qBWv43fEWqVl7RcUX_aQ4wchFk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-ce2549e2-ace3-11f1-a230-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197874946493&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Iavck4kTZkj7sgZ35t82hEyG5soO3Qs8RJCaUvv6K6vvh5j_UAr2aVIxC-jUp5GIU1i8Mpb2AhQ4X_gLAlxkiDjIKoaeavsIRTagDpsrjg_ydoHNnqqnYH7MF2_C7wRp6ead-rbR_TdgcBufFlOXoOzHxX2blmtj5_W8fx-K8B4BekjqhXh_SncBBM4szBzrlkh0XAe7y_inL7GyOQFwAngCuDlOm7gCoq7ndz0Jw2zLNUhVKee8XfW49mEk4rxtFb4Wo-aIGiXwmQthMtbUP_fPBKgxjoW5PJqjChpUCgDD3w9vfddjMgr-HHaPniLIMmyZ-DpYIQk-BNKst3lC7Q&h=h-Ooi7rbeq2tsMwAmE2AEo5Gk2cl-wjhW3vmdg4Vytg cache-control: - no-cache content-length: - - '845' + - '823' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:54 GMT + - Thu, 10 Sep 2026 06:49:47 GMT expires: - '-1' pragma: @@ -1360,13 +1378,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/14609eb4-2a64-44e1-bc99-12a4df5649d9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c2a5936c-cf6a-435b-a220-16e170c11769 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 1693CED1FD8146FBB752197F947A37A2 Ref B: SYD03EDGE1015 Ref C: 2026-04-21T05:31:54Z' + - 'Ref A: A032ED2B93CD4F3AA5DD67A157F9603A Ref B: SYD281080710062 Ref C: 2026-09-10T06:49:46Z' status: code: 201 message: Created @@ -1384,9 +1402,9 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-670e7d6b-3d43-11f1-8b87-00155d7ffebd?api-version=2026-03-01-preview&t=639123463155607657&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=n8h7Yn_RtcbTLPEvSkEFRJQx7S7ONQpL8qA2N_NU0-ek0rk1Xo9RBmyabLT08gmXgtHY3hRBIILN2L7fFzZvbDbg1WkZgZ0ofvehTtMutRNO8miJkXSZLfnxOgShc7FsEClyDx4CKbY-4G30XrA0PqRRdFw7xx--WxTiv-12eiXzeK_tXUqTt5KSOw1UimKI_DjY4wHkILKacuKw6umQMH9qUZpdQI3A_g80GP2pVOBohqL9hVH2m1miEDT5DIo5lF71JoPkBc7JuN7VTX6U-Oq14ucjDeBGDg5X_okt75iMLtvQMbJtRcd1afbRUAFwDQzb_5aHJhhYtkGpwm05VA&h=U5kNRe-Y9F6ze3Ho0qBWv43fEWqVl7RcUX_aQ4wchFk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-ce2549e2-ace3-11f1-a230-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197874946493&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Iavck4kTZkj7sgZ35t82hEyG5soO3Qs8RJCaUvv6K6vvh5j_UAr2aVIxC-jUp5GIU1i8Mpb2AhQ4X_gLAlxkiDjIKoaeavsIRTagDpsrjg_ydoHNnqqnYH7MF2_C7wRp6ead-rbR_TdgcBufFlOXoOzHxX2blmtj5_W8fx-K8B4BekjqhXh_SncBBM4szBzrlkh0XAe7y_inL7GyOQFwAngCuDlOm7gCoq7ndz0Jw2zLNUhVKee8XfW49mEk4rxtFb4Wo-aIGiXwmQthMtbUP_fPBKgxjoW5PJqjChpUCgDD3w9vfddjMgr-HHaPniLIMmyZ-DpYIQk-BNKst3lC7Q&h=h-Ooi7rbeq2tsMwAmE2AEo5Gk2cl-wjhW3vmdg4Vytg response: body: string: '{"status":"Succeeded"}' @@ -1396,9 +1414,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-670e7d6b-3d43-11f1-8b87-00155d7ffebd?api-version=2026-03-01-preview&t=639123463164928626&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=CNEa-fqLtVvmj5y0JwM0ScqEJTELhLnKkw2o0ZuyZ6GYLFYRy3u4_iifTrVt8TPCd6klaPwH_hmBSHsFSKo6Z4j-pKCsVpb1BXuSdwLnWe83wGUvrhT5O4FPo77XgquWLFaIkrbn2jfI48gi5TiWmOY8bm2gQrm5YVauu-T_quV2-l9klDcw35yQRA8Y_C95FU0mL5r_ekKIBycYH8M_XaV1xc1QfwIAGb477uLDZ5IZS0DJEuDwGIQdDaBV9JgfbZ5O5dDWFB7xiAKxaYwpxuytXWFFlcRuCQIoDL5uhCu09sh0GpSN3ll18kKJRwI8C3Wn1elCuTIL3xeCSOUjgg&h=ayNidnCGRc4dvrBbCJj-e-rBZRWTehcESPMXf6er8T0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-ce2549e2-ace3-11f1-a230-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197883950931&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=SeS717FayfzJ809POUv2lFuncwvcrF5FU9ZXPs5oIcuvGrXvMHh2DB9dlRMDrVpF7iAJqqqzG59Q9OyNTHI0BHkDhsYOXfE4xZjOor__aybaUo_Ef2ywaWd1CijTcBH43YXzFBd1GBr7EUhZsZPA6X6kwSvGt_NeOmVwXOkJmdIdnsamY_vHQDsIs8c8VGgC3l3CTboVeh7hF_eiBqtdijh5UMBGB43q85gXr2yBU0TRhnO-bK8cGPSBZKIEDbCOw_U_XCD-xgGEITow1IdzVA2rVqZsKbJuQseMeb-dIFZeE2wiXM9GDvRcTXjgzugDv8E0nCBmFbJBKkJTGonq1g&h=9imKvfiLxl0qXJyDFj0lAhAXoU8FQmUlL6quSrT6BWc cache-control: - no-cache content-length: @@ -1406,7 +1425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:56 GMT + - Thu, 10 Sep 2026 06:49:48 GMT expires: - '-1' pragma: @@ -1418,11 +1437,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/f809bb35-a1af-4e1e-bd89-bebb61979629 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e2159a28-c88b-42c1-bc05-181b0fa0d9da x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 15033A70A2584BE0B015A46C63C21F12 Ref B: SYD03EDGE1417 Ref C: 2026-04-21T05:31:55Z' + - 'Ref A: D0EBF876E0CC42CF8B2A00CD640747F8 Ref B: SYD281080705042 Ref C: 2026-09-10T06:49:48Z' status: code: 200 message: OK @@ -1440,27 +1459,28 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:55.2638904+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:55.2638904+00:00"},"properties":{"creationDate":"2026-04-21T05:31:55.3400681+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:46.2445424+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:46.2445424+00:00"},"properties":{"creationDate":"2026-09-10T06:49:47.3344367+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '846' + - '824' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:56 GMT + - Thu, 10 Sep 2026 06:49:48 GMT expires: - '-1' pragma: @@ -1472,11 +1492,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5a710320-d24f-41cd-8a59-9e96c0c3fadf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d3151e99-11fb-45dd-b5be-6be5d4af4b95 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1BF8629D663F45DA9C8B02A5BF1E6CD1 Ref B: SYD03EDGE1013 Ref C: 2026-04-21T05:31:56Z' + - 'Ref A: 7B03E41FB0F746BBBCE879593DAA7B08 Ref B: SYD281080707034 Ref C: 2026-09-10T06:49:48Z' status: code: 200 message: OK @@ -1494,21 +1514,22 @@ interactions: ParameterSetName: - -n -r --sync-token --log-level -s -w --client-tokens --notifications User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentitykuxrye6ngdnvb5jgxs":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:44.1226769Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4520' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:57 GMT + - Thu, 10 Sep 2026 06:49:49 GMT expires: - '-1' pragma: @@ -1520,9 +1541,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 08557D72F1A74FB28E68D0F7B2BA3F1B Ref B: SYD03EDGE1107 Ref C: 2026-04-21T05:31:57Z' + - 'Ref A: E6F95A838902468EB8755F464D4F6743 Ref B: SYD281080707025 Ref C: 2026-09-10T06:49:49Z' status: code: 200 message: OK @@ -1540,23 +1561,23 @@ interactions: ParameterSetName: - -n -r --sync-token --log-level -s -w --client-tokens --notifications User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:58 GMT + - Thu, 10 Sep 2026 06:49:50 GMT expires: - '-1' pragma: @@ -1568,19 +1589,19 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3F38DE52F03C433883005305BF424748 Ref B: SYD03EDGE0821 Ref C: 2026-04-21T05:31:58Z' + - 'Ref A: 274573E7D80A48B1BC7FDD5779427EAA Ref B: SYD281080712054 Ref C: 2026-09-10T06:49:50Z' status: code: 200 message: OK - request: - body: '{"properties": {"logging": {"logLevel": "Warning", "auditLogStatus": "Disabled"}, - "clientTokenIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"], - "notificationsList": ["hello-world:tag:push"], "mode": "readonly", "garbageCollection": - {"enabled": "true", "schedule": "0 0 * * *"}, "parent": {"syncProperties": {"tokenId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken", - "schedule": "0 0/10 * * *", "messageTtl": "P2D", "syncWindow": "PT4H"}}}}' + body: '{"properties": {"mode": "readonly", "garbageCollection": {"enabled": "true", + "schedule": "0 0 * * *"}, "clientTokenIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"], + "parent": {"syncProperties": {"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken", + "schedule": "0 0/10 * * *", "messageTtl": "P2D", "syncWindow": "PT4H"}}, "logging": + {"logLevel": "Warning", "auditLogStatus": "Disabled"}, "notificationsList": + ["hello-world:tag:push"]}}' headers: Accept: - application/json @@ -1597,25 +1618,26 @@ interactions: ParameterSetName: - -n -r --sync-token --log-level -s -w --client-tokens --notifications User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:59.7442062+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:59.7442062+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:51.8783918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:51.8783918+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1380' + - '1381' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:00 GMT + - Thu, 10 Sep 2026 06:49:52 GMT expires: - '-1' pragma: @@ -1627,13 +1649,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/4abe6df2-9b50-4037-90dd-fb81a9e8f259 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6975bb22-0c9d-483a-a86e-ff61f039f7c7 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 3B9C6E69F21E4581A118A5B3A84A22D6 Ref B: SYD03EDGE1906 Ref C: 2026-04-21T05:31:59Z' + - 'Ref A: 7C261D9B78A44AB9940B0258D1634109 Ref B: SYD281080710034 Ref C: 2026-09-10T06:49:51Z' status: code: 200 message: OK @@ -1651,21 +1673,22 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentitykuxrye6ngdnvb5jgxs":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:44.1226769Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4520' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:31:59 GMT + - Thu, 10 Sep 2026 06:49:52 GMT expires: - '-1' pragma: @@ -1677,9 +1700,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 33A0C03EA87C419F95FA8DA75EB15841 Ref B: SYD03EDGE1316 Ref C: 2026-04-21T05:32:00Z' + - 'Ref A: 41404A24855B41EEA7219FDB2FFE3397 Ref B: SYD281080711034 Ref C: 2026-09-10T06:49:52Z' status: code: 200 message: OK @@ -1697,23 +1720,23 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:01 GMT + - Thu, 10 Sep 2026 06:49:52 GMT expires: - '-1' pragma: @@ -1725,9 +1748,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 69B55C38F2B44B769FC75D6C0E980DC5 Ref B: SYD03EDGE1320 Ref C: 2026-04-21T05:32:00Z' + - 'Ref A: 8594604E3A074A8186C08994FA196627 Ref B: SYD281080708034 Ref C: 2026-09-10T06:49:53Z' status: code: 200 message: OK @@ -1745,23 +1768,23 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:02 GMT + - Thu, 10 Sep 2026 06:49:54 GMT expires: - '-1' pragma: @@ -1773,9 +1796,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F9798405C3254F20AFAC91CD10FE6E91 Ref B: SYD03EDGE0919 Ref C: 2026-04-21T05:32:01Z' + - 'Ref A: C09671DFB4AD4F4CADD65544D11B49B9 Ref B: SYD281080712025 Ref C: 2026-09-10T06:49:54Z' status: code: 200 message: OK @@ -1793,25 +1816,26 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:59.7442062+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:59.7442062+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:51.8783918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:51.8783918+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1380' + - '1381' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:03 GMT + - Thu, 10 Sep 2026 06:49:54 GMT expires: - '-1' pragma: @@ -1823,11 +1847,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/57eac524-8e1e-4bfc-bd87-b7825a8b7b4e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ad0e9406-ab8f-4ce4-af57-00c9129e6a7b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BCCCA82FFED24F8E86571E6D305192E2 Ref B: SYD03EDGE0914 Ref C: 2026-04-21T05:32:02Z' + - 'Ref A: CF20D7ADCE184B1CA03D69D1ACED004B Ref B: SYD281080707025 Ref C: 2026-09-10T06:49:54Z' status: code: 200 message: OK @@ -1845,27 +1869,28 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:59.7442062+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:59.7442062+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:51.8783918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:51.8783918+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}]}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '2543' + - '2545' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:04 GMT + - Thu, 10 Sep 2026 06:49:55 GMT expires: - '-1' pragma: @@ -1877,11 +1902,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/01712a0b-5015-4110-a145-7eceecbccb17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/87c05c55-382f-4d24-8d67-cd652c73f58a x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: ADE06D8D7E3549FCA1220F20EF34024A Ref B: SYD03EDGE1420 Ref C: 2026-04-21T05:32:03Z' + - 'Ref A: EB4B722E11A54711A948DA45274DCD77 Ref B: SYD281080705025 Ref C: 2026-09-10T06:49:55Z' status: code: 200 message: OK @@ -1899,27 +1924,28 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '840' + - '818' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:05 GMT + - Thu, 10 Sep 2026 06:49:56 GMT expires: - '-1' pragma: @@ -1931,11 +1957,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/b2cbd179-14a7-4d4e-aa29-269a86a2177a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/03cf77c3-e0e4-4da3-8bed-5feb56c895e9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DB3D0B9A47FA4D24AE4549A365930332 Ref B: SYD03EDGE1012 Ref C: 2026-04-21T05:32:04Z' + - 'Ref A: 73CF5F68DFDC4930AC89331C5EB5E0BC Ref B: SYD281080708042 Ref C: 2026-09-10T06:49:56Z' status: code: 200 message: OK @@ -1953,28 +1979,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:47.8330211+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:47.8330211+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:36.9909848+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:36.9909848+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '915' + - '893' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:05 GMT + - Thu, 10 Sep 2026 06:49:57 GMT expires: - '-1' pragma: @@ -1986,20 +2013,20 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/20a66c8a-dd34-43d3-836f-e458665d3cdd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/16db3aec-281d-4b14-b9ec-7e58f197707e x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D8066B9751D54A8FA1C78EAD41F0B6BA Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:32:05Z' + - 'Ref A: B17EB979B9C44B1989F5B26CCD702634 Ref B: SYD281080711060 Ref C: 2026-09-10T06:49:57Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/rootregistry/config/write", "repositories/repo1/content/read", - "gateway/rootregistry/config/read", "gateway/child/config/read", "repositories/repo2/content/read", - "gateway/rootregistry/message/write", "gateway/child/config/write", "gateway/rootregistry/message/read", - "repositories/repo2/metadata/read", "gateway/child/message/write", "gateway/child/message/read", - "repositories/repo1/metadata/read"]}}' + body: '{"properties": {"actions": ["repositories/repo2/content/read", "gateway/child/message/write", + "gateway/rootregistry/message/read", "repositories/repo1/metadata/read", "gateway/rootregistry/config/write", + "repositories/repo2/metadata/read", "repositories/repo1/content/read", "gateway/child/message/read", + "gateway/child/config/read", "gateway/rootregistry/message/write", "gateway/child/config/write", + "gateway/rootregistry/config/read"]}}' headers: Accept: - application/json @@ -2016,30 +2043,31 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:06.8576477+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:06.8576477+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Updating","actions":["gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/child/config/read","repositories/repo2/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/message/read","repositories/repo2/metadata/read","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:58.2306635+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:58.2306635+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Updating","actions":["repositories/repo2/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-6c9cb61b-3d43-11f1-97f8-00155d7ffebd?api-version=2026-03-01-preview&t=639123463272795311&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=G-Tnuo8aYhBe2Li0De7h3icJLpajh81eKcGOOsZJaNND4Wqyr1xZKyOA7UhWp0Ji53Cpu4C4cBRRnTLl5m7bwwKw0uOseGQpLmUTISP16NbY0j2l7HOVW-GnhyPtcdtyaxPhfIN8OCLUeTyCRf_bc-55HmXSY2ym7xLQ0p-ADRgBC43L6S6N9Yx9FZRaN0RWRGL8uKEAUZWBBIv-GIzlkMdHRfAao25YFo8dyBwWp1hhvYGRGBzgFdv7Uk-bHgJ9uYfVIZl6rf5tUP9ccIxQoWgeRulFrUzHJwGjKsD9s3bPNyrTx7-Pbh8teeDdrPVNUpfgf-ZzLRZBLOuLKwWyuQ&h=ceYHX4SZ1alapEGrmpsmlFFIflqVT5M9MabtYoF-T1w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197994807624&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=bu0MrDh9vYh876a509Jh9BRFW9OfmP8K3cfIeVK1DZPVLgP2Ox0M5SETLMXcGB91FMcvc8iWdK4MD5SaorsMV916psfELVFs6_XqLmE-H89Ztp0vcKvdV4dp4dcfHBwzTDoD1XgHyPN3WihjfNSkPP2bc2SlXTjE9Lial0SHLnI0xzhLnLNWnP3tP6oZob4T-S0yy379-h1pnwM5NTmSENgD6B1q9PQHLciSSMHP4oGHUo7brsA9dAnGin5KF_zICfyAVN1IwfsWoTmjm2zg286SMas_NxesEv-Xp-I_0qJNTRpdTiLLfWwUScgiIPH2fmtZgdqpUN6u7-oWV0gomg&h=_CtjkRoEAhibn5qsxABy2nfJaLuIG4Camj3FXn7kqYY cache-control: - no-cache content-length: - - '1099' + - '1077' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:07 GMT + - Thu, 10 Sep 2026 06:49:59 GMT expires: - '-1' pragma: @@ -2051,13 +2079,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/1dcc28d5-7346-4685-a41a-54d3975805cd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/08030cca-22c2-4ae3-b6e1-61ea2d3007ea x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: B2734DB8C7FF491AAD7D0BB77999D09C Ref B: SYD03EDGE1908 Ref C: 2026-04-21T05:32:06Z' + - 'Ref A: 6210BC14770A4F569B0C8E83BBEE1882 Ref B: SYD281080710023 Ref C: 2026-09-10T06:49:58Z' status: code: 201 message: Created @@ -2075,9 +2103,66 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197994807624&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=bu0MrDh9vYh876a509Jh9BRFW9OfmP8K3cfIeVK1DZPVLgP2Ox0M5SETLMXcGB91FMcvc8iWdK4MD5SaorsMV916psfELVFs6_XqLmE-H89Ztp0vcKvdV4dp4dcfHBwzTDoD1XgHyPN3WihjfNSkPP2bc2SlXTjE9Lial0SHLnI0xzhLnLNWnP3tP6oZob4T-S0yy379-h1pnwM5NTmSENgD6B1q9PQHLciSSMHP4oGHUo7brsA9dAnGin5KF_zICfyAVN1IwfsWoTmjm2zg286SMas_NxesEv-Xp-I_0qJNTRpdTiLLfWwUScgiIPH2fmtZgdqpUN6u7-oWV0gomg&h=_CtjkRoEAhibn5qsxABy2nfJaLuIG4Camj3FXn7kqYY + response: + body: + string: '{"status":"Updating"}' + headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, + 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198004109835&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=wArp2TQb53qs2seUbQfguygmFpC0HSyYPp8XIJYacmw_6VnImQVGEVcTo9XKucnqzQwMxdrV1XJdgZu7fIOGIvBc8Oo7DqQFVlSgrLKZrdCDmDFMwe0kkAQCCWH47-O1nQ66CjBSnooucgvG6ORfwRTgq-5wuVVNJECVBxnPvgKPm6QN2yVxCxRUeljAbPmZR5YjtOAn2ib-rIYK0MJ0lmx77AZ2mUoqBt1yfGFK9FLFr-AfqmlUDdIGCSmhAjnpO_0GLSAk8TiKy8UpNGbRg42-RHJ76Rfx-ehwuPzqi8kaHfIcT4Z_Wml3KAGfr9lYEyETdFTgm07iK58A3V12wg&h=26rlSqsgr6NxIs0Q4Jrv4WTa9PQswrRondkb-0ONW4Y + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:49:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b238ac29-be22-4ef2-b1b3-9a36f70003e6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DD116A1728854041B95065583D92368F Ref B: SYD281080711036 Ref C: 2026-09-10T06:50:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr connected-registry create + Connection: + - keep-alive + ParameterSetName: + - -n -p -r --repository -m + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-6c9cb61b-3d43-11f1-97f8-00155d7ffebd?api-version=2026-03-01-preview&t=639123463272795311&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=G-Tnuo8aYhBe2Li0De7h3icJLpajh81eKcGOOsZJaNND4Wqyr1xZKyOA7UhWp0Ji53Cpu4C4cBRRnTLl5m7bwwKw0uOseGQpLmUTISP16NbY0j2l7HOVW-GnhyPtcdtyaxPhfIN8OCLUeTyCRf_bc-55HmXSY2ym7xLQ0p-ADRgBC43L6S6N9Yx9FZRaN0RWRGL8uKEAUZWBBIv-GIzlkMdHRfAao25YFo8dyBwWp1hhvYGRGBzgFdv7Uk-bHgJ9uYfVIZl6rf5tUP9ccIxQoWgeRulFrUzHJwGjKsD9s3bPNyrTx7-Pbh8teeDdrPVNUpfgf-ZzLRZBLOuLKwWyuQ&h=ceYHX4SZ1alapEGrmpsmlFFIflqVT5M9MabtYoF-T1w + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197994807624&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=bu0MrDh9vYh876a509Jh9BRFW9OfmP8K3cfIeVK1DZPVLgP2Ox0M5SETLMXcGB91FMcvc8iWdK4MD5SaorsMV916psfELVFs6_XqLmE-H89Ztp0vcKvdV4dp4dcfHBwzTDoD1XgHyPN3WihjfNSkPP2bc2SlXTjE9Lial0SHLnI0xzhLnLNWnP3tP6oZob4T-S0yy379-h1pnwM5NTmSENgD6B1q9PQHLciSSMHP4oGHUo7brsA9dAnGin5KF_zICfyAVN1IwfsWoTmjm2zg286SMas_NxesEv-Xp-I_0qJNTRpdTiLLfWwUScgiIPH2fmtZgdqpUN6u7-oWV0gomg&h=_CtjkRoEAhibn5qsxABy2nfJaLuIG4Camj3FXn7kqYY response: body: string: '{"status":"Succeeded"}' @@ -2087,9 +2172,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-6c9cb61b-3d43-11f1-97f8-00155d7ffebd?api-version=2026-03-01-preview&t=639123463289486811&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=Khugd-1r3WrG7daUwXITwSafHz9MYb5GSRPHc4kvG0J-mkKIDGqp3VZfgpgiT-EZ_drkaJPHFIdjRCm-lORowbnKE72f6earVEoxps0GM_D3Vbs174qYHI3SrDhnXoS2nrZtWrfQRhLf4wSlvus0OvbC9n8wpZC-1rGuWpT1uYanz4V6ZmpNmc8DdVb24rMSLQoAIkvnRYjjkNsBlXpkwnSfEzduXeHZDWmZMsaZ1SwkTRrm8idrEbrTJVEX-twbNsH0c4OM6gWJDf0GryF9qFsj1E_0BQnLEGp41MmGdNcT3EIwxgEWBKnOLSa6IdZ4qbD7GhtlRBeQdjVeUNaLnw&h=huphivqszkxQvEFtqgtNKYQYizXt0w8aIgQO0BNeO6U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198124265600&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=EhlOioq1GdRQEWz9vi-5rCtJ1QXCy5-6oKh-NKXSWa4tYN_q7DRmREkZg-_WZXFPMHGJtzEfAvw6KCOTVUZ4IoGTnMGgCIALflp5VFNwwnW80zALDhep5MnTVvLBUrcgc718Xjn6oyE21EbeiAYBzoHqK5Dl51wDbu0FFc1kI4Tu5B62wi1UkrSfWZwysxJaUy8eyzI5YoLOk6kxwkzWkMPmUIzAXQhvkaAv2z1xFAD3Jp8dGrDIAHNqalQyKfUDot2OzFwiq1MThU1mrg4qjwHix9lk7pHi0qDXYAfZWoZCoblDmjihKY7gXwHyOiuzX35I9EHGK1xoRfXBK43Lbg&h=e_fboyskEG0bOcV7ZhKJeP8MPabE6NBy8Nosd7RC8OA cache-control: - no-cache content-length: @@ -2097,7 +2183,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:08 GMT + - Thu, 10 Sep 2026 06:50:12 GMT expires: - '-1' pragma: @@ -2109,11 +2195,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/48f51493-be0f-4a01-b8bd-32ea1ad1186a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ffd4ede2-0627-4d6a-922c-1f94d571a24c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 45880E88FDE74737A4B28F1FA8A78CA1 Ref B: SYD03EDGE1010 Ref C: 2026-04-21T05:32:07Z' + - 'Ref A: 3D1B8592396940188D63DD0EC8C7FE00 Ref B: SYD281080708042 Ref C: 2026-09-10T06:50:11Z' status: code: 200 message: OK @@ -2131,28 +2217,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:06.8576477+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:06.8576477+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/child/config/read","repositories/repo2/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/message/read","repositories/repo2/metadata/read","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:58.2306635+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:58.2306635+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1100' + - '1078' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:09 GMT + - Thu, 10 Sep 2026 06:50:12 GMT expires: - '-1' pragma: @@ -2164,11 +2251,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/defc3539-6b28-452b-a9f9-78d7c62f7c39 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7f688d42-4589-430d-82db-485b09fcaa27 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C48D2450A28449078A2AC1D0C50EDAA1 Ref B: SYD03EDGE2021 Ref C: 2026-04-21T05:32:09Z' + - 'Ref A: B42180F2578D4C38BCC733B65501E206 Ref B: SYD281080706036 Ref C: 2026-09-10T06:50:12Z' status: code: 200 message: OK @@ -2186,9 +2273,9 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource child could @@ -2199,7 +2286,8 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -2207,7 +2295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:10 GMT + - Thu, 10 Sep 2026 06:50:14 GMT expires: - '-1' pragma: @@ -2219,19 +2307,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5017aadd-c4cd-4213-b8af-d269105f5fc5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/013540a8-6159-4e5c-89b0-81d4163a7bb1 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3B34778BF1714103ACCDADB22BAA2CC5 Ref B: SYD03EDGE0706 Ref C: 2026-04-21T05:32:10Z' + - 'Ref A: 7DC65D5D8803487AA74C7DF2F2A3643A Ref B: SYD281080712040 Ref C: 2026-09-10T06:50:14Z' status: code: 404 message: Not Found - request: - body: '{"properties": {"actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", + body: '{"properties": {"description": "Created by connected registry sync token: + child", "actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", "gateway/child/config/read", "gateway/child/config/write", "gateway/child/message/read", - "gateway/child/message/write"], "description": "Created by connected registry - sync token: child"}}' + "gateway/child/message/write"]}}' headers: Accept: - application/json @@ -2248,28 +2336,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:11.4874259+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:11.4874259+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:15.231686+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:15.231686+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '879' + - '855' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:11 GMT + - Thu, 10 Sep 2026 06:50:15 GMT expires: - '-1' pragma: @@ -2281,18 +2370,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/22304807-f21b-40a5-beb8-200b967d05b8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/02b02fa5-0b9c-4794-8980-f4cc7c131ee9 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 9C4D2F7178DD4687AE18B86DF70F426E Ref B: SYD03EDGE0916 Ref C: 2026-04-21T05:32:11Z' + - 'Ref A: 47C21B153BA44E1AB76A06085D246C4A Ref B: SYD281080711062 Ref C: 2026-09-10T06:50:15Z' status: code: 200 message: OK - request: - body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child"}}' + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child", + "status": "enabled"}}' headers: Accept: - application/json @@ -2309,29 +2399,30 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-6c9cb61b-3d43-11f1-97f8-00155d7ffebd?api-version=2026-03-01-preview&t=639123463332316771&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=sQHye0TikmGWk7naW24ZtKSIZbxpFwwEwXTdWKQIiSruOUrP6Zsas-WYupokspmWmOEX9fojCO0aFbupCsaIOxFq2fsAq1429BWCWo9xa6u7zNscNvQOQZ3Uph9i2Xn2walNszkK0Cs0_L0xbR1rSykqKEd-CoAacQ5eAmJ-wdE9m3FL0tqUtrN6mK3vdIH9gRHqX1s4Y41KxWqDIQomN1H9B4HSja0jJt6nKQN_hflZjMAaj7pVT2h77PwpQHfM4BIMsdk2cbjWWwRaEpq4gFZ7yYf_U6pnR-jefZdgjbjapf7Bl_1cnim2agDK_mkiQIW6vd7bLY0kfEeLoLL9pA&h=ELsAna2vcNg-oP0GxdwW9sWQa-QGR0yphAkX6iCfhcY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198164707885&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=wTCk54t6gbZExZNuecD2uiRMA6pzVQCSz67qAQb9x2HjtPrbuubd2B4BIq2Twn5jyQkdWkizREYKPOXlMz70PKEpbO3xo2ph_tcQILSsc82HXcJTmg1suVuyz0rI1Mjy7iC6nTwrr8fKbrAXUx8IT8TJOCaZyvvGQYyYOf4TEEPXk3XERQppOYRvN29E5-UBjxIisX5rji9PZlz5OqMoaNGrRk-FAHKhQZw0v1myfw24RWk1xWGpMcuSROEszXzM_8IjnTfpc1ILGMHiP9onZSefcw9ZdvWEib-_1Cx3KVxpPzwa04KPm82ie8AoaWbUR6shC0t7KfbpmTI7iK9Diw&h=UgMNoy9YEIDaq_kQGzRu37VAU4-TzXrYby9mbeqH0sw cache-control: - no-cache content-length: - - '815' + - '794' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:13 GMT + - Thu, 10 Sep 2026 06:50:16 GMT expires: - '-1' pragma: @@ -2343,13 +2434,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/872513d7-83fe-40f7-b867-bbbfdda645c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f6ddc07d-f936-4f73-aee2-1297183848f0 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 9FAE46DC81004B98B63E6A4AC67EBD9D Ref B: SYD03EDGE1107 Ref C: 2026-04-21T05:32:11Z' + - 'Ref A: E39E40522D704260B215932D890ECE7D Ref B: SYD281080709042 Ref C: 2026-09-10T06:50:15Z' status: code: 201 message: Created @@ -2367,9 +2458,9 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-6c9cb61b-3d43-11f1-97f8-00155d7ffebd?api-version=2026-03-01-preview&t=639123463332316771&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=sQHye0TikmGWk7naW24ZtKSIZbxpFwwEwXTdWKQIiSruOUrP6Zsas-WYupokspmWmOEX9fojCO0aFbupCsaIOxFq2fsAq1429BWCWo9xa6u7zNscNvQOQZ3Uph9i2Xn2walNszkK0Cs0_L0xbR1rSykqKEd-CoAacQ5eAmJ-wdE9m3FL0tqUtrN6mK3vdIH9gRHqX1s4Y41KxWqDIQomN1H9B4HSja0jJt6nKQN_hflZjMAaj7pVT2h77PwpQHfM4BIMsdk2cbjWWwRaEpq4gFZ7yYf_U6pnR-jefZdgjbjapf7Bl_1cnim2agDK_mkiQIW6vd7bLY0kfEeLoLL9pA&h=ELsAna2vcNg-oP0GxdwW9sWQa-QGR0yphAkX6iCfhcY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198164707885&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=wTCk54t6gbZExZNuecD2uiRMA6pzVQCSz67qAQb9x2HjtPrbuubd2B4BIq2Twn5jyQkdWkizREYKPOXlMz70PKEpbO3xo2ph_tcQILSsc82HXcJTmg1suVuyz0rI1Mjy7iC6nTwrr8fKbrAXUx8IT8TJOCaZyvvGQYyYOf4TEEPXk3XERQppOYRvN29E5-UBjxIisX5rji9PZlz5OqMoaNGrRk-FAHKhQZw0v1myfw24RWk1xWGpMcuSROEszXzM_8IjnTfpc1ILGMHiP9onZSefcw9ZdvWEib-_1Cx3KVxpPzwa04KPm82ie8AoaWbUR6shC0t7KfbpmTI7iK9Diw&h=UgMNoy9YEIDaq_kQGzRu37VAU4-TzXrYby9mbeqH0sw response: body: string: '{"status":"Succeeded"}' @@ -2379,9 +2470,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-6c9cb61b-3d43-11f1-97f8-00155d7ffebd?api-version=2026-03-01-preview&t=639123463343697550&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=DOf0AmXcXrTl5KchmHgaNlnrfi-qBXoccCilyrrJZhKPVokLe8MEL69dx4RdRG-WjIw8y6_npyliGCgVY4jacUGc0SxWZZEt8JwZzR1FW8-H_XRhpEtvefsAythk38psj2Oezy99O6VrTwhIuM5t3lWf8zn7XoWigKMACCwhC49EK6kAXCqN-VzJvHyIZjVVkUYRICltOh7CJ0Za0BFetFc77GnOgStHfpyEyEFpFaYntGAcZZ3XYMqKE9LE2j2QQmzhw0LZb1eYM4ZDVlnDec4qkdChsMvWNA4ttpFr21omdOuVxzo1IPKddlbFkYP7IUqpzj0L76utmxES4H8RDQ&h=P6YoYjpOaIlnEAHSHKNfAKyan26QIIFUDBtSkBPELM8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-d3dec209-ace3-11f1-bffd-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198175002088&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=lhNB5jvP3PTE5Xhh4LUQvi5V3xDtSR8VQtcDC8eqaMQ1UzIlM_yelq5KxAKTjdkNP2hKnEA6-WIPD0JOh6D7PaLIf4vlHMky2U477u7QvwqMHdBgvO1eHHTk--x7mss7LaMVzA76roraG6FnZW6O1b1JF9kF-xN_ve4NWCBK5OBe1jJs_O31tSNx-Qx_i5i2UDiKAFcmIsCoe5mnMw4io0TPUvbc1ahsK1iAfAU7hKsPQz4y-1IitJIpAwCf8I8cpGeb0bRdYUDPB54Q8Yjis7t30Wc8v7usp_L8DVafyI2fuy2VZ2mK2bI6J3nwUimGSV-vNJmKf56gkYCvqCe2Zw&h=9TRfHt1H-hq4PqMQAsrGPzDQp-2Itv8aicHpG0DijKM cache-control: - no-cache content-length: @@ -2389,7 +2481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:14 GMT + - Thu, 10 Sep 2026 06:50:16 GMT expires: - '-1' pragma: @@ -2401,11 +2493,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5cd04703-dc05-473d-9bfa-f3f1241e9025 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2fd59faa-dd5d-4966-95ee-6ec862b04d5f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C53753AD04FF41358293F7F3708C5F05 Ref B: SYD03EDGE0909 Ref C: 2026-04-21T05:32:13Z' + - 'Ref A: 66ACE0813DC049BCA2E680C4C9167F3E Ref B: SYD281080706040 Ref C: 2026-09-10T06:50:17Z' status: code: 200 message: OK @@ -2423,27 +2515,28 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:14 GMT + - Thu, 10 Sep 2026 06:50:19 GMT expires: - '-1' pragma: @@ -2455,20 +2548,20 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/e307d980-a42e-4e8a-836f-8ffbd6d8ceb6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/70a44497-4d48-4d58-b128-4cadc84860ff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 59DD2AE06E664EC49481EFF306942420 Ref B: SYD03EDGE1113 Ref C: 2026-04-21T05:32:14Z' + - 'Ref A: 1E023D6710D64231A21EB2548D631BDA Ref B: SYD281080705052 Ref C: 2026-09-10T06:50:17Z' status: code: 200 message: OK - request: - body: '{"properties": {"logging": {"logLevel": "Information", "auditLogStatus": - "Disabled"}, "mode": "readonly", "garbageCollection": {"enabled": "true", "schedule": - "0 0 * * *"}, "parent": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry", + body: '{"properties": {"mode": "readonly", "garbageCollection": {"enabled": "true", + "schedule": "0 0 * * *"}, "parent": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry", "syncProperties": {"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child", - "schedule": "* * * * *", "messageTtl": "P2D"}}}}' + "schedule": "* * * * *", "messageTtl": "P2D"}}, "logging": {"logLevel": "Information", + "auditLogStatus": "Disabled"}}}' headers: Accept: - application/json @@ -2485,25 +2578,26 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1242' + - '1243' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:16 GMT + - Thu, 10 Sep 2026 06:50:19 GMT expires: - '-1' pragma: @@ -2515,13 +2609,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/999d5eb0-6c1d-4215-8100-5012be2f7658 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c2334594-8677-49c7-bb20-e2e49e180fe3 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 071592EFB09747589D77D48CC09D06C1 Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:32:15Z' + - 'Ref A: C1D154C86DDA45AB82213D42BF796110 Ref B: SYD281080709036 Ref C: 2026-09-10T06:50:19Z' status: code: 200 message: OK @@ -2539,21 +2633,21 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:18.1310443Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4139' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:17 GMT + - Thu, 10 Sep 2026 06:50:21 GMT expires: - '-1' pragma: @@ -2565,9 +2659,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9A208D4CDF634B7AA218B196D9274EA6 Ref B: SYD03EDGE1312 Ref C: 2026-04-21T05:32:17Z' + - 'Ref A: F1DB9AE381154959A83D0B3524077C41 Ref B: SYD281080708023 Ref C: 2026-09-10T06:50:20Z' status: code: 200 message: OK @@ -2585,23 +2679,23 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:17 GMT + - Thu, 10 Sep 2026 06:50:21 GMT expires: - '-1' pragma: @@ -2613,9 +2707,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 24F00A4C6A834C948A63DF0EBE319D85 Ref B: SYD03EDGE1919 Ref C: 2026-04-21T05:32:18Z' + - 'Ref A: CC6DA8E7EDC643438A1D527D014788D0 Ref B: SYD281080709060 Ref C: 2026-09-10T06:50:21Z' status: code: 200 message: OK @@ -2633,23 +2727,23 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:19 GMT + - Thu, 10 Sep 2026 06:50:22 GMT expires: - '-1' pragma: @@ -2661,9 +2755,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6322F1E3D1774FA79D24AB3BBB1F2BE9 Ref B: SYD03EDGE1908 Ref C: 2026-04-21T05:32:18Z' + - 'Ref A: 6B963681B4364998B28D8DEFFCF14A00 Ref B: SYD281080712023 Ref C: 2026-09-10T06:50:22Z' status: code: 200 message: OK @@ -2681,25 +2775,26 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1242' + - '1243' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:19 GMT + - Thu, 10 Sep 2026 06:50:23 GMT expires: - '-1' pragma: @@ -2711,11 +2806,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/48fe28b5-2b2a-43ec-857c-c3e144331822 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8a0b678c-8855-407b-8fc2-d916a10e6d34 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: ACF31D1FC2AF44DD8FE4B4A2475E86F2 Ref B: SYD03EDGE1318 Ref C: 2026-04-21T05:32:19Z' + - 'Ref A: ABA4A203F6BA4E4B8D8A011C160B8E56 Ref B: SYD281080710036 Ref C: 2026-09-10T06:50:23Z' status: code: 200 message: OK @@ -2733,29 +2828,30 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:59.7442062+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:59.7442062+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:51.8783918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:51.8783918+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}]}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '3786' + - '3789' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:20 GMT + - Thu, 10 Sep 2026 06:50:24 GMT expires: - '-1' pragma: @@ -2767,11 +2863,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/56cae9bd-4a0a-4bf9-aae0-483ce88f4ce7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/93c80b51-f0e8-406d-be99-632a1fb2679d x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AE0B8BF2B3A34A14A7D126E833618EB8 Ref B: SYD03EDGE0917 Ref C: 2026-04-21T05:32:20Z' + - 'Ref A: ADE0D817D20E430986CC25B8525D16ED Ref B: SYD281080708062 Ref C: 2026-09-10T06:50:24Z' status: code: 200 message: OK @@ -2789,27 +2885,28 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:22 GMT + - Thu, 10 Sep 2026 06:50:25 GMT expires: - '-1' pragma: @@ -2821,11 +2918,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/d5b83ba3-edee-4656-9fde-f397fd1db4a9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f0efdf1d-843c-46d8-b85f-fb977bad8bd8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A262F5C282E9454DA0D16F5CB246C5C4 Ref B: SYD03EDGE1107 Ref C: 2026-04-21T05:32:21Z' + - 'Ref A: 89548EE6A5F54CA9881B00757861D3FD Ref B: SYD281080709042 Ref C: 2026-09-10T06:50:25Z' status: code: 200 message: OK @@ -2843,28 +2940,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:11.4874259+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:11.4874259+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:15.231686+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:15.231686+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '879' + - '855' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:23 GMT + - Thu, 10 Sep 2026 06:50:26 GMT expires: - '-1' pragma: @@ -2876,19 +2974,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/1c257969-3746-4024-95d7-9f36bc4f39f2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f6638cb4-485b-433a-91b0-2db9b5f5dff7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F7C34CBA90884AA59CA58E05BD4F47EB Ref B: SYD03EDGE0816 Ref C: 2026-04-21T05:32:22Z' + - 'Ref A: DB83BC03D0534BBE95CEF78CA516886E Ref B: SYD281080710025 Ref C: 2026-09-10T06:50:26Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/write", "gateway/grandchild/config/read", - "gateway/grandchild/message/write", "gateway/child/config/read", "gateway/grandchild/message/read", - "repositories/repo2/metadata/read", "repositories/repo2/content/read", "gateway/child/message/write", - "gateway/child/config/write", "gateway/child/message/read"]}}' + body: '{"properties": {"actions": ["repositories/repo2/content/read", "gateway/child/message/write", + "gateway/grandchild/config/read", "gateway/grandchild/config/write", "gateway/grandchild/message/write", + "gateway/child/message/read", "gateway/child/config/read", "gateway/child/config/write", + "gateway/grandchild/message/read", "repositories/repo2/metadata/read"]}}' headers: Accept: - application/json @@ -2905,30 +3003,31 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:24.1063817+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:24.1063817+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/child/config/write","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:27.2583126+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:27.2583126+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Updating","actions":["repositories/repo2/content/read","gateway/child/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463445599888&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=dSy-LeDsWmgieLS9Wa6f3N4llC_-f4TXs6BtfeG6IWpcHIqbo7VCHHtO02D_8BicMUxJ7vhYh6K5OKrc0JuROkBs-0eO9uGRhIZA_WH4s9S2N4qk_1-yAdgtGyuh1XGrcvlPSqQnKzvxTVF9mwelRvdnREPCFLee181dBNohB9jNOqJd7ndrusAUzMBb5E4Xnh3Q7SWTo99MVxUvGuim9GvB_u_ng4DeGyRNFgj5buZ3XHaDLcbKX3vf0sQB0l1eJFhhYQvnu5K1SfsiAX6ch1ZPJG03LCmMCH7H5gAd9Mexlkv1AIR-n5wPCpgUkUV7ANyEy_NbtlWZLtyznJxxQA&h=9MKoVSldWOaaMnnlNxhP0TD0UtlPaj5kj5lE1Ce6oaU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198276020627&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=eM2iEQ5qVAb0DJXHidbVLk-2XJJpaU8xDge-pjblvuVbQ8jcrD7MNXImAc9y2D6iYElGadZQ0_hWv8VEZUPhh1T-WpX0DOfbtP60m3f3-5r9oOFWLpsapx3hqgpiCiJ0QgF7bBMMoc6hOtT87NQ5GksDShxwwPJzU4OfKcAUoOW5tdaQnyd4UOnopVUniUf-tsVV80gV9-lSa4igKGytRBvXw9GGRIusdlxiq_RY6DKxeshpUnbK_hl3TC2_g_pB9W6x0ZwBfaxSLa3UV8eEy-Sel6wTo-LO4ISqYNNfQhGa6rkpLhxiA7_Uu662g9f60jpAxZUW4QI0UQe7WGIqJg&h=Gk17rWe4i1mqglcHRJq5oYnbcefJDQYXR6QFfF4hQqs cache-control: - no-cache content-length: - - '1014' + - '992' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:23 GMT + - Thu, 10 Sep 2026 06:50:27 GMT expires: - '-1' pragma: @@ -2940,13 +3039,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/4b4ff3d6-c291-4097-b8f2-1f5203d95d75 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c560c9e9-290b-420c-9004-842547787472 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 055472BE719B4A5EBEDA9D6AFB019363 Ref B: SYD03EDGE2007 Ref C: 2026-04-21T05:32:23Z' + - 'Ref A: D7C4C3FAA2784F58BD9A33AFB5004AAE Ref B: SYD281080710052 Ref C: 2026-09-10T06:50:27Z' status: code: 201 message: Created @@ -2964,9 +3063,9 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463445599888&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=dSy-LeDsWmgieLS9Wa6f3N4llC_-f4TXs6BtfeG6IWpcHIqbo7VCHHtO02D_8BicMUxJ7vhYh6K5OKrc0JuROkBs-0eO9uGRhIZA_WH4s9S2N4qk_1-yAdgtGyuh1XGrcvlPSqQnKzvxTVF9mwelRvdnREPCFLee181dBNohB9jNOqJd7ndrusAUzMBb5E4Xnh3Q7SWTo99MVxUvGuim9GvB_u_ng4DeGyRNFgj5buZ3XHaDLcbKX3vf0sQB0l1eJFhhYQvnu5K1SfsiAX6ch1ZPJG03LCmMCH7H5gAd9Mexlkv1AIR-n5wPCpgUkUV7ANyEy_NbtlWZLtyznJxxQA&h=9MKoVSldWOaaMnnlNxhP0TD0UtlPaj5kj5lE1Ce6oaU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198276020627&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=eM2iEQ5qVAb0DJXHidbVLk-2XJJpaU8xDge-pjblvuVbQ8jcrD7MNXImAc9y2D6iYElGadZQ0_hWv8VEZUPhh1T-WpX0DOfbtP60m3f3-5r9oOFWLpsapx3hqgpiCiJ0QgF7bBMMoc6hOtT87NQ5GksDShxwwPJzU4OfKcAUoOW5tdaQnyd4UOnopVUniUf-tsVV80gV9-lSa4igKGytRBvXw9GGRIusdlxiq_RY6DKxeshpUnbK_hl3TC2_g_pB9W6x0ZwBfaxSLa3UV8eEy-Sel6wTo-LO4ISqYNNfQhGa6rkpLhxiA7_Uu662g9f60jpAxZUW4QI0UQe7WGIqJg&h=Gk17rWe4i1mqglcHRJq5oYnbcefJDQYXR6QFfF4hQqs response: body: string: '{"status":"Succeeded"}' @@ -2976,9 +3075,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463455886005&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=lLJblCXLPNfVpQPjzGulSk_VE2dO0_6s_LN9cnqwUcGwYDpZ1wszdnI4brKJK81fENcQlu5buWQaiDFigv5Ha2wpwCJ3Xvsmfa8UmrxGfiuMKq_cflwoLJV-kSecsAEIJxk8GamecBQiMwbP4YhDNKY8e8jx8cQ8b3UtVTYDBZNHJoUfT1z-l6TIo0_BmPeDteHqP6YLMZlN4W6pXoaUWy7yzpBxKYKd3FYrH8erjSMDCDt9YH2CfBes955hzQSNDvHqfJm5132w9TwxdfwZAaCAHTXI8yFffIl3F_n3JJ5Vedu39yIDCFfItVRdeQh-haoL_YnwTdZ7XJc8eY5bzw&h=DonSLmNF-Iuv4l_Ji2eRAVutM77equhemyVJBIxl4cc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198284960168&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=n9h6P9nFEVKw-COXiG1tNoLw7giY9CbAi_RBtGmh4WFv57YzLtpBYg7HY1h6arjPMnAuzu1FEh_2yWjtrrohQyn0Z2E7IeK_RXdFPojOQnSlrEcuwUnawF-jg46WbMlp9BCoXfKrbn7wjXwMhUYOlJszk6mmPg4U5TsEAaycOdttHc3JyJO6RFnkdkGw5QNhQ5nyJxNfUD6X_V8fL65oEvWm9GCuiqgZDP7jb6IAxk0HHojVzGjE1H4aLJbMJBBj3e7gL6tl5jpLeTIonBCUyEVSLZ4TU0aRUmACT30cSfHPyGWyDA57HtemitDq8w_0JIYYdy0hTZd_TyA6cPC7iA&h=e_z7__PeejwgYTN4PVg3c5qJlOne-_DsvWt09zaIQu8 cache-control: - no-cache content-length: @@ -2986,7 +3086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:24 GMT + - Thu, 10 Sep 2026 06:50:28 GMT expires: - '-1' pragma: @@ -2998,11 +3098,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/ef3bddea-e864-4436-8b58-635588c03fba + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/31b4e4a7-dd98-434a-add1-73a3c0482f9e x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 807C4B4246864B38AFCBA30C713CA5F8 Ref B: SYD03EDGE1709 Ref C: 2026-04-21T05:32:24Z' + - 'Ref A: 341A8C66FC034CA1BB3E24EBA84F35C4 Ref B: SYD281080710036 Ref C: 2026-09-10T06:50:28Z' status: code: 200 message: OK @@ -3020,28 +3120,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:24.1063817+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:24.1063817+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/child/config/write","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:27.2583126+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:27.2583126+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","gateway/child/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1015' + - '993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:26 GMT + - Thu, 10 Sep 2026 06:50:28 GMT expires: - '-1' pragma: @@ -3053,11 +3154,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/a2d499d4-b655-426d-810f-16735c2b553c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/96b15064-5b36-4a7b-9225-29dc5a42fb6f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3C7678E2D64D4E83B5DD7D199BF56450 Ref B: SYD03EDGE1015 Ref C: 2026-04-21T05:32:25Z' + - 'Ref A: 10193621CBE54E4C9C4D77D41193613F Ref B: SYD281080708060 Ref C: 2026-09-10T06:50:28Z' status: code: 200 message: OK @@ -3075,27 +3176,28 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '840' + - '818' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:26 GMT + - Thu, 10 Sep 2026 06:50:29 GMT expires: - '-1' pragma: @@ -3107,11 +3209,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/d66bd49c-3d51-4f80-89ea-bbb12d6648b1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b55cd33c-4011-4f42-b9d1-ee6c75596b36 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 975820F17C314493917347F7CF441796 Ref B: SYD03EDGE1914 Ref C: 2026-04-21T05:32:26Z' + - 'Ref A: FC2A6706181949E986BAA2EA20BBFA1B Ref B: SYD281080707023 Ref C: 2026-09-10T06:50:30Z' status: code: 200 message: OK @@ -3129,28 +3231,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:06.8576477+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:06.8576477+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/child/config/read","repositories/repo2/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/message/read","repositories/repo2/metadata/read","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:58.2306635+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:58.2306635+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1100' + - '1078' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:28 GMT + - Thu, 10 Sep 2026 06:50:30 GMT expires: - '-1' pragma: @@ -3162,21 +3265,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/ab337222-3b20-49ba-ba50-a5bd5e86befe + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/60878cb5-f89f-4845-8b2b-9f936d9fe179 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AACF4C7B17AD4DD4834FA2A8ABB9235C Ref B: SYD03EDGE2115 Ref C: 2026-04-21T05:32:27Z' + - 'Ref A: F643AFD2648646A79A75508B2431417F Ref B: SYD281080710034 Ref C: 2026-09-10T06:50:30Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/read", "gateway/grandchild/message/write", - "gateway/rootregistry/config/read", "repositories/repo2/content/read", "gateway/rootregistry/message/write", - "repositories/repo2/metadata/read", "gateway/child/message/read", "repositories/repo1/metadata/read", - "gateway/rootregistry/config/write", "gateway/grandchild/config/write", "repositories/repo1/content/read", - "gateway/child/config/read", "gateway/grandchild/message/read", "gateway/child/config/write", - "gateway/child/message/write", "gateway/rootregistry/message/read"]}}' + body: '{"properties": {"actions": ["gateway/grandchild/config/read", "gateway/grandchild/config/write", + "gateway/rootregistry/config/write", "repositories/repo1/content/read", "gateway/child/message/read", + "gateway/child/config/read", "gateway/rootregistry/config/read", "gateway/grandchild/message/write", + "repositories/repo2/metadata/read", "repositories/repo2/content/read", "gateway/child/message/write", + "gateway/rootregistry/message/read", "repositories/repo1/metadata/read", "gateway/rootregistry/message/write", + "gateway/child/config/write", "gateway/grandchild/message/read"]}}' headers: Accept: - application/json @@ -3193,30 +3296,31 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:29.4706592+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:29.4706592+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/rootregistry/config/read","repositories/repo2/content/read","gateway/rootregistry/message/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:31.5675287+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:31.5675287+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/config/read","gateway/grandchild/message/write","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463498300307&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=crP50Q0pMMKBFZLrlf4rQeTRsvpOX3JyrL0WcqyXD2wlaIfva0_W6rFdpdVM9WE04A8ItdZ59-5hHPGkaGQieXFzh8dhkY7doLlVIbw_q2mX-S6Cs1tW35L85hH3o-1RBDmG2w9hsbJJ070YyhJV4rOnF400XuTkrqPReZDFdjGldjaNncq3bYE7O148eBNfrflC7tp1CXdHU5cvx2kfKcyJ7KSb6pHXPmtmLt6n3lhCyBivnm2k8sRikYFRuKjc9QmPfk9cSA4EnA_YR7uQnfQJn-Hk00W4AHRT8UVFcDd50H6dt_D-p5fFGHZ6ud9D83tTtpkT89w3dn7MWBOQ0A&h=UlzUU7fPsKC1ZTHium7hisJ4y5ySHoHebRH_PDytn9E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198333175493&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LDcecq4Opq7lpDCJxTSFPVMGQIIOnzJ0UxM_Gin95YWyL_tBEmBCQlgo2dfIsrr0PcXBwUC5yNpvCf7zsP3JRIq4EB3_qMm6ev5RRbyFlTBWoDc1CmG7cOXMhluXIMvW34PhKzUr1g4VGts5B3eUG_AjEToSnwdzcZakfOvOFrhKVKLn8CVqNjb0zvghAcikk_jmsAyDVkpXsETv0yiFhMBk279J9bRGnuNGFEn1oZrfkg90ctMcpMRQemFoMUt1Wl0WGTKZUs9_dcP9a0F0cOjqfjUWIJ-ZqqNVv2mCtgkH6xeaGEWMQnMgWCVXfafjPLQ4Cqa9M_mdUufTgLqUoA&h=ZudF4EfBKN7MBzflQCA5g_g5PIZ0Pe1-YUaaDdScNWk cache-control: - no-cache content-length: - - '1235' + - '1213' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:29 GMT + - Thu, 10 Sep 2026 06:50:32 GMT expires: - '-1' pragma: @@ -3228,13 +3332,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/2254dc11-9ae0-40e7-ad32-2ff121b85da1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4d404b3f-08c7-4772-8227-6845a97c2194 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 65CF2EABD0544645AA2FA55DB557BBA9 Ref B: SYD03EDGE1314 Ref C: 2026-04-21T05:32:28Z' + - 'Ref A: 1F8F5267EF4B4601A21A329F238C124B Ref B: SYD281080709034 Ref C: 2026-09-10T06:50:31Z' status: code: 201 message: Created @@ -3252,9 +3356,66 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463498300307&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=crP50Q0pMMKBFZLrlf4rQeTRsvpOX3JyrL0WcqyXD2wlaIfva0_W6rFdpdVM9WE04A8ItdZ59-5hHPGkaGQieXFzh8dhkY7doLlVIbw_q2mX-S6Cs1tW35L85hH3o-1RBDmG2w9hsbJJ070YyhJV4rOnF400XuTkrqPReZDFdjGldjaNncq3bYE7O148eBNfrflC7tp1CXdHU5cvx2kfKcyJ7KSb6pHXPmtmLt6n3lhCyBivnm2k8sRikYFRuKjc9QmPfk9cSA4EnA_YR7uQnfQJn-Hk00W4AHRT8UVFcDd50H6dt_D-p5fFGHZ6ud9D83tTtpkT89w3dn7MWBOQ0A&h=UlzUU7fPsKC1ZTHium7hisJ4y5ySHoHebRH_PDytn9E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198333175493&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LDcecq4Opq7lpDCJxTSFPVMGQIIOnzJ0UxM_Gin95YWyL_tBEmBCQlgo2dfIsrr0PcXBwUC5yNpvCf7zsP3JRIq4EB3_qMm6ev5RRbyFlTBWoDc1CmG7cOXMhluXIMvW34PhKzUr1g4VGts5B3eUG_AjEToSnwdzcZakfOvOFrhKVKLn8CVqNjb0zvghAcikk_jmsAyDVkpXsETv0yiFhMBk279J9bRGnuNGFEn1oZrfkg90ctMcpMRQemFoMUt1Wl0WGTKZUs9_dcP9a0F0cOjqfjUWIJ-ZqqNVv2mCtgkH6xeaGEWMQnMgWCVXfafjPLQ4Cqa9M_mdUufTgLqUoA&h=ZudF4EfBKN7MBzflQCA5g_g5PIZ0Pe1-YUaaDdScNWk + response: + body: + string: '{"status":"Updating"}' + headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, + 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198342147643&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RN7kdAYUCsz3Z662h2Qb4qxmbfQH6d95S4toiv9gSOk8vmqXsb6hF8iGGOrU2rc4khtbjy6mEy7Balz5XSgxp5T5bj2DSLieKfwP6ztXO9SK1t6n3QlifIpys5NoCapcWqVrlpfprvSPwzz2YnTBxZv5jMrWtBbkINLWXUtoyHNcTeZp-m9ZO3zHd4tpVKva2gRRx3dfQ3987T7lK9lKfEKOyq2c7beEgEXsqmY_iG4QvGtAajrFK1fJPk4zU5dO3TYCrBJrKZfOuf79_kqp2Wk3_PAB7sbHg3ppFaRnnKfMgHG1FZypQdzBAcE_5j1sVbFBWRj-q7efXjm5c8d2zg&h=SiqZgsFYFUFeo9H4ch8HxtEMAN3UfamNPeKkth6KSa8 + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:50:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7aa1a300-0820-4a51-9a9e-5eb4243a23ac + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 287B6FE2C8DF40339A8898D171CA9529 Ref B: SYD281080707034 Ref C: 2026-09-10T06:50:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr connected-registry create + Connection: + - keep-alive + ParameterSetName: + - -n -p -r --repository -m + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198333175493&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LDcecq4Opq7lpDCJxTSFPVMGQIIOnzJ0UxM_Gin95YWyL_tBEmBCQlgo2dfIsrr0PcXBwUC5yNpvCf7zsP3JRIq4EB3_qMm6ev5RRbyFlTBWoDc1CmG7cOXMhluXIMvW34PhKzUr1g4VGts5B3eUG_AjEToSnwdzcZakfOvOFrhKVKLn8CVqNjb0zvghAcikk_jmsAyDVkpXsETv0yiFhMBk279J9bRGnuNGFEn1oZrfkg90ctMcpMRQemFoMUt1Wl0WGTKZUs9_dcP9a0F0cOjqfjUWIJ-ZqqNVv2mCtgkH6xeaGEWMQnMgWCVXfafjPLQ4Cqa9M_mdUufTgLqUoA&h=ZudF4EfBKN7MBzflQCA5g_g5PIZ0Pe1-YUaaDdScNWk response: body: string: '{"status":"Succeeded"}' @@ -3264,9 +3425,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463506716650&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=QnJlyPlRQFixN_z1Kn_hFK7EUCClc17wYYbisUVVJh_UVLpFxsVifDIpvXGvMGsnkNZZq8Tj9PufV3zQPGc7CaL446g0H8n45UiIWYAD0JoFN_jpR8bqBU_qzdYAtzm43Hox2t34glo6vwDn44ZVm6gvwSs1DXjlW45WiMY7_LnYOVGQ97zWRctPfFqfjsnoRr1Tp_5KJI8QL3Ir7vMFPaTJrvBpCRCA6MijokyDJFrOAOII08SOHKSKKtmeWFj8JQzR3Y6BFE-p1XkFLYD0_vENkH8ptusiDrn0tiLXi_C4qXg0DPXX4HnJsvufuD7OfjNZ63sGB1DfVF-qq9h_Ww&h=AkZSl9Qf-yeqaHyxQfFx5Hj9opyEld69tEOpgCKNn1Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198451030156&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=YGIj4sBjGBiF3QiKyonpnO3fxxFOAw-JAQswsRQj5nZ6XG-fKM0RFznhqrMVDybZPmaIF06HACqlZ5XHEzamswRipAzeY26saxEc7VssAb-pAu9V1RFSix8e833ihx5tempy2_nEkgM2Bnuvlkgondj4-_-wRvr0ozfQ3BW3OHZL9EA2wH_PIsbh_h488PhFMy6sNNIdhUlQI0rplkHtgak0NqmvzTVBDdpszfKrKfcdNpl_kLa5KgfAtzTs7knjBhbF9kCDvv6N8_Q9LWuiS52Mr-GWw6z7Z5ZcfMkEMaPuirKtRfCU0l6xrarOIC7J1EQoArjZx9Pbj3CisLRaOw&h=4cPjfEAOCfaWM586BmcbTY81hpbNlMoZu73CqKHMeu4 cache-control: - no-cache content-length: @@ -3274,7 +3436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:30 GMT + - Thu, 10 Sep 2026 06:50:45 GMT expires: - '-1' pragma: @@ -3286,11 +3448,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/55c4a51e-3464-445d-830b-121b2e245f37 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/dd9aa76a-1f78-4fdc-a1c9-c92aab2c35b3 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 50F0ADB39F894BA7A538AAC0402AED85 Ref B: SYD03EDGE1421 Ref C: 2026-04-21T05:32:30Z' + - 'Ref A: C226703AA7844FAC8278539F524375D4 Ref B: SYD281080712062 Ref C: 2026-09-10T06:50:44Z' status: code: 200 message: OK @@ -3308,28 +3470,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:29.4706592+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:29.4706592+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/rootregistry/config/read","repositories/repo2/content/read","gateway/rootregistry/message/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:31.5675287+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:31.5675287+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/config/read","gateway/grandchild/message/write","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1236' + - '1214' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:30 GMT + - Thu, 10 Sep 2026 06:50:45 GMT expires: - '-1' pragma: @@ -3341,11 +3504,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/edac8925-9002-492a-a817-2e74506c94bd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/689a3e9a-c472-49f3-9945-58bf838a27a7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: EE017859CF554EC797D866FC3E6D39BB Ref B: SYD03EDGE0917 Ref C: 2026-04-21T05:32:30Z' + - 'Ref A: 8341BBE921AB492BA7073C0930C2C395 Ref B: SYD281080710040 Ref C: 2026-09-10T06:50:45Z' status: code: 200 message: OK @@ -3363,9 +3526,9 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource grandchild @@ -3376,7 +3539,8 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -3384,7 +3548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:31 GMT + - Thu, 10 Sep 2026 06:50:46 GMT expires: - '-1' pragma: @@ -3396,19 +3560,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/433c583a-92d3-46ff-a910-9ea662c49206 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/33e9e0c8-a4b7-4f82-9544-3baf6c3dcbe2 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F48F49BA585D4C1494B6F7AF33FA8D5D Ref B: SYD03EDGE1921 Ref C: 2026-04-21T05:32:31Z' + - 'Ref A: 495DABEF9BC74030BED4D2D21DDEA667 Ref B: SYD281080708031 Ref C: 2026-09-10T06:50:46Z' status: code: 404 message: Not Found - request: - body: '{"properties": {"actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", + body: '{"properties": {"description": "Created by connected registry sync token: + grandchild", "actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", "gateway/grandchild/config/read", "gateway/grandchild/config/write", "gateway/grandchild/message/read", - "gateway/grandchild/message/write"], "description": "Created by connected registry - sync token: grandchild"}}' + "gateway/grandchild/message/write"]}}' headers: Accept: - application/json @@ -3425,28 +3589,29 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:32.9293912+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:32.9293912+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.2430893+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.2430893+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '914' + - '892' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:32 GMT + - Thu, 10 Sep 2026 06:50:46 GMT expires: - '-1' pragma: @@ -3458,18 +3623,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/92536c9b-b4a5-408d-a9ea-463043ee3c1f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e9d634b2-307e-4d78-b44e-c3b8106abb85 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 615C43F32E36485A87C3C0D8E9CF973E Ref B: SYD03EDGE1722 Ref C: 2026-04-21T05:32:32Z' + - 'Ref A: 7458E0977B3F4A85A5659E14EBFEAD4B Ref B: SYD281080705029 Ref C: 2026-09-10T06:50:47Z' status: code: 200 message: OK - request: - body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild"}}' + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild", + "status": "enabled"}}' headers: Accept: - application/json @@ -3486,29 +3652,30 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:33.4658788+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:33.4658788+00:00"},"properties":{"creationDate":"2026-04-21T05:32:33.5612087+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.9469027+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.9469027+00:00"},"properties":{"creationDate":"2026-09-10T06:50:48.2046935+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463536534300&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=O0PNOaw0nRQdQWfrTHKTjFnvxB6qc_BUooRGYe5410nJwSC_hRIp8sVFXH7qkIzzWaaaYsb_UIsZ3fKC3UbHd8q_ziIFPBNQXzUceUbKSH5M_8JG7pfvmWiGwD_6iyrea243jCCDHN_0sIDCKwGM3H7uoboFUMs9lzSAFQOgEUhMcnvbPMm-TqE-GNyhz3osEZVwBYgDdpeSk9PAG_u2qeNjq_mJK9b52KKR9a4HoXEAd4bRdTR3z_JHkiCKvw-WOF9aFfMyKwdrHs7-37RuA2bg2fnz_2RM2CEqwESYnYG34KtIwK3dZLspFOyOCyyyfh89IBmdXdx-iW09k0ponQ&h=i1uD1d0_NJ0ABFRnd51YPSBBL_A05HnL9Xs1XbEir5k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198483062902&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=tKWWj_f-U-J3t8etn4A72dmqYhTbzwPgByJYRpNCQAJv8r__bZ2DkH9XR58DzNHvYyvvaGwCY43jn46vvPB57BnZUenCl6ObNiRwxWSP5uA3T7F-ASj8GzJrIaVUV_mi-mgZrIQbGVfJxG3lFyOHu6hggpdpjgwVfhJH-lQW6ijmaxgmQtocV8NVrTIEEyFCwfcPeUmQ2Q3Ly959DV5vNHgt6kvXD56kv_Nc3TY8qpClJNwRZNtwi3tBQdSfybqB0IiKzelpQp9g68R5XZNQL54ya3xJT7H97ndJ_-eSH8o4o0dwdTgPe004HyBuNWLFIVDZS1jirYrVXcXjekx6jQ&h=65FZoZr-Nc2uyRFn9gvuxfJf69h_OXQoLNMFS5y3DqE cache-control: - no-cache content-length: - - '832' + - '810' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:32 GMT + - Thu, 10 Sep 2026 06:50:47 GMT expires: - '-1' pragma: @@ -3520,13 +3687,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/444fde7f-1f75-449f-bae6-5bdae291e7e1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d8683898-71d4-43e3-84cd-fc2fd6c65a58 x-ms-ratelimit-remaining-subscription-global-writes: - - '2998' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '198' + - '799' x-msedge-ref: - - 'Ref A: 5EA71895B18A4866B8B3DD2AFF4C81D1 Ref B: SYD03EDGE0712 Ref C: 2026-04-21T05:32:33Z' + - 'Ref A: 9D77AB73ACE343F3B4FF4E0251ED3C0F Ref B: SYD281080707025 Ref C: 2026-09-10T06:50:47Z' status: code: 201 message: Created @@ -3544,9 +3711,9 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463536534300&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=O0PNOaw0nRQdQWfrTHKTjFnvxB6qc_BUooRGYe5410nJwSC_hRIp8sVFXH7qkIzzWaaaYsb_UIsZ3fKC3UbHd8q_ziIFPBNQXzUceUbKSH5M_8JG7pfvmWiGwD_6iyrea243jCCDHN_0sIDCKwGM3H7uoboFUMs9lzSAFQOgEUhMcnvbPMm-TqE-GNyhz3osEZVwBYgDdpeSk9PAG_u2qeNjq_mJK9b52KKR9a4HoXEAd4bRdTR3z_JHkiCKvw-WOF9aFfMyKwdrHs7-37RuA2bg2fnz_2RM2CEqwESYnYG34KtIwK3dZLspFOyOCyyyfh89IBmdXdx-iW09k0ponQ&h=i1uD1d0_NJ0ABFRnd51YPSBBL_A05HnL9Xs1XbEir5k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198483062902&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=tKWWj_f-U-J3t8etn4A72dmqYhTbzwPgByJYRpNCQAJv8r__bZ2DkH9XR58DzNHvYyvvaGwCY43jn46vvPB57BnZUenCl6ObNiRwxWSP5uA3T7F-ASj8GzJrIaVUV_mi-mgZrIQbGVfJxG3lFyOHu6hggpdpjgwVfhJH-lQW6ijmaxgmQtocV8NVrTIEEyFCwfcPeUmQ2Q3Ly959DV5vNHgt6kvXD56kv_Nc3TY8qpClJNwRZNtwi3tBQdSfybqB0IiKzelpQp9g68R5XZNQL54ya3xJT7H97ndJ_-eSH8o4o0dwdTgPe004HyBuNWLFIVDZS1jirYrVXcXjekx6jQ&h=65FZoZr-Nc2uyRFn9gvuxfJf69h_OXQoLNMFS5y3DqE response: body: string: '{"status":"Succeeded"}' @@ -3556,9 +3723,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-761be03a-3d43-11f1-90bf-00155d7ffebd?api-version=2026-03-01-preview&t=639123463547827274&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=S5Je6ACFzC9BiEkpaLBh_iPzi7KcBV8yWU75OcGn7vPFK7XzKv9qWTx1kNJi3YSHbsjYGVlY16cVKWUFHF70-xQ89UMjZxHO5DMdqslOvabA04uiE2de0GQf97MUTqhZSatunFHXe6XReK-T1B53EqTd9CuwCOmMS0Bc6a-QSN9ke0kRkXlXFHbqU7Y-Urc2uKsnUrdPQCDzts-WZ_z8QGi2Ijxv9W6MZ49U2BCpFrAy3WUG_ieETcntCfOfDp66qyQqqLvwyxGgRgEt18b_NV88k8hKNFfZuwMLIt27SYznE-3H_fPdgQVyYCmceJtbaJbWrU2wfxowQIkSJiscFQ&h=s4qDtF8yZzkXqp4TGJuxwOZ7iV26wiSCha50pgn_U0Q + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-e4ba5b0a-ace3-11f1-bf90-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198500835117&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=lGM8XXPwCPnUC122Bou0tCft6O0_6UhTZkCFWknRXIkuKAGGfVW7B2MVIBigMNw2MisskllGYaS1KhvyUsJBeCjFdqev6v_hRpbUN6x_A_9H9UzOyL84wLVPwbHAhKgSktt1fEkpQa5P1ZscQjqHfaG5jeEpQpE1jLrx5maRlzYRcLyTLLP5H4qKV5jHlie__8Hl_r4awcGKGGgxlbm_H9rn00kBDO643Tt6Xs27UhNJ1fikwkiATsRaIV364febkUikzNE7mK5A7M7srQqcbJepRJa348DgxgdbrY87r5oxF-YzzGZC_Auxwi4NokAQynfyYCXNGEUYdf8Deul3Mw&h=iPfm2wMnG2L8uUEA8_NQZY3lbh0_8Mjo-dZ9sYrDo7M cache-control: - no-cache content-length: @@ -3566,7 +3734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:33 GMT + - Thu, 10 Sep 2026 06:50:49 GMT expires: - '-1' pragma: @@ -3578,11 +3746,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/dd716570-0ccc-4469-96f6-d991a88855f6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e252dd74-488f-4aea-b17a-3d060cca9a29 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 034D7AB997F64156ACACE03DB6D03ADA Ref B: SYD03EDGE1909 Ref C: 2026-04-21T05:32:34Z' + - 'Ref A: 6991E7248AC245B396680C6C28AFC9FE Ref B: SYD281080705054 Ref C: 2026-09-10T06:50:48Z' status: code: 200 message: OK @@ -3600,27 +3768,28 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:33.4658788+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:33.4658788+00:00"},"properties":{"creationDate":"2026-04-21T05:32:33.5612087+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.9469027+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.9469027+00:00"},"properties":{"creationDate":"2026-09-10T06:50:48.2046935+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '833' + - '811' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:34 GMT + - Thu, 10 Sep 2026 06:50:50 GMT expires: - '-1' pragma: @@ -3632,20 +3801,20 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5c0df33b-3710-4f72-b697-3c67db4aa586 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f680b280-2d8a-4707-ab69-968414f85e16 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D152184455F5476082892EF955BBF0E0 Ref B: SYD03EDGE0715 Ref C: 2026-04-21T05:32:35Z' + - 'Ref A: 10071C5FA79546469CE900CF0026A68E Ref B: SYD281080711042 Ref C: 2026-09-10T06:50:50Z' status: code: 200 message: OK - request: - body: '{"properties": {"logging": {"logLevel": "Information", "auditLogStatus": - "Disabled"}, "mode": "readonly", "garbageCollection": {"enabled": "true", "schedule": - "0 0 * * *"}, "parent": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child", + body: '{"properties": {"mode": "readonly", "garbageCollection": {"enabled": "true", + "schedule": "0 0 * * *"}, "parent": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child", "syncProperties": {"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild", - "schedule": "* * * * *", "messageTtl": "P2D"}}}}' + "schedule": "* * * * *", "messageTtl": "P2D"}}, "logging": {"logLevel": "Information", + "auditLogStatus": "Disabled"}}}' headers: Accept: - application/json @@ -3662,25 +3831,26 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:36.6833803+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:36.6833803+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:51.5072279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:51.5072279+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1250' + - '1251' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:36 GMT + - Thu, 10 Sep 2026 06:50:51 GMT expires: - '-1' pragma: @@ -3692,13 +3862,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/d8c1f99e-4225-4682-8c48-12e83ac8adbe + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/725673d2-d522-4397-b262-ed56d65d7641 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: BF3A7AA14ED240CB9DA445E23BAE424F Ref B: SYD03EDGE1116 Ref C: 2026-04-21T05:32:36Z' + - 'Ref A: D256A6664CFB45A0932CA821CA338ACF Ref B: SYD281080705052 Ref C: 2026-09-10T06:50:51Z' status: code: 200 message: OK @@ -3716,21 +3886,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:24.260223Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '3998' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:37 GMT + - Thu, 10 Sep 2026 06:50:52 GMT expires: - '-1' pragma: @@ -3742,9 +3912,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8C4E4BC0F2C04178A5D55BE91DC02AD8 Ref B: SYD03EDGE0714 Ref C: 2026-04-21T05:32:37Z' + - 'Ref A: A2B37A8860F743BE9F6BD87401906B9C Ref B: SYD281080705040 Ref C: 2026-09-10T06:50:52Z' status: code: 200 message: OK @@ -3762,23 +3932,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:38 GMT + - Thu, 10 Sep 2026 06:50:52 GMT expires: - '-1' pragma: @@ -3790,9 +3960,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B751CAF60FC348DA81B1F8B1F329EEEE Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:32:38Z' + - 'Ref A: 821DD4E493EC4358B96D1214754FE41A Ref B: SYD281080709052 Ref C: 2026-09-10T06:50:53Z' status: code: 200 message: OK @@ -3810,31 +3980,32 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:59.7442062+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:59.7442062+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:36.6833803+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:36.6833803+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:51.8783918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:51.8783918+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:51.5072279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:51.5072279+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}]}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '5037' + - '5041' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:39 GMT + - Thu, 10 Sep 2026 06:50:53 GMT expires: - '-1' pragma: @@ -3846,11 +4017,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/0ebb4926-db2b-4924-a03f-b4b8c17078f9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a2299240-b694-447a-bbef-34017221b754 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2CCB5F92E1B246EA837C6A536FCCC1FE Ref B: SYD03EDGE1720 Ref C: 2026-04-21T05:32:38Z' + - 'Ref A: 2C8D99ED831D416AA2F59B0905F70A89 Ref B: SYD281080709060 Ref C: 2026-09-10T06:50:54Z' status: code: 200 message: OK @@ -3868,21 +4039,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:24.260223Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4594' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:39 GMT + - Thu, 10 Sep 2026 06:50:55 GMT expires: - '-1' pragma: @@ -3894,9 +4065,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 30AEC061AB234449B42D5496C8CD18F8 Ref B: SYD03EDGE1909 Ref C: 2026-04-21T05:32:40Z' + - 'Ref A: F7C50DFC2DEA447AB6F10F7E01F49064 Ref B: SYD281080705040 Ref C: 2026-09-10T06:50:54Z' status: code: 200 message: OK @@ -3914,23 +4085,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:41 GMT + - Thu, 10 Sep 2026 06:50:55 GMT expires: - '-1' pragma: @@ -3942,9 +4113,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: D7528A66C006487C8384DFEC8439724E Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:32:40Z' + - 'Ref A: ABE9E8C9B82F477BB408CDD1D8C3E74C Ref B: SYD281080706023 Ref C: 2026-09-10T06:50:55Z' status: code: 200 message: OK @@ -3962,23 +4133,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:42 GMT + - Thu, 10 Sep 2026 06:50:56 GMT expires: - '-1' pragma: @@ -3990,9 +4161,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CDF5CA7EBE7840A1ABE2952C17BB0C71 Ref B: SYD03EDGE2110 Ref C: 2026-04-21T05:32:41Z' + - 'Ref A: 3A5BE5FED9F649E2B78703944849F043 Ref B: SYD281080708031 Ref C: 2026-09-10T06:50:56Z' status: code: 200 message: OK @@ -4010,25 +4181,26 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:59.7442062+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:59.7442062+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:51.8783918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:51.8783918+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1380' + - '1381' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:42 GMT + - Thu, 10 Sep 2026 06:50:57 GMT expires: - '-1' pragma: @@ -4040,11 +4212,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/df9d207a-0de0-4165-a33b-9f96e4310b4e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e9c5a29e-bb12-43fb-bdaa-40b691914354 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7E3202AE412447A6AB993FCE56DFFF39 Ref B: SYD03EDGE2109 Ref C: 2026-04-21T05:32:42Z' + - 'Ref A: D8734E17447341709A7CB63CAA363E04 Ref B: SYD281080708023 Ref C: 2026-09-10T06:50:57Z' status: code: 200 message: OK @@ -4062,27 +4234,28 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:55.2638904+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:55.2638904+00:00"},"properties":{"creationDate":"2026-04-21T05:31:55.3400681+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:46.2445424+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:46.2445424+00:00"},"properties":{"creationDate":"2026-09-10T06:49:47.3344367+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '846' + - '824' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:43 GMT + - Thu, 10 Sep 2026 06:50:58 GMT expires: - '-1' pragma: @@ -4094,11 +4267,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/b486cff2-777c-4eb8-8d75-7e9c2de1eff2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a19dcc2c-8a5f-4efb-b7c4-5f634bbac4ab x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9FFB472530F94A3ABC32096F1800ED2E Ref B: SYD03EDGE0713 Ref C: 2026-04-21T05:32:43Z' + - 'Ref A: FCD4C42A8BC743F3B414E064471969D3 Ref B: SYD281080706025 Ref C: 2026-09-10T06:50:58Z' status: code: 200 message: OK @@ -4116,21 +4289,21 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:24.260223Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4594' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:45 GMT + - Thu, 10 Sep 2026 06:51:00 GMT expires: - '-1' pragma: @@ -4142,9 +4315,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 59DE6551FE564BCC9035495F68D9EAEF Ref B: SYD03EDGE2113 Ref C: 2026-04-21T05:32:44Z' + - 'Ref A: 081FBD6113274809BEDEC00F6A57AA6A Ref B: SYD281080710052 Ref C: 2026-09-10T06:51:00Z' status: code: 200 message: OK @@ -4162,9 +4335,9 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource clientToken2-scope-map @@ -4175,7 +4348,8 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -4183,7 +4357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:46 GMT + - Thu, 10 Sep 2026 06:51:01 GMT expires: - '-1' pragma: @@ -4195,17 +4369,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/7180d3c9-024b-417c-a616-e2eb461b3af6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5af7d1d3-c8d0-4084-80fb-75ab1247e54b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7A19E40886F94C85A19CA8820C796D2C Ref B: SYD03EDGE1312 Ref C: 2026-04-21T05:32:45Z' + - 'Ref A: 6550AD968CBE4DFAADD14265029F1704 Ref B: SYD281080709029 Ref C: 2026-09-10T06:51:01Z' status: code: 404 message: Not Found - request: - body: '{"properties": {"actions": ["repositories/repo2/metadata/read"], "description": - "Created by token: clientToken2"}}' + body: '{"properties": {"description": "Created by token: clientToken2", "actions": + ["repositories/repo2/metadata/read"]}}' headers: Accept: - application/json @@ -4222,28 +4396,29 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","name":"clientToken2-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:47.0797381+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:47.0797381+00:00"},"properties":{"description":"Created - by token: clientToken2","type":"UserDefined","creationDate":"2026-04-21T05:32:47.1994377+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","name":"clientToken2-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:02.3462111+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:02.3462111+00:00"},"properties":{"description":"Created + by token: clientToken2","type":"UserDefined","creationDate":"2026-09-10T06:51:03.3837072+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '746' + - '724' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:46 GMT + - Thu, 10 Sep 2026 06:51:02 GMT expires: - '-1' pragma: @@ -4255,18 +4430,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/bb04447c-2fb3-437a-991c-efe841993b3c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/99226e3c-c87c-40e9-b2b8-9611b389bc38 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 9F2AA90575024F88B3FBF080341061C9 Ref B: SYD03EDGE1921 Ref C: 2026-04-21T05:32:46Z' + - 'Ref A: 9480E2EAC605431382D5E8F0898B0945 Ref B: SYD281080711036 Ref C: 2026-09-10T06:51:02Z' status: code: 200 message: OK - request: - body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map"}}' + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map", + "status": "enabled"}}' headers: Accept: - application/json @@ -4283,29 +4459,30 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:47.9809473+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:47.9809473+00:00"},"properties":{"creationDate":"2026-04-21T05:32:48.0740063+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:04.6422641+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:04.6422641+00:00"},"properties":{"creationDate":"2026-09-10T06:51:04.7164368+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-866cb4b2-3d43-11f1-9aa9-00155d7ffebd?api-version=2026-03-01-preview&t=639123463681840841&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=BeZ8OXtoxL0n2wZXK28YmPnsXpAacnC4aGyPrinMdivyvNYxWtq1JlQchBR-xtgtfLHfVIvAhJKN7Ndhjd9eaSYYvFAhBNO_BvFGZPd02aA_7UcuauLjUAOLtZJ8j7mB5jp8OfOnF7D5QVyA-gjUmV4fmg7xky4OoNi-kdcEfYQbvg-InOHjHn8u1vsDwKwKhJgUviFYbWOvJxdWqsuawzxxUvrUWyn8aSXIXAFw62sqxZhnxDqPpNPsAbYwtDuXNyCl3KTGtHYr3_y1hG3yOh6qcBAmtXBkhlSg0MWve7BiT3XPezTlsh2NqsJV47Rsh7ZqvKfDJ2qVr4AwK4f3RA&h=0WvQDXmpiSNcQWCOwmeYq9tnGcPuSsg1Wd_eNyLx9s4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-fbf93534-ace3-11f1-8ed5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198648923471&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=GfHZRvflnCY7-aAvoMaOi7IXx0iNDyd2rBCz7oB1ndOBrX9YfjFDrM1N1T-Fw3TLT1CRCBjoHiLcE-sxsEKlnGypqt7ADCe9jT4LtjhGzzFZLKegvsgH0hagS-TbZYvrXUDnc4qjqGB4j9l4eBELRRmuwA5L9cOGp1eq-jZ3EX-NKnil7xYOpJgWre0LtVruvX_EQq3nGOiTFP27aAi9uZU4qpDtYU75RWOMRirkwYbmMLPTKQ-EvuCncz-xtM6oZ6zHcYHF17op-aeYOh-kto67Ficb7aTci_qWmwVVkYrpMyVj6peJdYYYjgrM5225msmRIfGtAIucw4SMYowh4Q&h=C2dobTdm8wjW4IRRS9s027YJ3N69Cl1tsWbhmVv8364 cache-control: - no-cache content-length: - - '848' + - '826' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:47 GMT + - Thu, 10 Sep 2026 06:51:04 GMT expires: - '-1' pragma: @@ -4317,13 +4494,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5e384a41-ab43-408f-8490-bc7e128c1a6b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2af1f58c-6fcd-440d-8e79-49c255bc4aff x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 3D34C490BEB24342974578415EC84AB4 Ref B: SYD03EDGE1710 Ref C: 2026-04-21T05:32:47Z' + - 'Ref A: D327097378164F19BEDC67E6F1ADFACA Ref B: SYD281080707040 Ref C: 2026-09-10T06:51:04Z' status: code: 201 message: Created @@ -4341,9 +4518,9 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-866cb4b2-3d43-11f1-9aa9-00155d7ffebd?api-version=2026-03-01-preview&t=639123463681840841&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=BeZ8OXtoxL0n2wZXK28YmPnsXpAacnC4aGyPrinMdivyvNYxWtq1JlQchBR-xtgtfLHfVIvAhJKN7Ndhjd9eaSYYvFAhBNO_BvFGZPd02aA_7UcuauLjUAOLtZJ8j7mB5jp8OfOnF7D5QVyA-gjUmV4fmg7xky4OoNi-kdcEfYQbvg-InOHjHn8u1vsDwKwKhJgUviFYbWOvJxdWqsuawzxxUvrUWyn8aSXIXAFw62sqxZhnxDqPpNPsAbYwtDuXNyCl3KTGtHYr3_y1hG3yOh6qcBAmtXBkhlSg0MWve7BiT3XPezTlsh2NqsJV47Rsh7ZqvKfDJ2qVr4AwK4f3RA&h=0WvQDXmpiSNcQWCOwmeYq9tnGcPuSsg1Wd_eNyLx9s4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-fbf93534-ace3-11f1-8ed5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198648923471&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=GfHZRvflnCY7-aAvoMaOi7IXx0iNDyd2rBCz7oB1ndOBrX9YfjFDrM1N1T-Fw3TLT1CRCBjoHiLcE-sxsEKlnGypqt7ADCe9jT4LtjhGzzFZLKegvsgH0hagS-TbZYvrXUDnc4qjqGB4j9l4eBELRRmuwA5L9cOGp1eq-jZ3EX-NKnil7xYOpJgWre0LtVruvX_EQq3nGOiTFP27aAi9uZU4qpDtYU75RWOMRirkwYbmMLPTKQ-EvuCncz-xtM6oZ6zHcYHF17op-aeYOh-kto67Ficb7aTci_qWmwVVkYrpMyVj6peJdYYYjgrM5225msmRIfGtAIucw4SMYowh4Q&h=C2dobTdm8wjW4IRRS9s027YJ3N69Cl1tsWbhmVv8364 response: body: string: '{"status":"Succeeded"}' @@ -4353,9 +4530,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-866cb4b2-3d43-11f1-9aa9-00155d7ffebd?api-version=2026-03-01-preview&t=639123463690856536&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=UyfXwr56pegX60K_fdkvK2Yx5lIB2qRKG4zBoqjMa-fHiJDrWd_PxP8T8ib4JQP2wr1GTqTrIkRRAgnEumujIfAhI9Dd8Yvxkdl5TFYooLA29BKRuYaDTeb2OyCRgnH4JqbCod5zCY0-3omH2bXh7Lbg72R_GW2bSAjF2XfIOkQwJk80o85EgKcFUJRzy_6d27svLy2E1E90FdiHpsHcH_sXCtad2SF-OntfAB7QpJL76n5dOc54ZV4XfD015uYUKNaMF9kejcm533H43pP4ea5X8FvcQtzZXfSyPCtJ3f27nNQTpdS8pOB6f2O2WEmnFCdqer_tIm6ocCsf8Q2wWw&h=FxPjC-wp6G9w_gUt46AuK6OjROwP-bfTMPEnSr5J5sY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-fbf93534-ace3-11f1-8ed5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198667514602&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=UKniDgdShdYjQnls2YQ22msrsKd7vLA7NfMEdAPLmQF8awheB7S080cqMQwiGkvQsauDtlFh5wS0ZCC5boSU96QivpZ7k63FNxKyg2OoC3LE0ooerTMt6GUJhn-txoSZkZp-G4wNu8iiPcaaSUj8-leRDt85WGyFQhYv6ZiI17kJrNXoINVHokc03egFIfaonCMiRU1bNxq0yhZuzdDTBB_0GUC8E-1P_XRY087BJaXON2rcm5GsXfh1gwKX1bs4QijGfFg0NimJ650hJYCEJ2BNefseVJV16cChTpalaEjDvvuTOwsTIcQr-RokCEhW4jj-GN6KqduHL4BQeeeo1w&h=VALBhXFGxaI9IBGI1OyxM_2Tt0ia_a39lymx-FUxYXY cache-control: - no-cache content-length: @@ -4363,7 +4541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:48 GMT + - Thu, 10 Sep 2026 06:51:06 GMT expires: - '-1' pragma: @@ -4375,11 +4553,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/79e60031-37b8-43f4-87ae-8b53a2ab5e89 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c7bf965d-de36-4707-b0d9-4ef6353abfb9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 624E58CF061E4009A2E9DF51C9EF26AA Ref B: SYD03EDGE1915 Ref C: 2026-04-21T05:32:48Z' + - 'Ref A: 3AF3C3084D274DB29779B0EF3FA729DE Ref B: SYD281080712054 Ref C: 2026-09-10T06:51:05Z' status: code: 200 message: OK @@ -4397,27 +4575,28 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:47.9809473+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:47.9809473+00:00"},"properties":{"creationDate":"2026-04-21T05:32:48.0740063+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:04.6422641+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:04.6422641+00:00"},"properties":{"creationDate":"2026-09-10T06:51:04.7164368+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '849' + - '827' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:49 GMT + - Thu, 10 Sep 2026 06:51:07 GMT expires: - '-1' pragma: @@ -4429,11 +4608,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/0e25d3e2-63b2-4532-82d8-95e9834e2f10 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0c0a48c7-8f99-4504-8371-0449f52a35dc x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 046EB6232747457EA2EC11917C22B4FB Ref B: SYD03EDGE0907 Ref C: 2026-04-21T05:32:49Z' + - 'Ref A: 662F57B87BCF48309DDC56BC707C99C8 Ref B: SYD281080705031 Ref C: 2026-09-10T06:51:07Z' status: code: 200 message: OK @@ -4452,21 +4631,21 @@ interactions: - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications --remove-notifications --gc-enabled --gc-schedule User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvxv5hhvg2lecs3x5gmw2xr4mrcvdyzbar7mch3mulgz6vkf4qni545ko67pc3mdbd/providers/Microsoft.ContainerRegistry/registries/testregzcmjal3577hyz5gsrk","name":"testregzcmjal3577hyz5gsrk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:24.260223Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4594' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:50 GMT + - Thu, 10 Sep 2026 06:51:08 GMT expires: - '-1' pragma: @@ -4478,9 +4657,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: ECA211E7F7EF4CB4A2574C53EB40CB58 Ref B: SYD03EDGE1710 Ref C: 2026-04-21T05:32:50Z' + - 'Ref A: 40A2EE3011E64BB8BBD564A7168EE800 Ref B: SYD281080707023 Ref C: 2026-09-10T06:51:08Z' status: code: 200 message: OK @@ -4499,23 +4678,23 @@ interactions: - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications --remove-notifications --gc-enabled --gc-schedule User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:51 GMT + - Thu, 10 Sep 2026 06:51:08 GMT expires: - '-1' pragma: @@ -4527,9 +4706,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FDDD163510324B6FAE7445B8DA1FA371 Ref B: SYD03EDGE2112 Ref C: 2026-04-21T05:32:51Z' + - 'Ref A: C7AC23D16B70492BADFAEBB7CBC8DE22 Ref B: SYD281080709060 Ref C: 2026-09-10T06:51:09Z' status: code: 200 message: OK @@ -4548,23 +4727,23 @@ interactions: - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications --remove-notifications --gc-enabled --gc-schedule User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:52 GMT + - Thu, 10 Sep 2026 06:51:10 GMT expires: - '-1' pragma: @@ -4576,9 +4755,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 14AC601F33834492A9EF3B97DC00840E Ref B: SYD03EDGE1005 Ref C: 2026-04-21T05:32:52Z' + - 'Ref A: B4BD681248C34F0C9A06A520451A9261 Ref B: SYD281080706062 Ref C: 2026-09-10T06:51:10Z' status: code: 200 message: OK @@ -4597,25 +4776,26 @@ interactions: - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications --remove-notifications --gc-enabled --gc-schedule User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:59.7442062+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:59.7442062+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:51.8783918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:51.8783918+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"],"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1380' + - '1381' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:53 GMT + - Thu, 10 Sep 2026 06:51:12 GMT expires: - '-1' pragma: @@ -4627,19 +4807,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/67ecbeb3-7961-4db3-818a-2b50969e82b4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/54a88ac4-b505-47c7-a6e6-799f60e58948 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7F640D0EBEF14C76A3CB5E9AA5AFFD41 Ref B: SYD03EDGE0916 Ref C: 2026-04-21T05:32:53Z' + - 'Ref A: 3CFEE4F375A8476DBED84D1481A186C1 Ref B: SYD281080705036 Ref C: 2026-09-10T06:51:11Z' status: code: 200 message: OK - request: - body: '{"properties": {"syncProperties": {"schedule": "* * * * *"}, "logging": - {"logLevel": "Information"}, "clientTokenIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"], - "notificationsList": ["*:*"], "garbageCollection": {"enabled": true, "schedule": - "0 0 */2 * *"}}}' + body: '{"properties": {"syncProperties": {"schedule": "* * * * *"}, "garbageCollection": + {"enabled": true, "schedule": "0 0 */2 * *"}, "clientTokenIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"], + "logging": {"logLevel": "Information"}, "notificationsList": ["*:*"]}}' headers: Accept: - application/json @@ -4657,25 +4836,26 @@ interactions: - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications --remove-notifications --gc-enabled --gc-schedule User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 0 */2 * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1347' + - '1348' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:54 GMT + - Thu, 10 Sep 2026 06:51:13 GMT expires: - '-1' pragma: @@ -4687,13 +4867,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/267135c1-eb5a-4b3a-8823-08adddff3c5b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/acc7de90-f8af-45ad-abe8-50c56d4b599a x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 247CDC70373B4611813B56D679A6B4E5 Ref B: SYD03EDGE0716 Ref C: 2026-04-21T05:32:54Z' + - 'Ref A: B92FE1F00AD643198ED6F6FB03C34073 Ref B: SYD281080707025 Ref C: 2026-09-10T06:51:13Z' status: code: 200 message: OK @@ -4711,21 +4891,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '3989' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:55 GMT + - Thu, 10 Sep 2026 06:51:14 GMT expires: - '-1' pragma: @@ -4737,9 +4917,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AD53B5E58438435D815C94A01FA9CECA Ref B: SYD03EDGE1314 Ref C: 2026-04-21T05:32:55Z' + - 'Ref A: 00BB174B7AC948D1A61983826D1CC905 Ref B: SYD281080711040 Ref C: 2026-09-10T06:51:14Z' status: code: 200 message: OK @@ -4757,23 +4937,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:56 GMT + - Thu, 10 Sep 2026 06:51:15 GMT expires: - '-1' pragma: @@ -4785,9 +4965,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 452D003F74834FA987401AFA4236E933 Ref B: SYD03EDGE2122 Ref C: 2026-04-21T05:32:55Z' + - 'Ref A: 3A06A0DB7F3C478188F0DF6B8B66EE3E Ref B: SYD281080712023 Ref C: 2026-09-10T06:51:15Z' status: code: 200 message: OK @@ -4805,23 +4985,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:57 GMT + - Thu, 10 Sep 2026 06:51:16 GMT expires: - '-1' pragma: @@ -4833,9 +5013,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1B8D70C1BB1947E593C89AD170E82C0D Ref B: SYD03EDGE0920 Ref C: 2026-04-21T05:32:56Z' + - 'Ref A: F732FABECC3F40B8A61A9B3EBFA42B58 Ref B: SYD281080711031 Ref C: 2026-09-10T06:51:16Z' status: code: 200 message: OK @@ -4853,25 +5033,26 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 0 */2 * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1347' + - '1348' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:57 GMT + - Thu, 10 Sep 2026 06:51:17 GMT expires: - '-1' pragma: @@ -4883,11 +5064,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/186202f9-75fe-4034-b452-ed4aba42535f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/bebf893d-096e-4c67-a8a3-0a8aae2fcd87 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F774379AB0D74EBC9428FC6F926364A7 Ref B: SYD03EDGE1714 Ref C: 2026-04-21T05:32:57Z' + - 'Ref A: 4196EC62A44B4D7397DB0191598123D9 Ref B: SYD281080706029 Ref C: 2026-09-10T06:51:17Z' status: code: 200 message: OK @@ -4905,27 +5086,28 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:47.9809473+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:47.9809473+00:00"},"properties":{"creationDate":"2026-04-21T05:32:48.0740063+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:04.6422641+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:04.6422641+00:00"},"properties":{"creationDate":"2026-09-10T06:51:04.7164368+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '849' + - '827' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:58 GMT + - Thu, 10 Sep 2026 06:51:18 GMT expires: - '-1' pragma: @@ -4937,11 +5119,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/11a40b46-019b-4c2c-8c34-0fe6eeace27a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5a7f3a67-685c-4d11-ad92-a172bcd4dec7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BA81DE9BE815460CA9DD6E522E2146A9 Ref B: SYD03EDGE1721 Ref C: 2026-04-21T05:32:58Z' + - 'Ref A: AE484DCE806B401E954DFFD768640D62 Ref B: SYD281080710031 Ref C: 2026-09-10T06:51:18Z' status: code: 200 message: OK @@ -4959,21 +5141,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testreg2sxlaqht72xea","name":"testreg2sxlaqht72xea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:54.089971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:54.089971Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4583' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:32:59 GMT + - Thu, 10 Sep 2026 06:51:19 GMT expires: - '-1' pragma: @@ -4985,9 +5167,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BF9FED56A0794EEBA012DCCA214D767D Ref B: SYD03EDGE0722 Ref C: 2026-04-21T05:32:59Z' + - 'Ref A: 823748042AAD40F8BF332CFC2E5F05A0 Ref B: SYD281080711062 Ref C: 2026-09-10T06:51:19Z' status: code: 200 message: OK @@ -5005,23 +5187,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:00 GMT + - Thu, 10 Sep 2026 06:51:20 GMT expires: - '-1' pragma: @@ -5033,9 +5215,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4B673720BC61466E9BA6C030285ADCAC Ref B: SYD03EDGE0712 Ref C: 2026-04-21T05:33:00Z' + - 'Ref A: 2A152FCBA4D44191A1457458DD420F93 Ref B: SYD281080705054 Ref C: 2026-09-10T06:51:20Z' status: code: 200 message: OK @@ -5053,25 +5235,26 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1150' + - '1151' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:01 GMT + - Thu, 10 Sep 2026 06:51:21 GMT expires: - '-1' pragma: @@ -5083,11 +5266,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/ad1b6b6b-0c0e-4e30-a19a-1c8a54156fe5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ab9ec95e-6a2c-47d1-a6cf-ffe4a328afb8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4C25CC7F6B444B4AA4E46FCD959430B5 Ref B: SYD03EDGE1109 Ref C: 2026-04-21T05:33:01Z' + - 'Ref A: 5052075EA33F4F05BC865E35C9DD0044 Ref B: SYD281080709054 Ref C: 2026-09-10T06:51:21Z' status: code: 200 message: OK @@ -5105,21 +5288,21 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testreg2sxlaqht72xea","name":"testreg2sxlaqht72xea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:54.089971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:54.089971Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4583' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:01 GMT + - Thu, 10 Sep 2026 06:51:23 GMT expires: - '-1' pragma: @@ -5131,9 +5314,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 34FDAEEBB8EB4F37B0A631CAE6960D72 Ref B: SYD03EDGE1007 Ref C: 2026-04-21T05:33:02Z' + - 'Ref A: D533D8D2E823401CB999F82E478A3CD5 Ref B: SYD281080709062 Ref C: 2026-09-10T06:51:22Z' status: code: 200 message: OK @@ -5151,23 +5334,23 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:02 GMT + - Thu, 10 Sep 2026 06:51:23 GMT expires: - '-1' pragma: @@ -5179,9 +5362,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E9AD06775415418E829CFE3930F07EBA Ref B: SYD03EDGE1111 Ref C: 2026-04-21T05:33:02Z' + - 'Ref A: 44D9C5A6B3E4426DBCC0DFE49CE723AA Ref B: SYD281080705023 Ref C: 2026-09-10T06:51:23Z' status: code: 200 message: OK @@ -5199,23 +5382,23 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:03 GMT + - Thu, 10 Sep 2026 06:51:25 GMT expires: - '-1' pragma: @@ -5227,9 +5410,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EDA3AE0A41C1409F95425886939D09F1 Ref B: SYD03EDGE0813 Ref C: 2026-04-21T05:33:03Z' + - 'Ref A: E349BD0FF2924546B731493D94E2DB1E Ref B: SYD281080709031 Ref C: 2026-09-10T06:51:24Z' status: code: 200 message: OK @@ -5247,25 +5430,26 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 0 */2 * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1347' + - '1348' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:03 GMT + - Thu, 10 Sep 2026 06:51:25 GMT expires: - '-1' pragma: @@ -5277,11 +5461,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/50091c4e-db89-447f-a77c-22b1b686972a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fe756b75-6b15-40f7-8b95-1c1da8dd85a7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 99058FEC3CE44BCD8C44F41D0F580C81 Ref B: SYD03EDGE0715 Ref C: 2026-04-21T05:33:04Z' + - 'Ref A: 716703CBF99443E7A7A36B6132249419 Ref B: SYD281080710025 Ref C: 2026-09-10T06:51:25Z' status: code: 200 message: OK @@ -5299,21 +5483,21 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testreg2sxlaqht72xea","name":"testreg2sxlaqht72xea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:54.089971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:54.089971Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4583' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:03 GMT + - Thu, 10 Sep 2026 06:51:26 GMT expires: - '-1' pragma: @@ -5325,9 +5509,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 62DB2C03DF484DF985207F268800C95E Ref B: SYD03EDGE2015 Ref C: 2026-04-21T05:33:04Z' + - 'Ref A: 58091A765C63448CB5B7BCBF6D176109 Ref B: SYD281080707062 Ref C: 2026-09-10T06:51:26Z' status: code: 200 message: OK @@ -5350,19 +5534,20 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"syncToken","passwords":[{"creationTime":"2026-04-21T05:33:05.7836295+00:00","name":"password2","value":"***"}]}' + string: '{"username":"syncToken","passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2","value":"EVQpu2PYvw3jmCjwYEdlGlq1OC4o2bGqSfNk0CX7yTE7nrMcXNXFJQQJ99CIACYeBjFEqg7NAAABAZCRzxDi"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -5370,7 +5555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:05 GMT + - Thu, 10 Sep 2026 06:51:27 GMT expires: - '-1' pragma: @@ -5382,13 +5567,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/43088a5e-346f-4ae6-8682-42b9edaee6a1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/78aafb09-bc30-4e38-91c9-733c6e9f261f x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 3999C41B3DB64EB38E09289C78969BF6 Ref B: SYD03EDGE1422 Ref C: 2026-04-21T05:33:05Z' + - 'Ref A: 2A617320F391479C8A10F7D52B66C53F Ref B: SYD281080709034 Ref C: 2026-09-10T06:51:27Z' status: code: 200 message: OK @@ -5406,21 +5591,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testreg2sxlaqht72xea","name":"testreg2sxlaqht72xea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:54.089971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:54.089971Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4583' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:05 GMT + - Thu, 10 Sep 2026 06:51:28 GMT expires: - '-1' pragma: @@ -5432,9 +5617,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F0B48710B8D642A4832D244B656A0269 Ref B: SYD03EDGE1118 Ref C: 2026-04-21T05:33:06Z' + - 'Ref A: 71297082BAB04668A356DA82DD113982 Ref B: SYD281080709060 Ref C: 2026-09-10T06:51:29Z' status: code: 200 message: OK @@ -5452,27 +5637,28 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-04-21T05:33:05.7836295+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '911' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:07 GMT + - Thu, 10 Sep 2026 06:51:30 GMT expires: - '-1' pragma: @@ -5484,11 +5670,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/bc2a6b03-a136-4ff2-8c86-727f556a29b3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ab87faf2-bb7c-44e6-9bd0-2d3ea119a6e0 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5221B7BA520546ACA435A2C57DAA09C1 Ref B: SYD03EDGE1110 Ref C: 2026-04-21T05:33:06Z' + - 'Ref A: 5F1F15A7F6BD48C7B8A0CFF37686BAC4 Ref B: SYD281080712062 Ref C: 2026-09-10T06:51:30Z' status: code: 200 message: OK @@ -5506,21 +5692,21 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testreg2sxlaqht72xea","name":"testreg2sxlaqht72xea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:54.089971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:54.089971Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4583' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:07 GMT + - Thu, 10 Sep 2026 06:51:31 GMT expires: - '-1' pragma: @@ -5532,9 +5718,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F4AE108AD51248CCB7BC0EBB68CFFB32 Ref B: SYD03EDGE2015 Ref C: 2026-04-21T05:33:07Z' + - 'Ref A: DB20702BB2EF4028B03D090AA4DABF5B Ref B: SYD281080707052 Ref C: 2026-09-10T06:51:31Z' status: code: 200 message: OK @@ -5552,23 +5738,23 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:08 GMT + - Thu, 10 Sep 2026 06:51:32 GMT expires: - '-1' pragma: @@ -5580,9 +5766,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3658CEC203B84B4BAD33585568AFD9B5 Ref B: SYD03EDGE0915 Ref C: 2026-04-21T05:33:08Z' + - 'Ref A: DF47EC39A5FE47F48CF017A59B4B3676 Ref B: SYD281080710023 Ref C: 2026-09-10T06:51:32Z' status: code: 200 message: OK @@ -5600,31 +5786,32 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 - 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:36.6833803+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:36.6833803+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:51.5072279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:51.5072279+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}]}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '5004' + - '5008' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:08 GMT + - Thu, 10 Sep 2026 06:51:33 GMT expires: - '-1' pragma: @@ -5636,11 +5823,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/afadd2e4-82ba-47f4-bb4a-30263e8b06dc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7413ff19-b236-4c91-8aeb-4a79359d42fa x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 19E86F01F817438FA12F7B75BF0A04D0 Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:33:09Z' + - 'Ref A: 536BB5E9FC8A4A45A274A31BE4BDEEC4 Ref B: SYD281080705052 Ref C: 2026-09-10T06:51:33Z' status: code: 200 message: OK @@ -5658,27 +5845,28 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:09 GMT + - Thu, 10 Sep 2026 06:51:33 GMT expires: - '-1' pragma: @@ -5690,11 +5878,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/73c6f5b2-5652-4563-8082-c1a666e17a23 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6390f305-0c1a-4163-ba60-80a594e625ce x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AD4A85F23A3A4D739F627E563A8E1DB9 Ref B: SYD03EDGE1116 Ref C: 2026-04-21T05:33:09Z' + - 'Ref A: 8A3FA195256E4E99AE56AF56B25F2C29 Ref B: SYD281080705062 Ref C: 2026-09-10T06:51:34Z' status: code: 200 message: OK @@ -5712,28 +5900,29 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:24.1063817+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:24.1063817+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/child/config/write","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:27.2583126+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:27.2583126+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","gateway/child/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1015' + - '993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:10 GMT + - Thu, 10 Sep 2026 06:51:35 GMT expires: - '-1' pragma: @@ -5745,20 +5934,20 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/002291c0-ce8a-40e0-bcad-f4c9685dc5ee + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c1cbac22-8f41-43f4-8572-04fe31a8e57b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D21223DE275D48E988153374679D01D2 Ref B: SYD03EDGE1907 Ref C: 2026-04-21T05:33:10Z' + - 'Ref A: F25CAE710C844C0B8C6F102242753981 Ref B: SYD281080712025 Ref C: 2026-09-10T06:51:35Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/write", "gateway/grandchild/config/read", - "gateway/grandchild/message/write", "repositories/repo3/metadata/read", "repositories/repo1/content/read", - "gateway/child/config/read", "gateway/grandchild/message/read", "repositories/repo3/content/read", - "repositories/repo2/metadata/read", "repositories/repo2/content/read", "gateway/child/message/write", - "gateway/child/config/write", "gateway/child/message/read", "repositories/repo1/metadata/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "repositories/repo2/content/read", + "repositories/repo3/content/read", "gateway/child/message/write", "repositories/repo1/metadata/read", + "gateway/grandchild/config/read", "gateway/grandchild/config/write", "repositories/repo2/metadata/read", + "gateway/child/message/read", "repositories/repo1/content/read", "gateway/child/config/read", + "gateway/child/config/write", "gateway/grandchild/message/read", "gateway/grandchild/message/write"]}}' headers: Accept: - application/json @@ -5775,30 +5964,31 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:12.1164212+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:12.1164212+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/child/config/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:36.3708741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:36.3708741+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo3/content/read","gateway/child/message/write","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123463923039355&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=SpJUxVR-c3dFXS1XAFfxJWWzPy9smCyI6jeX6ruz4-ggOh-63IatelV-Q0FaQLXsfLX47_GWVJBAnTLRSTrH2mFstWuf1bMupWt2drFakUGxNwlPhhT-w8tOvKcGmSXXt7Ptd--vOeNHKJWpnfc7w7LPm2jwglpqy2EjAwpvnJJ6u1ZexDgV8GK7rrl1Z20Ktqj3t14OsTRRsNKD9uT00Vfrxrz8_inzsEuSP43HtR7snsBzd966suXA10EqFFSqk03_PI1HSbKgFB5GifOrVEWcn0Uhkz_HpjkHYt4WI05ibrEwSWfjfbqvmY-Cht-hSE3boHIsGaYlKc2lYxIxVQ&h=ikM1BB9jxy13FWfBYuovR4hTSpunwcQ7xnXtLVZ08rA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198967302636&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ombNfJcMRojSi0UvRrhBzub1PAmFm5nQMS0aS5ARxGnBZQpZhvw4-j3JTTTaq3IElJC20d-a7xLso0e1BRb2MBLOF_RGxA3FcIWLKl1cO2lX6d6MHiW_HyRfACsI3rcUWzYyDc5YSAl01sAvFuKWdbpSEmwEpRE8BA844n48dQFldcR9lR01IFVYFaZU5xpGpuNM9vVt1UU5XkVHnMIuXeRT3YruDz4mGZQyiBQP04lW-S9Qff_jtrWneEUaBawZRmw2sgk_lFvtgEy4-qLufoNF9F9tIV71FvyFgpfNRDdWxvXqo4V_dAsnNjzJ6paHc40_nTMOTtD0G4VxLW1Vwg&h=PUFg6A9OK9Bxjci5N_KAHlc-KELb-Mml92wFEBQHg5A cache-control: - no-cache content-length: - - '1152' + - '1130' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:11 GMT + - Thu, 10 Sep 2026 06:51:36 GMT expires: - '-1' pragma: @@ -5810,13 +6000,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/562c207c-b28b-4dc8-9067-c948bb2b3720 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b3b1a15c-d115-4140-9321-30c25e308966 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: DDDBD76E087F42DF9D53A8637966D1B6 Ref B: SYD03EDGE1010 Ref C: 2026-04-21T05:33:11Z' + - 'Ref A: 010D63C35EAA4265B6AE9832A67EE97E Ref B: SYD281080706029 Ref C: 2026-09-10T06:51:36Z' status: code: 201 message: Created @@ -5834,9 +6024,9 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123463923039355&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=SpJUxVR-c3dFXS1XAFfxJWWzPy9smCyI6jeX6ruz4-ggOh-63IatelV-Q0FaQLXsfLX47_GWVJBAnTLRSTrH2mFstWuf1bMupWt2drFakUGxNwlPhhT-w8tOvKcGmSXXt7Ptd--vOeNHKJWpnfc7w7LPm2jwglpqy2EjAwpvnJJ6u1ZexDgV8GK7rrl1Z20Ktqj3t14OsTRRsNKD9uT00Vfrxrz8_inzsEuSP43HtR7snsBzd966suXA10EqFFSqk03_PI1HSbKgFB5GifOrVEWcn0Uhkz_HpjkHYt4WI05ibrEwSWfjfbqvmY-Cht-hSE3boHIsGaYlKc2lYxIxVQ&h=ikM1BB9jxy13FWfBYuovR4hTSpunwcQ7xnXtLVZ08rA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198967302636&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ombNfJcMRojSi0UvRrhBzub1PAmFm5nQMS0aS5ARxGnBZQpZhvw4-j3JTTTaq3IElJC20d-a7xLso0e1BRb2MBLOF_RGxA3FcIWLKl1cO2lX6d6MHiW_HyRfACsI3rcUWzYyDc5YSAl01sAvFuKWdbpSEmwEpRE8BA844n48dQFldcR9lR01IFVYFaZU5xpGpuNM9vVt1UU5XkVHnMIuXeRT3YruDz4mGZQyiBQP04lW-S9Qff_jtrWneEUaBawZRmw2sgk_lFvtgEy4-qLufoNF9F9tIV71FvyFgpfNRDdWxvXqo4V_dAsnNjzJ6paHc40_nTMOTtD0G4VxLW1Vwg&h=PUFg6A9OK9Bxjci5N_KAHlc-KELb-Mml92wFEBQHg5A response: body: string: '{"status":"Succeeded"}' @@ -5846,9 +6036,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123463935028907&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=pUNqjGsCjjzGSdB6FJmFRsJCyStsvHMVgmyY2MQsRo3fLGM-j4CkoE2gRJkJJgpX4LMtAt76xlJlanMNGgvJyFVB0refU5j6t3r2J62h96mHbyXlJF6YNGyO2ATiqacnL3vK6rX1sS46fOFFuP5EVQx9JejRIwfhPdufEWZ2a13NumzZllF6EfQfnMzKI84sqzWgMvcBFAfRfCV_EI_5LK5gOxqjPJ-bc5HxILqgGQ_h0ZpRG2M1zTQCbrhwpPY3H2CiC-jqc3LlFzyAkABprBAjyPSNaK4lmwnbXfPT1VheIplr2bG7hglhlHS-bNGiCbd0_5tsnhUqZQkR264onw&h=PV669VUKJJzK2Z97dqG3czt2BfcbJGChRgvsbd1XEFM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198978897462&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=CUWYg7A1Gy8Jm6l9Iacj9MlyYZkk5JMT-V2ttI-UY_tpdKQCpN5g2ZjFf7aR66vJJoMuNwwsIRZ5ZF69hufDUL6S_40JkI-GwXt92zOzerneOySWp--mtPywh00CWwAkpBqwt5jhT3YSw7E8mKR53J6c9_eIPXYMfrGdHR9DbwG6ZD9aWaittM4pwxXeZGhRhJJYyk0SkXHzetldwufdP2XRyDpPTPLOHfZX4PZVv0y6SLNey3DYIgQWwQprxNdJ7Hl_3LH2BUphaOXuOouQ--2elvA6vlPheWspO6vuyGBGWZhi328voEbfg3Seu6eUEkKmjYiPYyxz3iaJ3Fc6Ng&h=wSglGCC7MHiAE0-esI2Swx26tGja7ZF8byf17YxhVrY cache-control: - no-cache content-length: @@ -5856,7 +6047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:12 GMT + - Thu, 10 Sep 2026 06:51:37 GMT expires: - '-1' pragma: @@ -5868,11 +6059,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/263838d0-7d77-407d-9668-782c53d2f49b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/272b3da6-4167-47d5-99c2-bf6f53b9e9f9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E8A4B8524EB3484B8D9411DD2E0FBDF5 Ref B: SYD03EDGE1320 Ref C: 2026-04-21T05:33:12Z' + - 'Ref A: E7EDFDF26A344F518D25EC2E9F1995E3 Ref B: SYD281080711025 Ref C: 2026-09-10T06:51:37Z' status: code: 200 message: OK @@ -5890,28 +6081,29 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:12.1164212+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:12.1164212+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/child/config/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:36.3708741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:36.3708741+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo3/content/read","gateway/child/message/write","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1153' + - '1131' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:13 GMT + - Thu, 10 Sep 2026 06:51:38 GMT expires: - '-1' pragma: @@ -5923,11 +6115,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/6e5a40ea-d4b1-4781-bcc4-5e2ea07aa67b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1b3b1efe-2c32-453a-a7b1-f5f4f054830e x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AD5467ED94A9425F9FE1EE98ABAAE0BF Ref B: SYD03EDGE2021 Ref C: 2026-04-21T05:33:13Z' + - 'Ref A: 30832E84810446819BC38EC5BFB931C7 Ref B: SYD281080709034 Ref C: 2026-09-10T06:51:38Z' status: code: 200 message: OK @@ -5945,27 +6137,28 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-04-21T05:33:05.7836295+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '911' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:15 GMT + - Thu, 10 Sep 2026 06:51:39 GMT expires: - '-1' pragma: @@ -5977,11 +6170,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/32e9324c-f1f6-4dc3-9ba6-4c7565f7a1f6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b6818bc5-e3fa-450a-b72a-df3fcc1961d8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0FE56BA4746F41A289F6803ED58AF002 Ref B: SYD03EDGE0709 Ref C: 2026-04-21T05:33:14Z' + - 'Ref A: F27D2894661E4569BF568702126E0016 Ref B: SYD281080707054 Ref C: 2026-09-10T06:51:39Z' status: code: 200 message: OK @@ -5999,28 +6192,29 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:29.4706592+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:29.4706592+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/rootregistry/config/read","repositories/repo2/content/read","gateway/rootregistry/message/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:31.5675287+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:31.5675287+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/config/read","gateway/grandchild/message/write","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1236' + - '1214' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:15 GMT + - Thu, 10 Sep 2026 06:51:39 GMT expires: - '-1' pragma: @@ -6032,22 +6226,22 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/7b9f1884-f2bc-4cd7-8722-2035d38e7118 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/073c3ffe-e314-4735-bd28-740a8e4d06f2 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 98803CE0C076496A9ABCE1413BA75FA5 Ref B: SYD03EDGE2017 Ref C: 2026-04-21T05:33:15Z' + - 'Ref A: D45593542C0E46E995007E0366AF3FDC Ref B: SYD281080707025 Ref C: 2026-09-10T06:51:39Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/write", "gateway/grandchild/config/read", - "gateway/rootregistry/config/read", "repositories/repo3/content/read", "repositories/repo2/content/read", - "gateway/rootregistry/message/write", "repositories/repo2/metadata/read", "gateway/child/message/read", - "repositories/repo1/metadata/read", "gateway/rootregistry/config/write", "gateway/grandchild/config/write", - "repositories/repo1/content/read", "repositories/repo3/metadata/read", "gateway/child/config/read", - "gateway/grandchild/message/read", "gateway/child/config/write", "gateway/child/message/write", - "gateway/rootregistry/message/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "gateway/grandchild/config/read", + "gateway/grandchild/config/write", "gateway/rootregistry/config/write", "gateway/child/message/read", + "repositories/repo1/content/read", "gateway/child/config/read", "repositories/repo2/metadata/read", + "gateway/grandchild/message/write", "gateway/rootregistry/config/read", "repositories/repo2/content/read", + "repositories/repo3/content/read", "gateway/child/message/write", "gateway/rootregistry/message/read", + "repositories/repo1/metadata/read", "gateway/rootregistry/message/write", "gateway/child/config/write", + "gateway/grandchild/message/read"]}}' headers: Accept: - application/json @@ -6064,30 +6258,31 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:17.489768+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:17.489768+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/rootregistry/config/read","repositories/repo3/content/read","repositories/repo2/content/read","gateway/rootregistry/message/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo3/metadata/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:40.9368373+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:40.9368373+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","repositories/repo2/metadata/read","gateway/grandchild/message/write","gateway/rootregistry/config/read","repositories/repo2/content/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123463976772716&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=qMy6YCe-7AVib66sAteLJlbUTt8VJJWtQJPay24WWXCc4VMcuzQ0dxmwFasAqe02AOq623GJ4E3KUgzmx3ztGhJGUbGuZ2Rd01M1C-eFCDzBgDzebzBfq3KqQXwSZt2AlWFTIxldTOZz6ciNXfcuciJ2EAMjdfTZ3eG4FvIz1g-tQKm8Pm4vURl1Zc5Z-FBpnUKAQEWBdDPNlk85QEkYX-jW0Bm4B09oZKVQhbMQNCIHHAiz84nUubcJu7mvGlWKH1wt6fbPNJhGYoXPLmqtfxwsr7h6bWjO7pPdwHk1TkYdCRyTnIv_sc0N0nvBDSTUNNvrN_oGhvy4Z_tDwFW2oQ&h=eyGKtOm8ifkMJGfeQQGAY1O0hrQ-JZigKs_3JQLRgJ8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199012337107&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IGusRCnltipShBfbi-cTVJDpDTztFy3doCY4w0LZeM-NeXNezp5JjBTQ3tKTa4x_RgVqye30u17UBpzAM1ZBKzq2MpaAhG790wD53PaDRe9XSB0xjGbahL0c5uGzR3evaHqi6iYjBxkpNZqSVyi6wMUnQUaRTrWvcwI4SjaIeOf6er_xgoy5Z4PMoRJGQkVm4zp_Nrwf6AT8il8F9vvhA92TSt-UnFXFDSKELthI7GnLdEhfObcdzPXRNO8ZgKoAym7eRQbzRgwcjPWHMkr24T0EjPO7WrqgP05Qwune4YtcFijwm03NUaAP5Y0H0kYtY4q-t_-3pZ3mAfcQDc89iQ&h=SEA1VhG2prq8vtTQfHgoq4NeorzBugG2NS2OSKKOg0w cache-control: - no-cache content-length: - - '1302' + - '1282' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:16 GMT + - Thu, 10 Sep 2026 06:51:40 GMT expires: - '-1' pragma: @@ -6099,13 +6294,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/85d06537-2315-42f4-ab3d-c98b1032715b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/94a52892-6509-4bbf-b9e4-0fab8a5ffbe8 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 8D2F7996FCD14B3AA981244421C4F384 Ref B: SYD03EDGE1009 Ref C: 2026-04-21T05:33:16Z' + - 'Ref A: A6D1671F9F4A4172BD5A274BD1D29C33 Ref B: SYD281080708023 Ref C: 2026-09-10T06:51:40Z' status: code: 201 message: Created @@ -6123,9 +6318,9 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123463976772716&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=qMy6YCe-7AVib66sAteLJlbUTt8VJJWtQJPay24WWXCc4VMcuzQ0dxmwFasAqe02AOq623GJ4E3KUgzmx3ztGhJGUbGuZ2Rd01M1C-eFCDzBgDzebzBfq3KqQXwSZt2AlWFTIxldTOZz6ciNXfcuciJ2EAMjdfTZ3eG4FvIz1g-tQKm8Pm4vURl1Zc5Z-FBpnUKAQEWBdDPNlk85QEkYX-jW0Bm4B09oZKVQhbMQNCIHHAiz84nUubcJu7mvGlWKH1wt6fbPNJhGYoXPLmqtfxwsr7h6bWjO7pPdwHk1TkYdCRyTnIv_sc0N0nvBDSTUNNvrN_oGhvy4Z_tDwFW2oQ&h=eyGKtOm8ifkMJGfeQQGAY1O0hrQ-JZigKs_3JQLRgJ8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199012337107&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IGusRCnltipShBfbi-cTVJDpDTztFy3doCY4w0LZeM-NeXNezp5JjBTQ3tKTa4x_RgVqye30u17UBpzAM1ZBKzq2MpaAhG790wD53PaDRe9XSB0xjGbahL0c5uGzR3evaHqi6iYjBxkpNZqSVyi6wMUnQUaRTrWvcwI4SjaIeOf6er_xgoy5Z4PMoRJGQkVm4zp_Nrwf6AT8il8F9vvhA92TSt-UnFXFDSKELthI7GnLdEhfObcdzPXRNO8ZgKoAym7eRQbzRgwcjPWHMkr24T0EjPO7WrqgP05Qwune4YtcFijwm03NUaAP5Y0H0kYtY4q-t_-3pZ3mAfcQDc89iQ&h=SEA1VhG2prq8vtTQfHgoq4NeorzBugG2NS2OSKKOg0w response: body: string: '{"status":"Succeeded"}' @@ -6135,9 +6330,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123463985932772&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=TizPrGpaL2Ccz-cFNicHlAt8t6YL2GOgwbfwBQAiidRzju53UIzQ_0KwE0VM2IkTF8OEOevvcyYKU9Pu1TpYdtPSxh2zCV2MjIrXtg4z6f4YfGHdUTOddfWiAikD0szye4odAakre53tZ6_21eXDYIG_qNi5WbTy2SQkWqKfcbFt8GUArn_KGOkUlOiMoogIgwutgyNQuqzmfJwgYEZPovShYzdZbxmqvZBvwS3VMHSyvjv2LimEsJbedGi4KDuTzjE04R-Kz7VMzpYUF12awTRNJ4JgYR7kO5UCT-AEogxdSMptoBQgdB87iylL0smyqtLubzLZG24KVaTyQN55Kg&h=qYE7L_DFyysK8C-1pIo71OUCvNs9JJ3-PuMiUNW2RDI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199021203657&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=wutbccZfFHrROoDMdIbxFg_d6x77ltYhWszBPFwIbCHvRHneyJcqMfB0ro7mdH7PZ7_pWzZJaOz_hfXylUgOT7n_e8LB94PvaTMzK05-O-pPEeBJ-Pj6iTCi5dEY39uJs4iyDipCBsbqg-rdACOH4P494iLj6EuBgHt702cXdcIBSH-AhQQshO6iSpOoSBdQGgl_se9NdTP5MJQ7h4mckDpIYEOJ9K_U_Wz4ERkHaif2hSbSXQio4127XcrxAFJU-xzt87PpchtgfISpP5xyAmFSah650oUK-Lzfn4OmgDjQeLdgQVuCXICaujefhC8m8yIFK56sahs6QGPvqUZwpg&h=h2uQyWH7N89bzyQfayJEuLZXVBQOSwwA_LRxYQOtlUE cache-control: - no-cache content-length: @@ -6145,7 +6341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:17 GMT + - Thu, 10 Sep 2026 06:51:41 GMT expires: - '-1' pragma: @@ -6157,11 +6353,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/45c63b6b-0d3e-4afb-9421-cb3f3580ea01 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/38784091-39ba-411a-8070-d58be3346461 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7E7B84A00CCF48C7ACE25E5BC87208CF Ref B: SYD03EDGE1017 Ref C: 2026-04-21T05:33:17Z' + - 'Ref A: D10F70CF831144F4BC93C53A3AE5C064 Ref B: SYD281080712054 Ref C: 2026-09-10T06:51:41Z' status: code: 200 message: OK @@ -6179,28 +6375,29 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:17.489768+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:17.489768+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/rootregistry/config/read","repositories/repo3/content/read","repositories/repo2/content/read","gateway/rootregistry/message/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo3/metadata/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:40.9368373+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:40.9368373+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","repositories/repo2/metadata/read","gateway/grandchild/message/write","gateway/rootregistry/config/read","repositories/repo2/content/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1303' + - '1283' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:18 GMT + - Thu, 10 Sep 2026 06:51:42 GMT expires: - '-1' pragma: @@ -6212,11 +6409,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/f6913444-54d5-49c0-b773-d3fe1c8b210a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3ec22123-c11a-4ce7-9d00-d201b9d3205a x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B9A125740CFC424F928052A4CB214CAE Ref B: SYD03EDGE0821 Ref C: 2026-04-21T05:33:18Z' + - 'Ref A: 57BC220180A141399A7C9AF96118496C Ref B: SYD281080711031 Ref C: 2026-09-10T06:51:42Z' status: code: 200 message: OK @@ -6234,27 +6431,28 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:33.4658788+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:33.4658788+00:00"},"properties":{"creationDate":"2026-04-21T05:32:33.5612087+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.9469027+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.9469027+00:00"},"properties":{"creationDate":"2026-09-10T06:50:48.2046935+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '833' + - '811' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:20 GMT + - Thu, 10 Sep 2026 06:51:43 GMT expires: - '-1' pragma: @@ -6266,11 +6464,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/f3fc2567-06b4-438c-8f0d-177810db1d7a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/10657a70-bd49-4b42-9ce9-9df7171049bd x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2DDD6F1F15C04D72AB23237F77149748 Ref B: SYD03EDGE1009 Ref C: 2026-04-21T05:33:20Z' + - 'Ref A: 74E80935C27F4724BCE253C010CA8E52 Ref B: SYD281080708042 Ref C: 2026-09-10T06:51:43Z' status: code: 200 message: OK @@ -6288,28 +6486,29 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:32.9293912+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:32.9293912+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.2430893+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.2430893+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '914' + - '892' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:21 GMT + - Thu, 10 Sep 2026 06:51:44 GMT expires: - '-1' pragma: @@ -6321,19 +6520,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/92c1e82c-af67-43ab-ac8c-b18b2fcc23b5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4deea856-3167-4d86-88cd-052c219b1dd2 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D70906DC52AD4C9B94F6D803E499CC58 Ref B: SYD03EDGE1108 Ref C: 2026-04-21T05:33:21Z' + - 'Ref A: E0B690335D634E1088593E2C0C47BAC9 Ref B: SYD281080705052 Ref C: 2026-09-10T06:51:44Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/write", "gateway/grandchild/config/read", - "gateway/grandchild/message/write", "repositories/repo3/metadata/read", "repositories/repo1/content/read", - "gateway/grandchild/message/read", "repositories/repo3/content/read", "repositories/repo2/metadata/read", - "repositories/repo2/content/read", "repositories/repo1/metadata/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "repositories/repo2/content/read", + "repositories/repo3/content/read", "repositories/repo1/metadata/read", "gateway/grandchild/config/read", + "gateway/grandchild/config/write", "gateway/grandchild/message/write", "repositories/repo1/content/read", + "gateway/grandchild/message/read", "repositories/repo2/metadata/read"]}}' headers: Accept: - application/json @@ -6350,30 +6549,31 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:22.5384767+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:22.5384767+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/message/read","repositories/repo3/content/read","repositories/repo2/metadata/read","repositories/repo2/content/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:45.3784269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:45.3784269+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo1/content/read","gateway/grandchild/message/read","repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123464029447365&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=IaQ7jlGrnnATHcHCX8q3EPv6M7TKvwzMi6I32sHhwADHA9faQ2AHVeRFN6wSg6Qitec-t7Jd2ccn62uv_RPhQbTakTU82L3Vl3vtZNJOVAhCfFePiNe5PxtqQFw3M56LdzDHkyqOYxX3m83B_sH16KoQKc0eiyoCXznY3DCzy-pkPPaMkDBbJL34aQgWJfLX3cJ_BnH1v1k5CrqwV0vZOjYwCmRlIGikY2WaAi8ChyPtDtOGPN-AcTaxZyE8lLKAGVVBIY0lf8vOKRddG3WoM0FbFbcit0YBGs4ZRiVpt2Iz0pN7otAl9S6sgiJC5pwpIxw8IbBw93tzLs48nmnoCA&h=SmRUVdFHBR9OZVBVKCCC7mOKDHKkOPKCWOQKb71zokY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199057065901&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=GHZFK2GZUNEpPOkVxnPfgJBrKo5q3Ryu1oevKq4ilLUI5fO7vYeHVFW_xPL9Ihq3vlsDTZzugu6U7UnEwmXVcrEXWu6SKLJUXpp7gax08-mO-Tk14-312StroSxE8ax46XAyfjcyNj4-QhQqId3zhOJ9MCZClwsDecxhZTQ2vU_LRa5jAl88QXIrhCSeJwAqEmM-hgHdwoAc_S_VrB9j5PVK4ecHY4xYUqzqWcoXt-9vW5sEvIev9BCbyjuffQwlXO4VPM9DzLGia-8OrfICGdHr8kLdhTjXSCwtadVzweRa9eURzoVTdUti_ABVnTO5zzplCdx44SEfHwFlEdfExg&h=Mtg_alx-cTbwg6_nWW1O2a50IcCynENSC68f1wfoaHM cache-control: - no-cache content-length: - - '1051' + - '1029' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:22 GMT + - Thu, 10 Sep 2026 06:51:45 GMT expires: - '-1' pragma: @@ -6385,13 +6585,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/e0db10f1-f5ef-49f2-a94e-0630403971c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b14999c2-85ab-4ea6-9de8-74d4f8c69bcb x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 351424FA6DF04E4CB07E4A8EFD47A521 Ref B: SYD03EDGE1418 Ref C: 2026-04-21T05:33:22Z' + - 'Ref A: 31AFFC45E79F41668270D7760BC75B3F Ref B: SYD281080706054 Ref C: 2026-09-10T06:51:45Z' status: code: 201 message: Created @@ -6409,9 +6609,9 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123464029447365&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=IaQ7jlGrnnATHcHCX8q3EPv6M7TKvwzMi6I32sHhwADHA9faQ2AHVeRFN6wSg6Qitec-t7Jd2ccn62uv_RPhQbTakTU82L3Vl3vtZNJOVAhCfFePiNe5PxtqQFw3M56LdzDHkyqOYxX3m83B_sH16KoQKc0eiyoCXznY3DCzy-pkPPaMkDBbJL34aQgWJfLX3cJ_BnH1v1k5CrqwV0vZOjYwCmRlIGikY2WaAi8ChyPtDtOGPN-AcTaxZyE8lLKAGVVBIY0lf8vOKRddG3WoM0FbFbcit0YBGs4ZRiVpt2Iz0pN7otAl9S6sgiJC5pwpIxw8IbBw93tzLs48nmnoCA&h=SmRUVdFHBR9OZVBVKCCC7mOKDHKkOPKCWOQKb71zokY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199057065901&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=GHZFK2GZUNEpPOkVxnPfgJBrKo5q3Ryu1oevKq4ilLUI5fO7vYeHVFW_xPL9Ihq3vlsDTZzugu6U7UnEwmXVcrEXWu6SKLJUXpp7gax08-mO-Tk14-312StroSxE8ax46XAyfjcyNj4-QhQqId3zhOJ9MCZClwsDecxhZTQ2vU_LRa5jAl88QXIrhCSeJwAqEmM-hgHdwoAc_S_VrB9j5PVK4ecHY4xYUqzqWcoXt-9vW5sEvIev9BCbyjuffQwlXO4VPM9DzLGia-8OrfICGdHr8kLdhTjXSCwtadVzweRa9eURzoVTdUti_ABVnTO5zzplCdx44SEfHwFlEdfExg&h=Mtg_alx-cTbwg6_nWW1O2a50IcCynENSC68f1wfoaHM response: body: string: '{"status":"Succeeded"}' @@ -6421,9 +6621,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-94260faf-3d43-11f1-87b6-00155d7ffebd?api-version=2026-03-01-preview&t=639123464041702010&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=XXaDpabtoxKxCzVwFvPKHQ3P2AWcQ9P_hD2FIyx3peGWRlmfE9ojboMt06xOJ--EFGzRmeuQ-xUDThZko6wAlDPSivElW6QZAogUNjXy5dD810JiiuMZUh4v__9Kj7IzGA6Q31FTskXZU3fztO3Xb3zL80E4-q0P4gYTZVcas_3VoUYSsRR_zk8WyGf2NT1Fg22dOKhIlW9ab53-Prm20uVnMhz09eqP1xJMNZYJoCWWprLmpUs8X12vssP_Qz8UUt3KXCAWmr9ms491BKB_bLcWENX7qxRF2ShXqoODjg82iCOVVvSHGtY-d14FcWGvYBXPgbD3e-Hq3Ho4s8_x6A&h=XCp0Q96oywuqEPNGgaR6YncnAXcrUdZawUIn1HlKpOI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-0e662884-ace4-11f1-b764-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199068837707&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=KoavMcsd0mJwzMmgvLKyu7D4g__JM2ITK8w83dT5k8hBIjbqeupJtrkTI-jKavL5uTWiQYAjeJ_RKtrfJMkdysvs7MvqmXfnvErEitD8kPb7ofYm2xN347JO2bWwwQKbqxanqSG-vsjpniEIMlt1hS8ccr4XS2DJVajci0yR18uPr8j5wKgNSKPjDUT3P_E0nQsCvIk-KfPAU4zbAnJg0RDPhd_D0OU80LAsSTMkAvnrAv6Rz_EllyvsesC4Qb3UWH_JOdhz55TCm2RA0m3wmoDIYO0U6TSMZxtVlRnturdHc9RJpEeK5XF9V5TxEhbd3BkG99qimp040FM7eglJfQ&h=0ABb3qb4z8g6SVIOgtPa3ytIOo-Sx5HukXCAdODoEW0 cache-control: - no-cache content-length: @@ -6431,7 +6632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:23 GMT + - Thu, 10 Sep 2026 06:51:46 GMT expires: - '-1' pragma: @@ -6443,11 +6644,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/a63dd976-cd28-4b0f-9b00-66ac570f6347 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/aae3cc20-b2f1-4d04-9ccf-63393e112460 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F9D2D50840604BC880B35370593FB960 Ref B: SYD03EDGE1114 Ref C: 2026-04-21T05:33:23Z' + - 'Ref A: 2F066BB7F2EE4FA98913AD2A3FE0BD26 Ref B: SYD281080708062 Ref C: 2026-09-10T06:51:46Z' status: code: 200 message: OK @@ -6465,28 +6666,29 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:22.5384767+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:22.5384767+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/message/read","repositories/repo3/content/read","repositories/repo2/metadata/read","repositories/repo2/content/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:45.3784269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:45.3784269+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo1/content/read","gateway/grandchild/message/read","repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1052' + - '1030' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:24 GMT + - Thu, 10 Sep 2026 06:51:47 GMT expires: - '-1' pragma: @@ -6498,11 +6700,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/4004c9d7-c7c6-48ba-a9d6-bffe8d6226fe + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/61ebd572-92fd-4371-9f7e-1c90e40660b4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F04F3CB23A954FCB8AE11F9B3C46A9CF Ref B: SYD03EDGE0806 Ref C: 2026-04-21T05:33:24Z' + - 'Ref A: C8B11F045172424B9B961A5C9D37B6AF Ref B: SYD281080712029 Ref C: 2026-09-10T06:51:47Z' status: code: 200 message: OK @@ -6520,21 +6722,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testreg2sxlaqht72xea","name":"testreg2sxlaqht72xea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:54.089971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:54.089971Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testregtdx3rarwoyys4","name":"testregtdx3rarwoyys4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:22.0823646Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testreg2634uyiivsmnn","name":"testreg2634uyiivsmnn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:37.7034045Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:37.7034045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '5775' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:25 GMT + - Thu, 10 Sep 2026 06:51:48 GMT expires: - '-1' pragma: @@ -6546,9 +6748,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6494318283CD4E52A4F7849485754697 Ref B: SYD03EDGE2019 Ref C: 2026-04-21T05:33:25Z' + - 'Ref A: 3388FE7FD744488695B1EAF22F64BA0F Ref B: SYD281080712054 Ref C: 2026-09-10T06:51:49Z' status: code: 200 message: OK @@ -6566,23 +6768,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:26 GMT + - Thu, 10 Sep 2026 06:51:50 GMT expires: - '-1' pragma: @@ -6594,9 +6796,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A56DAF2C646747338F87548B00F51288 Ref B: SYD03EDGE1112 Ref C: 2026-04-21T05:33:26Z' + - 'Ref A: D062341415374170BDA5EBD68FFF514B Ref B: SYD281080709034 Ref C: 2026-09-10T06:51:50Z' status: code: 200 message: OK @@ -6614,23 +6816,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:26 GMT + - Thu, 10 Sep 2026 06:51:51 GMT expires: - '-1' pragma: @@ -6642,9 +6844,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FA9DDE34318F4645849A01DDFF02CB9B Ref B: SYD03EDGE1716 Ref C: 2026-04-21T05:33:26Z' + - 'Ref A: 0ADE10E056E944BE9045E629810545D1 Ref B: SYD281080705062 Ref C: 2026-09-10T06:51:51Z' status: code: 200 message: OK @@ -6662,25 +6864,26 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 0 */2 * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1347' + - '1348' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:27 GMT + - Thu, 10 Sep 2026 06:51:52 GMT expires: - '-1' pragma: @@ -6692,11 +6895,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/850568e3-ed48-4130-8c40-e1b02fbc50f4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2065585a-cc22-473d-bbfa-331ce94c4f20 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CBD0BA2AC2054358B1E017F2B8ADBCE7 Ref B: SYD03EDGE0805 Ref C: 2026-04-21T05:33:27Z' + - 'Ref A: 1E40223E725C4A1195D7191A08C6A2F1 Ref B: SYD281080710062 Ref C: 2026-09-10T06:51:52Z' status: code: 200 message: OK @@ -6714,27 +6917,28 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-04-21T05:33:05.7836295+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '911' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:28 GMT + - Thu, 10 Sep 2026 06:51:53 GMT expires: - '-1' pragma: @@ -6746,11 +6950,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/b2bc0bed-dbca-48c3-9015-f5a6bfffd027 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1ff7ee76-bb79-4bd4-a529-75b27811f327 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D45D752C57464CA58ABA02B8E60FEFDA Ref B: SYD03EDGE0913 Ref C: 2026-04-21T05:33:28Z' + - 'Ref A: 06219483F21A4DC48BC52FCB5F299189 Ref B: SYD281080711060 Ref C: 2026-09-10T06:51:53Z' status: code: 200 message: OK @@ -6768,28 +6972,29 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:17.489768+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:17.489768+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/rootregistry/config/read","repositories/repo3/content/read","repositories/repo2/content/read","gateway/rootregistry/message/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo3/metadata/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:40.9368373+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:40.9368373+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","repositories/repo2/metadata/read","gateway/grandchild/message/write","gateway/rootregistry/config/read","repositories/repo2/content/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1303' + - '1283' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:29 GMT + - Thu, 10 Sep 2026 06:51:54 GMT expires: - '-1' pragma: @@ -6801,11 +7006,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/2a5e695e-6c3e-4314-b62a-e5e3eca0a3f5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/aa0e81ec-b4d4-46df-b4ad-1293c0dcf4e0 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 412105D4DC0E46B2AB1EE2CC7622199F Ref B: SYD03EDGE0806 Ref C: 2026-04-21T05:33:29Z' + - 'Ref A: FB17A0CA22F245B6AC638CFA0831251F Ref B: SYD281080708029 Ref C: 2026-09-10T06:51:55Z' status: code: 200 message: OK @@ -6823,21 +7028,21 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53nvxvjotslqzkeioyoauovk32a3rkw4doquntz6en6bz3rkaj2q35uvd75wkto7a/providers/Microsoft.ContainerRegistry/registries/testregk5uny7gqdbcht","name":"testregk5uny7gqdbcht","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:44.3003823Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:44.3003823Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testregtdx3rarwoyys4","name":"testregtdx3rarwoyys4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:22.0823646Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testreg2634uyiivsmnn","name":"testreg2634uyiivsmnn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:37.7034045Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:37.7034045Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4584' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:30 GMT + - Thu, 10 Sep 2026 06:51:56 GMT expires: - '-1' pragma: @@ -6849,9 +7054,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A444E8353DED4DC9A44222EE7F0DFBE3 Ref B: SYD03EDGE1719 Ref C: 2026-04-21T05:33:29Z' + - 'Ref A: EB6A237469AD4AEA8ABB37C99FCEAD37 Ref B: SYD281080710025 Ref C: 2026-09-10T06:51:56Z' status: code: 200 message: OK @@ -6869,23 +7074,23 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:30 GMT + - Thu, 10 Sep 2026 06:51:56 GMT expires: - '-1' pragma: @@ -6897,9 +7102,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 49117B6BD7064D59824F4BB6BC7DE602 Ref B: SYD03EDGE1422 Ref C: 2026-04-21T05:33:30Z' + - 'Ref A: B12E59A4EB71440CBE08B1323FED2257 Ref B: SYD281080707025 Ref C: 2026-09-10T06:51:57Z' status: code: 200 message: OK @@ -6917,31 +7122,32 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 - 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:36.6833803+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:36.6833803+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:51.5072279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:51.5072279+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}]}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '5004' + - '5008' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:31 GMT + - Thu, 10 Sep 2026 06:51:58 GMT expires: - '-1' pragma: @@ -6953,11 +7159,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/6cf95fc2-07fd-4893-8bb7-87a60bb26f51 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9df746d0-dd79-4e92-be05-17cbf6003313 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C75E6C78EC1346D294CE32EE0AA1ED87 Ref B: SYD03EDGE2107 Ref C: 2026-04-21T05:33:31Z' + - 'Ref A: 9AD67829984A44AD87BC238C30B0237D Ref B: SYD281080708025 Ref C: 2026-09-10T06:51:58Z' status: code: 200 message: OK @@ -6975,27 +7181,28 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:31 GMT + - Thu, 10 Sep 2026 06:51:58 GMT expires: - '-1' pragma: @@ -7007,11 +7214,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/f3dac671-ce9f-4c6f-8755-7b3b4ab11f52 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fa91faa1-4ae2-4aa6-98fb-edebce01ff46 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B3721966CBB944C0BDCCD5C961077AA9 Ref B: SYD03EDGE2011 Ref C: 2026-04-21T05:33:31Z' + - 'Ref A: 733BED983D1A4493A9BE7E86A3ECEFDB Ref B: SYD281080710060 Ref C: 2026-09-10T06:51:59Z' status: code: 200 message: OK @@ -7029,28 +7236,29 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:12.1164212+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:12.1164212+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/write","gateway/child/config/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:36.3708741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:36.3708741+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo3/content/read","gateway/child/message/write","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1153' + - '1131' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:33 GMT + - Thu, 10 Sep 2026 06:52:00 GMT expires: - '-1' pragma: @@ -7062,19 +7270,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/8bf35b9a-ef9e-4f3f-9e16-05d899d606a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9746e36e-26a1-46d0-90f6-f9b465b70d58 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D2219A0C25AF4953BF7F00A1E7EEA8D8 Ref B: SYD03EDGE1107 Ref C: 2026-04-21T05:33:32Z' + - 'Ref A: 9AA2CEF6A7834E89AB071723E0522D68 Ref B: SYD281080710034 Ref C: 2026-09-10T06:52:00Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/write", "gateway/grandchild/config/read", - "gateway/grandchild/message/write", "repositories/repo3/metadata/read", "gateway/child/config/read", - "gateway/grandchild/message/read", "repositories/repo3/content/read", "gateway/child/config/write", - "gateway/child/message/write", "gateway/child/message/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "repositories/repo3/content/read", + "gateway/child/message/write", "gateway/grandchild/config/read", "gateway/grandchild/config/write", + "gateway/child/message/read", "gateway/child/config/read", "gateway/child/config/write", + "gateway/grandchild/message/read", "gateway/grandchild/message/write"]}}' headers: Accept: - application/json @@ -7091,30 +7299,31 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:34.1415926+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:34.1415926+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:01.2213973+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:01.2213973+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/message/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464145635071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=nVKbrE-wHOLqJYZRG9P5IxPBgwcriT2gPr0IUzuEYimkSHHo-4crvilAs-NpByUw37_Jk43Y8SQWikpY6W1StKvIKYwEMp10EGKHYStQeutheV_KDzvXrdhsD06NdpzAcaTpOIGfEFFACAQCg_GBJsVIuRgKqSR5YdMs1KrsYFXK_ujaV1P2fgwP14K8IttslDNLkooOv4AX-fC-D0LyURhBCajEVU2IG2d9XebreDpeN99xRqrl-N5pAGWVM7DI-RERrXl1gWGTwHtPuXcy2eZI0S1LMGzXnguglQLixdxnxvDhSFaxWJJst7KXXMuv2ipWonD31eYp1wVwzHkX1g&h=MBlwF0Z8waycVqRheqVj_ZAUy12zTPP5xnVlbVWa2Ek + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199215495437&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=dEp2dAsMWSbtNJCoOaiol0MN2Xzf6L18cUUxqu8Tch449s-mP08QcUGrb58Wn6Hpft0STwRV8j9ghUGYP5dQQq_T8F4P1kSwLOahD8qwLrxyH9tKpUlBjZScaCoN6CSI25FOzs1dxB6uuB2laKUf5h1kwt76q0y5WVmya8wyM7InxjkT_IdlGfUnB1Y3plR4Eik-iN33syHVyC7oEc_4ibyc0kGqSxWsKeKZp0ibskwXZPqkrBwwBz2xLQpFJBaKUW4ovOruYJN2mEYZtTAP-j58ewqvBSiu9e2gByg7gj0y3OQ4-ukFb5O2CjqL0Qag6DkqgTBh2dtFV1fSIln2kA&h=F2NhecFaKD6cZZCRe6YyBMs7thPFuCMii272NBa4I7Q cache-control: - no-cache content-length: - - '1014' + - '992' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:34 GMT + - Thu, 10 Sep 2026 06:52:00 GMT expires: - '-1' pragma: @@ -7126,13 +7335,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/06ca6fb6-41fa-45af-a785-7baaf0daf346 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/45c94311-74ea-4a4c-acea-f6bdedd56ba8 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 5810D1E7FFD64492A868B9A79032212C Ref B: SYD03EDGE1015 Ref C: 2026-04-21T05:33:33Z' + - 'Ref A: B683880D601D4BCF8F3320E0AA66B9EE Ref B: SYD281080706023 Ref C: 2026-09-10T06:52:01Z' status: code: 201 message: Created @@ -7150,65 +7359,9 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464145635071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=nVKbrE-wHOLqJYZRG9P5IxPBgwcriT2gPr0IUzuEYimkSHHo-4crvilAs-NpByUw37_Jk43Y8SQWikpY6W1StKvIKYwEMp10EGKHYStQeutheV_KDzvXrdhsD06NdpzAcaTpOIGfEFFACAQCg_GBJsVIuRgKqSR5YdMs1KrsYFXK_ujaV1P2fgwP14K8IttslDNLkooOv4AX-fC-D0LyURhBCajEVU2IG2d9XebreDpeN99xRqrl-N5pAGWVM7DI-RERrXl1gWGTwHtPuXcy2eZI0S1LMGzXnguglQLixdxnxvDhSFaxWJJst7KXXMuv2ipWonD31eYp1wVwzHkX1g&h=MBlwF0Z8waycVqRheqVj_ZAUy12zTPP5xnVlbVWa2Ek - response: - body: - string: '{"status":"Updating"}' - headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, - 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464151873150&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=fW5916kl8FZRtBD9zIdzTdiwczRLaTzRNKO3LQ-I5uW_obArHajVQtPbmVWGbDltBrOtr0YF00_PZ0RCtKBgqONx-16RTjWeXUEoc4x3wVuHD9GP4_eUqypRjZz3IZl3CBec33VSZLrzEf2tX7rpeRvEa2x26Cu7v_1fMQgI2fHive3X3S1MCpyPcYUdA6Nsic6NVawBvTc2WH7OE16_ML-vn89Xt6b9eYsMx2fEXIQ7AmU-ay6__Paic6RAL4pfRVrCldyZmVNr3lH4-yHYEz77pASE9qvPSmjCm_9LowoEjfnHIAmHdreNCjkr61VBuzFO-wYqEJWjD2MHrVNHmw&h=z2TonPE2lx9amqZKM0LCW65y3F_zo4CUYgcRAJHIcpU - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 21 Apr 2026 05:33:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/65ac3f81-e9e8-49b6-9e22-8109d265d69a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7AE119FB64CF42B69E48FCCC2F4404A9 Ref B: SYD03EDGE1107 Ref C: 2026-04-21T05:33:34Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr connected-registry permissions update - Connection: - - keep-alive - ParameterSetName: - - -n -r --remove - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464145635071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=nVKbrE-wHOLqJYZRG9P5IxPBgwcriT2gPr0IUzuEYimkSHHo-4crvilAs-NpByUw37_Jk43Y8SQWikpY6W1StKvIKYwEMp10EGKHYStQeutheV_KDzvXrdhsD06NdpzAcaTpOIGfEFFACAQCg_GBJsVIuRgKqSR5YdMs1KrsYFXK_ujaV1P2fgwP14K8IttslDNLkooOv4AX-fC-D0LyURhBCajEVU2IG2d9XebreDpeN99xRqrl-N5pAGWVM7DI-RERrXl1gWGTwHtPuXcy2eZI0S1LMGzXnguglQLixdxnxvDhSFaxWJJst7KXXMuv2ipWonD31eYp1wVwzHkX1g&h=MBlwF0Z8waycVqRheqVj_ZAUy12zTPP5xnVlbVWa2Ek + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199215495437&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=dEp2dAsMWSbtNJCoOaiol0MN2Xzf6L18cUUxqu8Tch449s-mP08QcUGrb58Wn6Hpft0STwRV8j9ghUGYP5dQQq_T8F4P1kSwLOahD8qwLrxyH9tKpUlBjZScaCoN6CSI25FOzs1dxB6uuB2laKUf5h1kwt76q0y5WVmya8wyM7InxjkT_IdlGfUnB1Y3plR4Eik-iN33syHVyC7oEc_4ibyc0kGqSxWsKeKZp0ibskwXZPqkrBwwBz2xLQpFJBaKUW4ovOruYJN2mEYZtTAP-j58ewqvBSiu9e2gByg7gj0y3OQ4-ukFb5O2CjqL0Qag6DkqgTBh2dtFV1fSIln2kA&h=F2NhecFaKD6cZZCRe6YyBMs7thPFuCMii272NBa4I7Q response: body: string: '{"status":"Succeeded"}' @@ -7218,9 +7371,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464252271678&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=I63kOmRFT7ghWRmoxpjd7uG1k0Xv0DFNe2j1cr4N9qSSecl1L87tx1_IjiMI_DmQ4xO5AvtmDv7vVeExfFXWYlTnLT-YSExVJSI-5TrtDQ1ZxWiXNR0aMx5HEpKtxDzGFhVp2tsQJGSrthEDmMx_v2LDLf2Pi3IjWp_X65egbghadz6tfQkZCRf50c0quPV8r7vam87DsMM87ZcQzLZD6Af68weIxOgGNUqtGWiuU0TeiaensxLxfG0lrQDXQ2OG5zUggoupkR547_zgYnxf0J-AZiGw-XQNnQ9CTF_VJdnHYmFQIVrJIQeRJWIT5B3rgypDvRiebiJXC8tdrGk5vQ&h=8qyd3-bWh6OsjJcZmco8RMHtNBCAImeaSc3cw7sj0fE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199224539532&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Vw07Tk-rsB63BQTV0zXvwamK-UfjsN-9EDF_29IB0xyztDsRSzDnBKdNb3eQTXfqDrwfdOUfHfxk4-_knkkggdUQYXF_kruo6UB1TYCmYgmX-Rzi1cq9HNUr7aT5z2C3tDYpDILSeYzHpXqiKVHLibkAINzNWzmZR-CMcXeU_SFNnYz9l9jBMlSo11SP328_6NH8nLtJiynItR_inGe8biWzW4mEfhUSjFmEhh9u5YsUTPrLSbMDoEaga571ujtRJPT55IN85Q2h3YJjwyw3loZrVBOYcm8aH4aa3YPspevGdVjF9bDSbW1NKZknsVVtr58JLnl7uhSUsRjTsjrttw&h=E8jkI3rwZiL_PID5qO0D8Fl1nuufDfQP78RjxjX-wMQ cache-control: - no-cache content-length: @@ -7228,7 +7382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:44 GMT + - Thu, 10 Sep 2026 06:52:01 GMT expires: - '-1' pragma: @@ -7240,11 +7394,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/25ad0e67-264e-4ebf-9b69-aa3adca2a3b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/bc95d19a-4f8c-4751-91ff-91e52944cf5b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 39CFE791C65D42F59AB57C8908AF4DE7 Ref B: SYD03EDGE1410 Ref C: 2026-04-21T05:33:44Z' + - 'Ref A: 198D03E520E2431AA5DB21C97727F8A6 Ref B: SYD281080707025 Ref C: 2026-09-10T06:52:02Z' status: code: 200 message: OK @@ -7262,28 +7416,29 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:34.1415926+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:34.1415926+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:01.2213973+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:01.2213973+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/message/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1015' + - '993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:45 GMT + - Thu, 10 Sep 2026 06:52:03 GMT expires: - '-1' pragma: @@ -7295,11 +7450,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/9ca4c36e-a088-4d6d-8916-398dec46d489 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2fddc539-641f-4215-b66a-ff101e4eadbc x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BAAE43D8A88D4A8F85CA6B6D82B63D6B Ref B: SYD03EDGE1318 Ref C: 2026-04-21T05:33:45Z' + - 'Ref A: 7FFF62FDC19449DE9034AF4C765CAA92 Ref B: SYD281080710029 Ref C: 2026-09-10T06:52:03Z' status: code: 200 message: OK @@ -7317,27 +7472,28 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:33.4658788+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:33.4658788+00:00"},"properties":{"creationDate":"2026-04-21T05:32:33.5612087+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.9469027+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.9469027+00:00"},"properties":{"creationDate":"2026-09-10T06:50:48.2046935+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '833' + - '811' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:47 GMT + - Thu, 10 Sep 2026 06:52:03 GMT expires: - '-1' pragma: @@ -7349,11 +7505,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/114a50d2-dd06-4a86-926e-282c00731df5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/192ec08e-c5f7-495a-a32b-af3b808a41e6 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 604BEEE891CF455C9BF63F28CC478CCA Ref B: SYD03EDGE0821 Ref C: 2026-04-21T05:33:47Z' + - 'Ref A: 799D634DF6DF430A9C4639BCA40470FB Ref B: SYD281080711052 Ref C: 2026-09-10T06:52:04Z' status: code: 200 message: OK @@ -7371,28 +7527,29 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:22.5384767+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:22.5384767+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/message/read","repositories/repo3/content/read","repositories/repo2/metadata/read","repositories/repo2/content/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:45.3784269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:45.3784269+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo1/content/read","gateway/grandchild/message/read","repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1052' + - '1030' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:48 GMT + - Thu, 10 Sep 2026 06:52:05 GMT expires: - '-1' pragma: @@ -7404,18 +7561,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/0a0446e2-8be9-40b9-ad52-47538f114436 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/39d52937-a93f-479a-8b87-11415cff5a8c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8B47612D03094E2DAC7B2B05C7C835A8 Ref B: SYD03EDGE1107 Ref C: 2026-04-21T05:33:47Z' + - 'Ref A: 5D72BB1C2A134AA0AA139E44A5CB20B2 Ref B: SYD281080710042 Ref C: 2026-09-10T06:52:05Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/write", "gateway/grandchild/config/read", - "gateway/grandchild/message/write", "repositories/repo3/metadata/read", "gateway/grandchild/message/read", - "repositories/repo3/content/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "repositories/repo3/content/read", + "gateway/grandchild/config/read", "gateway/grandchild/config/write", "gateway/grandchild/message/read", + "gateway/grandchild/message/write"]}}' headers: Accept: - application/json @@ -7432,30 +7589,31 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:48.9470609+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:48.9470609+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","gateway/grandchild/message/read","repositories/repo3/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:06.4717318+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:06.4717318+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464291345173&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=fuINTIh_2G_gEA7-3RCgB8AO7SyR6oJbiMYzli4CjI0M6UX1fMhZOjCyZfQkhRHpQwajzNDRsn0psJoZTTuKAKO0t_AK8RgR_sZc66KicrDYJhF-sy0RNt_rrqEi9eLDEJzuZFUWoxQlSrttMFiNeVwuM2QjgY4Xb1h8NsrgT6OqxlKievVISYmwspHnxwtQCLd-gS2xQj4rdNQREeQIGpFxY-tgTGB4SLoPPFTdXQrmxYtXNQw1UEcL5FL5Q-B1S4d_QpXt0uBvkVoWixtEBR30Ph6XVS9iKkAK3VxjC3AYC9mma6vcXS-eiekIGHu2hrQh1YcdaxfYkBu448FV-A&h=1TbEB86Hd45Zhx2IA3I5ar2l56Ftl_JgIhVZ56zYNRk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199267842537&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cOM29Qn0rmqTNtnpf6ZnBq_aMS57I97rOGKdqkEmNSzgKd9DuVSf6-L7Eov-YfXfL5GvE18MoOPnfGaohFpvcd7bY8qLnynRr65U05WoUvxyq7w0GqooR5NblCTbEo1mJAyvQ8eUUyXOYwby4Mq8e5XXLSiK-KkOziNZQ2n3RYLtiEu1kzBekhr6fE6EbHoWId7t5CZbvOCEAIekOv9nRVRRXQX4pmMLXWJBHlxilSFwDa8zx3m7Y3NidS7W7as-0YjWSaX5so_s2I5JOtXRc2HmFoqsGdnmwegoGBgzaWyiIh-C6bfb2AAPHNoPp5aTipqKxJoeRjZ8jycULZX4-w&h=MR5O_BRRAqVZqIA_E4uNYYnZVFvTuZw_QxaY2zsJnO4 cache-control: - no-cache content-length: - - '913' + - '891' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:48 GMT + - Thu, 10 Sep 2026 06:52:05 GMT expires: - '-1' pragma: @@ -7467,13 +7625,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/abd10488-e1f3-4d82-b506-d3feb25faf4f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d75ca9ed-3595-40f3-b19e-6428ae9c242c x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 1135768F71D744E49454277B4F201041 Ref B: SYD03EDGE1320 Ref C: 2026-04-21T05:33:48Z' + - 'Ref A: E174B3E267764E97BB0796B7D1A6F85B Ref B: SYD281080712036 Ref C: 2026-09-10T06:52:06Z' status: code: 201 message: Created @@ -7491,9 +7649,9 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464291345173&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=fuINTIh_2G_gEA7-3RCgB8AO7SyR6oJbiMYzli4CjI0M6UX1fMhZOjCyZfQkhRHpQwajzNDRsn0psJoZTTuKAKO0t_AK8RgR_sZc66KicrDYJhF-sy0RNt_rrqEi9eLDEJzuZFUWoxQlSrttMFiNeVwuM2QjgY4Xb1h8NsrgT6OqxlKievVISYmwspHnxwtQCLd-gS2xQj4rdNQREeQIGpFxY-tgTGB4SLoPPFTdXQrmxYtXNQw1UEcL5FL5Q-B1S4d_QpXt0uBvkVoWixtEBR30Ph6XVS9iKkAK3VxjC3AYC9mma6vcXS-eiekIGHu2hrQh1YcdaxfYkBu448FV-A&h=1TbEB86Hd45Zhx2IA3I5ar2l56Ftl_JgIhVZ56zYNRk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199267842537&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cOM29Qn0rmqTNtnpf6ZnBq_aMS57I97rOGKdqkEmNSzgKd9DuVSf6-L7Eov-YfXfL5GvE18MoOPnfGaohFpvcd7bY8qLnynRr65U05WoUvxyq7w0GqooR5NblCTbEo1mJAyvQ8eUUyXOYwby4Mq8e5XXLSiK-KkOziNZQ2n3RYLtiEu1kzBekhr6fE6EbHoWId7t5CZbvOCEAIekOv9nRVRRXQX4pmMLXWJBHlxilSFwDa8zx3m7Y3NidS7W7as-0YjWSaX5so_s2I5JOtXRc2HmFoqsGdnmwegoGBgzaWyiIh-C6bfb2AAPHNoPp5aTipqKxJoeRjZ8jycULZX4-w&h=MR5O_BRRAqVZqIA_E4uNYYnZVFvTuZw_QxaY2zsJnO4 response: body: string: '{"status":"Succeeded"}' @@ -7503,9 +7661,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464304412195&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=lgaUFX2bvU21Nsad6CbymgmCtoi9RBDdRVM9lp6PFYt4348l7NZ_6MNGmSz5Z-nAB9N-tmA7FVia_RmqGuRAAAFWQWwCmeVSWqHylf58RhyYzO0CvwUoXG8iK51zLsJ-yMDgKFOX3GMgFc5vltTnA3UrLucxhC6RRyCCcw3R4-GAXWTpiBFvSHG3E5VH9dms22EYEc8i9Vokk-77t4rda9b3aEO1CK8ez5ZeAYcnBFRzxrILkTL9v8wTa9n_IC1vNkcgsBrg0dwR1eaZlRiYHqY6eARLCnLiocghg2pXAkm-T3k8MskuWpE2iiqM2yc35GM6oRJDERoNGr_QgPtWEQ&h=pMmj5-j0SMfDJLc5OweNB3qUne5X5wmkpAjuzbRpBqQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199278761725&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ZBE38P1JG1-eCCrR1n_lIu-S0Bun7Ni7pl102SiImhNynfhzzkia1eKvFYigp8gQTPHDFcyEGSOEmMMl92YHaqUm1WfA69KI088xrWPioI7-qWHxJJSH51pi-yFh6rimFMkLjwKcIKmUrOs4w0-ZfItE24YYc0z1Wm2Mt-0Pq1fzPYJW8VL8VEIREZ8-PT9kFCHHv57ylrfXCHE9Mr3fzzZqzJqJgYgNFb7_9I5azHN9fjBQY59P5ph14Xy0kKTix9JAWeFvdoOnM0oag9hwIYsLZf6OnBwKrYJwZmVJ3xtbY0I_Bb4yZxG2RAmbwmLvT9MF7fo9xQZBm-KzPHcWhA&h=8TC-R8TMPGsVb1ymTdB79v6H9x6zjb3ahdDTu0SWY-w cache-control: - no-cache content-length: @@ -7513,7 +7672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:50 GMT + - Thu, 10 Sep 2026 06:52:07 GMT expires: - '-1' pragma: @@ -7525,11 +7684,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/e4e3c7df-f0ea-4031-9d87-30bab4af632c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2c4e4e39-8849-4720-be55-4822158b7beb x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8EA7D0E1F9364612AC723ECA9F7DB402 Ref B: SYD03EDGE1417 Ref C: 2026-04-21T05:33:49Z' + - 'Ref A: BA223339C27F4878BD944CD6E317536A Ref B: SYD281080711025 Ref C: 2026-09-10T06:52:07Z' status: code: 200 message: OK @@ -7547,28 +7706,29 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:48.9470609+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:48.9470609+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","gateway/grandchild/message/read","repositories/repo3/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:06.4717318+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:06.4717318+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '914' + - '892' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:50 GMT + - Thu, 10 Sep 2026 06:52:08 GMT expires: - '-1' pragma: @@ -7580,11 +7740,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/b4fb0207-19ee-417d-a8c5-03311d378874 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/57271f02-b9c4-44c4-b705-16b674bfa42e x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 04EA20C3EDF4445284435C37F6B887D6 Ref B: SYD03EDGE1909 Ref C: 2026-04-21T05:33:50Z' + - 'Ref A: BFEE625CF56C49C8819CEF7F2131B393 Ref B: SYD281080708052 Ref C: 2026-09-10T06:52:08Z' status: code: 200 message: OK @@ -7602,27 +7762,28 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-04-21T05:33:05.7836295+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '911' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:50 GMT + - Thu, 10 Sep 2026 06:52:10 GMT expires: - '-1' pragma: @@ -7634,11 +7795,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/79539361-b65d-4634-bb7e-ebdee5b6cf9b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9511ac91-2f48-4c9a-ac69-965c33845e3d x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 106C7DDBEADB4632A28620622D121FEC Ref B: SYD03EDGE2114 Ref C: 2026-04-21T05:33:51Z' + - 'Ref A: ECC859B1BDA441F29AF0D177768F18D3 Ref B: SYD281080712060 Ref C: 2026-09-10T06:52:09Z' status: code: 200 message: OK @@ -7656,28 +7817,29 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:17.489768+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:17.489768+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/rootregistry/config/read","repositories/repo3/content/read","repositories/repo2/content/read","gateway/rootregistry/message/write","repositories/repo2/metadata/read","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo3/metadata/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:40.9368373+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:40.9368373+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","repositories/repo2/metadata/read","gateway/grandchild/message/write","gateway/rootregistry/config/read","repositories/repo2/content/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1303' + - '1283' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:52 GMT + - Thu, 10 Sep 2026 06:52:10 GMT expires: - '-1' pragma: @@ -7689,20 +7851,20 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/acd0e6f8-50cf-47e2-9beb-75009b341122 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8510934e-a7a4-4f6b-9bc1-9fe9e82f1309 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0425511EF7E143B9A3790ABFB78F485E Ref B: SYD03EDGE1422 Ref C: 2026-04-21T05:33:52Z' + - 'Ref A: 8942DA6407394E9F880D24BF0D4EAEB1 Ref B: SYD281080705054 Ref C: 2026-09-10T06:52:10Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/rootregistry/config/write", "gateway/grandchild/message/write", - "gateway/grandchild/config/read", "gateway/grandchild/config/write", "repositories/repo3/metadata/read", - "gateway/rootregistry/config/read", "gateway/child/config/read", "gateway/grandchild/message/read", - "repositories/repo3/content/read", "gateway/rootregistry/message/write", "gateway/child/config/write", - "gateway/child/message/write", "gateway/rootregistry/message/read", "gateway/child/message/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "repositories/repo3/content/read", + "gateway/child/message/write", "gateway/rootregistry/message/read", "gateway/grandchild/config/read", + "gateway/grandchild/config/write", "gateway/rootregistry/config/write", "gateway/grandchild/message/write", + "gateway/child/message/read", "gateway/child/config/read", "gateway/rootregistry/message/write", + "gateway/child/config/write", "gateway/grandchild/message/read", "gateway/rootregistry/config/read"]}}' headers: Accept: - application/json @@ -7719,30 +7881,31 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:53.9282234+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:53.9282234+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Updating","actions":["gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:12.0495455+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:12.0495455+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464343032546&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=C1uwv4u_meNyX0c1QJVl7-ZKSvbzOYi2ot4LI7M-5JHG9ps0w7slhIZuNwQc0elMK0k1Bs-dU7JGhkqEXpp2nYMXcvTbUSYfm6p2s1NodwWrvsZYUP4rYQJjvWS_NciPDElQ3n64wZu9XF5tN5CI192WRwBS3hAmfuf5xBz6WRCG_qFrskgux5C7UL783uuT6SVzHeA4Pt-WHDNJsKwb0YFk6qxvLo_swjik-GSBne_C0dvJ8ZBpuLm2qjdcZQafjULuVV6q2WqOxTK2IoUJoVcPzitY3ZNPp4A6CQ-M882MAvWoM0F6bHg6Zy0GSTHg5DI7vOgWZ28Pbv_c_9u3gg&h=LN-MpEjTTH971JjYCxkDIosAaYYL8BMjo58ORBubPvQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199323629094&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=fkyvFCWOoACNuGJ4nkHRFSGIRarmiETfeZncyBbfNt26Rw6RZr8LR_8zhEQfbYGTyb_IxIQTpjELuP0e8TUY7gTV-zdTRZohi-IzyUBIjkpRipXqIqhhGNk6hKz93izL3UQp2b_cr7wZpblfwXmtcWx6d77f0Pt8v5e9uxwdd0vFL_fiZ7a03tc_nnn9voTurqfqVDIV3xAhbrIaRjEWkEQfuZq5oHk435zceDFuV6hYn62_TiORpdtwz9eH3wwD_EdpPinLxpIExdkM2o9UxRxTk-E48t1ZrHEybAmgzpoVnvuNkmkin3NP9pNJJn2TEN3aoSNIR5XxYF-2uX3abA&h=CoRyUbAwx2qXhMq8Q2w3Tzgi0AkvxHAL_D32TJUKlJU cache-control: - no-cache content-length: - - '1166' + - '1144' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:54 GMT + - Thu, 10 Sep 2026 06:52:12 GMT expires: - '-1' pragma: @@ -7754,13 +7917,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/fe066239-d2a7-4c00-bcdc-b0aa0320b3a6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4332132e-a086-48f5-a8eb-c716ccac0826 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 75A1ED1DD0DE4100B8878FA85471FE02 Ref B: SYD03EDGE1911 Ref C: 2026-04-21T05:33:52Z' + - 'Ref A: 786FCBA122454CF3A0945237F9CD5F6F Ref B: SYD281080709031 Ref C: 2026-09-10T06:52:11Z' status: code: 201 message: Created @@ -7778,9 +7941,9 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464343032546&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=C1uwv4u_meNyX0c1QJVl7-ZKSvbzOYi2ot4LI7M-5JHG9ps0w7slhIZuNwQc0elMK0k1Bs-dU7JGhkqEXpp2nYMXcvTbUSYfm6p2s1NodwWrvsZYUP4rYQJjvWS_NciPDElQ3n64wZu9XF5tN5CI192WRwBS3hAmfuf5xBz6WRCG_qFrskgux5C7UL783uuT6SVzHeA4Pt-WHDNJsKwb0YFk6qxvLo_swjik-GSBne_C0dvJ8ZBpuLm2qjdcZQafjULuVV6q2WqOxTK2IoUJoVcPzitY3ZNPp4A6CQ-M882MAvWoM0F6bHg6Zy0GSTHg5DI7vOgWZ28Pbv_c_9u3gg&h=LN-MpEjTTH971JjYCxkDIosAaYYL8BMjo58ORBubPvQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199323629094&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=fkyvFCWOoACNuGJ4nkHRFSGIRarmiETfeZncyBbfNt26Rw6RZr8LR_8zhEQfbYGTyb_IxIQTpjELuP0e8TUY7gTV-zdTRZohi-IzyUBIjkpRipXqIqhhGNk6hKz93izL3UQp2b_cr7wZpblfwXmtcWx6d77f0Pt8v5e9uxwdd0vFL_fiZ7a03tc_nnn9voTurqfqVDIV3xAhbrIaRjEWkEQfuZq5oHk435zceDFuV6hYn62_TiORpdtwz9eH3wwD_EdpPinLxpIExdkM2o9UxRxTk-E48t1ZrHEybAmgzpoVnvuNkmkin3NP9pNJJn2TEN3aoSNIR5XxYF-2uX3abA&h=CoRyUbAwx2qXhMq8Q2w3Tzgi0AkvxHAL_D32TJUKlJU response: body: string: '{"status":"Succeeded"}' @@ -7790,9 +7953,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-a1fa172f-3d43-11f1-bf1b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464356286791&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=nRZLfFGiF9NFq-qU2Gf3MzrT8_JX-0qaglGdWOftnuXiFfn_f5Ql0UQHJ_5VWCyozwsA0FWiYTEFw9ItdoeFi63bPcqXp60rwO9FnyPzYo7kA1UPLZBR1OFcdqZFEOifDvV6W6e2vXGZhmeRQP9lCzQDpYt9k3BLmSQb6h99v__gt4mWAub3pETTebao_2lJI7UYcdA0KbtK3F_GCtlQSJjpUXNqdDs8zfQdpb7H_T72qGYs_WQQSMPchwSerbLHkWzCV1LfdsfsqaJr9pA9RuwXPZzIow2rNLB_Ds58QliSQn5_GSIfTvuyjV0bXi5kcnXGfaCNLtlzfPJ_oBmrKw&h=cNDhwZEbzWG0jG_3tKzrv8FrElQ0n9fVdCiFPcWqJNY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-1d453587-ace4-11f1-b2be-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199339025182&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=vmqvdy1hPXcozF1NFURHW252uzUZsKb6s29jjZKXYkAqrngXS3dZGkIalMSr90-sFh3C035VuTcn_s84juLvfb84Twc3MjV_ZOme_psvgEb2UKHK9gtmxIr8BiOGpyVi5Q2HRjEUBnaXo2YxpQGPcUXNpzCuyPcv8H3JrKzV6fVhYlO7ZBrh01HQVKG_GFZhnxgg3S3Fx9nRKzjIinnOQkC8pdYYHa1VQV-3mHupcrELS213g-pFu5h7RzY3g7JeI7AkBEI2yHMDFtb6zVijCGYu0Pn-7JsxFxtvDx-g4bJBvks_jhcGt4ZeE-3Jw4_pqfP7ZS6WOTdPLup05qoi8A&h=ZPOq9mUALt5RR06WIYOlq4Ta4wv5ziA8ElGetpmPgCg cache-control: - no-cache content-length: @@ -7800,7 +7964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:55 GMT + - Thu, 10 Sep 2026 06:52:13 GMT expires: - '-1' pragma: @@ -7812,11 +7976,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/60fbde8e-205a-4ef5-939c-c645b93b4c52 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b0bb78ca-c79d-460d-bb06-9925ba12d58d x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9219A7D9002D49649DA0D368A1F1C7AC Ref B: SYD03EDGE1309 Ref C: 2026-04-21T05:33:54Z' + - 'Ref A: 5659CCDA64A548DA84B51804A00B7A59 Ref B: SYD281080710052 Ref C: 2026-09-10T06:52:13Z' status: code: 200 message: OK @@ -7834,28 +7998,29 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:53.9282234+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:53.9282234+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:12.0495455+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:12.0495455+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1167' + - '1145' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:55 GMT + - Thu, 10 Sep 2026 06:52:13 GMT expires: - '-1' pragma: @@ -7867,11 +8032,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/bd06193f-b9c5-4d2c-b57d-dc12ac1ce0b8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/deaa4873-d105-41a1-960d-bdb91d7e4720 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 5394596A9640418BA8B51E9EC1E16F4E Ref B: SYD03EDGE0913 Ref C: 2026-04-21T05:33:55Z' + - 'Ref A: 6B184856E4F84E5B8C4F3D15EACAC0DF Ref B: SYD281080705054 Ref C: 2026-09-10T06:52:14Z' status: code: 200 message: OK @@ -7889,21 +8054,21 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testregtdx3rarwoyys4","name":"testregtdx3rarwoyys4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:22.0823646Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testreg2634uyiivsmnn","name":"testreg2634uyiivsmnn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:37.7034045Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:37.7034045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg655cu3gaqkh7glauf2faegro7zr7yrps7a5dzoh52gbxjl7u7jeaelbw6wjn27hpg/providers/Microsoft.ContainerRegistry/registries/testregyqmmvcqby7hmh","name":"testregyqmmvcqby7hmh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:52.1487214Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '4584' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:56 GMT + - Thu, 10 Sep 2026 06:52:15 GMT expires: - '-1' pragma: @@ -7915,9 +8080,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4519792E553144E2A200F6095CDAEF4C Ref B: SYD03EDGE1420 Ref C: 2026-04-21T05:33:56Z' + - 'Ref A: 86BD0F98530A4FAAB65F60A1FA819046 Ref B: SYD281080707054 Ref C: 2026-09-10T06:52:15Z' status: code: 200 message: OK @@ -7935,23 +8100,23 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:57 GMT + - Thu, 10 Sep 2026 06:52:16 GMT expires: - '-1' pragma: @@ -7963,9 +8128,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F702F85DFCD74E8E8D9FDD4FE7AA3569 Ref B: SYD03EDGE0909 Ref C: 2026-04-21T05:33:57Z' + - 'Ref A: D048D9657BDE4A9F92D34754776F53A8 Ref B: SYD281080710054 Ref C: 2026-09-10T06:52:16Z' status: code: 200 message: OK @@ -7983,31 +8148,32 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 - 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:36.6833803+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:36.6833803+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:51.5072279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:51.5072279+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}]}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '5004' + - '5008' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:57 GMT + - Thu, 10 Sep 2026 06:52:16 GMT expires: - '-1' pragma: @@ -8019,11 +8185,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/7360a94e-b43d-4774-88f8-bf111617d21d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ff3cf692-48c7-4dee-b575-df46437f60cb x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B6BBD284A37F4F2D88CB286529AA49CD Ref B: SYD03EDGE2021 Ref C: 2026-04-21T05:33:57Z' + - 'Ref A: FE11308B1BF14325837CC0BA0E9E90E6 Ref B: SYD281080705031 Ref C: 2026-09-10T06:52:17Z' status: code: 200 message: OK @@ -8041,27 +8207,28 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:33.4658788+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:33.4658788+00:00"},"properties":{"creationDate":"2026-04-21T05:32:33.5612087+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.9469027+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.9469027+00:00"},"properties":{"creationDate":"2026-09-10T06:50:48.2046935+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '833' + - '811' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:58 GMT + - Thu, 10 Sep 2026 06:52:18 GMT expires: - '-1' pragma: @@ -8073,11 +8240,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/24980151-3dc9-4e59-9cd9-9d4eb58c77b2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/062315b3-58c4-4e64-ac79-b0ee84b14ed4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D9AA3F3D30CF467B885DC6BD809838A1 Ref B: SYD03EDGE2109 Ref C: 2026-04-21T05:33:58Z' + - 'Ref A: 8F3F2F4AFA73464699D35E3F4F29B409 Ref B: SYD281080707031 Ref C: 2026-09-10T06:52:17Z' status: code: 200 message: OK @@ -8095,28 +8262,29 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:48.9470609+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:48.9470609+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","gateway/grandchild/message/read","repositories/repo3/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:06.4717318+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:06.4717318+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '914' + - '892' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:33:59 GMT + - Thu, 10 Sep 2026 06:52:18 GMT expires: - '-1' pragma: @@ -8128,17 +8296,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/7dac5c53-1e51-472a-89f8-9f81fecf1b4e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/66733893-14c9-45ea-8587-399d86d5e22b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1C8C9379CF624A6DB59BFA964AC3FF29 Ref B: SYD03EDGE0917 Ref C: 2026-04-21T05:33:59Z' + - 'Ref A: 12929696CACA4B6EA5923B9271674177 Ref B: SYD281080711036 Ref C: 2026-09-10T06:52:18Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/write", "gateway/grandchild/config/read", - "gateway/grandchild/message/write", "gateway/grandchild/message/read"]}}' + body: '{"properties": {"actions": ["gateway/grandchild/message/read", "gateway/grandchild/message/write", + "gateway/grandchild/config/read", "gateway/grandchild/config/write"]}}' headers: Accept: - application/json @@ -8155,30 +8323,31 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:01.1331539+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:01.1331539+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/grandchild/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:19.7284279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:19.7284279+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/read","gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464417894155&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=JRdP0M6LsfEGwtU9IaJYON262ONl8Src-vRCR9jFLQvLFB7gRuOO1OEGS5Ifs0uLD9R1wXHaJ7gtFyC947sPswpI3IsQdlldOlymbPmsAXxG4ocdsmT0QfGInKxTaGYXzRuUeSJw1ABXbA932oUWf7nHB86feqc1-6musL9_zLfUSp7_skNREqp-NZdMEhb_ZC7p7_mftdmmWtRRAC74z5YCAk57ffEw10QgEJNUSK_-p5v1Q5rLqFst4_ZINX1uOMlx321Y2Svqyt4q2Aaiki4YoA_V1c3OahCVKcKIvDrlBA0Qsdx0jfg-w-Xwb71pDuX4yFCQWt_ZWGWgcsfbUg&h=qD2ILcZliOGRsAYYs_r57oNrTe7Jecc-lBKFN6iudVo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199401503231&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=XqkLS92I1foaOtxsXYNnjCGIFRNTD7A0RlS57hUUwt8G1JJyMH5SCsHlo9f7NIjW-JCY-86YHbaZdu92cN1ZBRvumJzPwn5pNZGN_1y0jT747KtjDvUgJY-9sGQGRkSFSIywyZijhdZ22pqMSYUpy_G6ZaXqJ09Z2jhmDE_KLqdIvQdH_Qj6669lGa2jhI17ZfKCg2nz8bR8TkpUz9ChsA9DHoEesQ1VaacqrDXhdou45zPaWvjhoJd0GY0Ybw_CqYWbNE6xtHUc56Wp8n7UFlgWc3BXtGAtb5xuAtzs3ZHnmoPj2kb9DrdPJTMycB791QLY02kmRFujXh_t51hlUw&h=1hXwErE9-3KHy4BTUf2_FlCau05LsCIu8Sa_byqLujc cache-control: - no-cache content-length: - - '844' + - '822' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:01 GMT + - Thu, 10 Sep 2026 06:52:20 GMT expires: - '-1' pragma: @@ -8190,13 +8359,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/6ca1a8ff-ba5b-44eb-932d-b89cecd8694e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/78f90714-f321-4213-a705-54865ca98288 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 384E4B160001450DA60366752E571E0F Ref B: SYD03EDGE0706 Ref C: 2026-04-21T05:34:00Z' + - 'Ref A: 15AD3E0C34664D6BB7C0F660B4F36798 Ref B: SYD281080708025 Ref C: 2026-09-10T06:52:19Z' status: code: 201 message: Created @@ -8214,9 +8383,66 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199401503231&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=XqkLS92I1foaOtxsXYNnjCGIFRNTD7A0RlS57hUUwt8G1JJyMH5SCsHlo9f7NIjW-JCY-86YHbaZdu92cN1ZBRvumJzPwn5pNZGN_1y0jT747KtjDvUgJY-9sGQGRkSFSIywyZijhdZ22pqMSYUpy_G6ZaXqJ09Z2jhmDE_KLqdIvQdH_Qj6669lGa2jhI17ZfKCg2nz8bR8TkpUz9ChsA9DHoEesQ1VaacqrDXhdou45zPaWvjhoJd0GY0Ybw_CqYWbNE6xtHUc56Wp8n7UFlgWc3BXtGAtb5xuAtzs3ZHnmoPj2kb9DrdPJTMycB791QLY02kmRFujXh_t51hlUw&h=1hXwErE9-3KHy4BTUf2_FlCau05LsCIu8Sa_byqLujc + response: + body: + string: '{"status":"Updating"}' + headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, + 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199410764294&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gF6YbDQbTLgCnZTAw2oHEGp90TCPkz3hqhIkoimo2UMT_s6fg22UDEEWpflOSmfPU40ClUh3mRb8pKcUCxnxrIbRw0hqCrb16wi6W6pa4guXFBv-cBygakU_kOyT8MEyO_tXzdxxDOUTLwwIPFomuzHFB7_3yK6k-LGs4BKO5Te3srdLRcY1OjWzC7L09xp45Og8dBKqGVKcYv__FW3j-XF2Ne97BgNuwKyA8gl5M1zIRs9GiR-D5WmepwyxZHvFNXsHorqHAyIKOwp-cUA2YXcH78kBxEEA0cIrV3idNXrSmjMuByIFGeHMk-MVPF3wVBcVVCkhvaHwEFPUdy4Pgg&h=bX4vT0xNljy4uOAwhRLQy9jTXA9FWA3T8QYbGz-VSVg + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:52:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f8a20fdd-2236-479f-92aa-cf6850742831 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A86F7959B27C4E14BDE1B91A08125383 Ref B: SYD281080712029 Ref C: 2026-09-10T06:52:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr connected-registry permissions update + Connection: + - keep-alive + ParameterSetName: + - -n -r --remove --add + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464417894155&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=JRdP0M6LsfEGwtU9IaJYON262ONl8Src-vRCR9jFLQvLFB7gRuOO1OEGS5Ifs0uLD9R1wXHaJ7gtFyC947sPswpI3IsQdlldOlymbPmsAXxG4ocdsmT0QfGInKxTaGYXzRuUeSJw1ABXbA932oUWf7nHB86feqc1-6musL9_zLfUSp7_skNREqp-NZdMEhb_ZC7p7_mftdmmWtRRAC74z5YCAk57ffEw10QgEJNUSK_-p5v1Q5rLqFst4_ZINX1uOMlx321Y2Svqyt4q2Aaiki4YoA_V1c3OahCVKcKIvDrlBA0Qsdx0jfg-w-Xwb71pDuX4yFCQWt_ZWGWgcsfbUg&h=qD2ILcZliOGRsAYYs_r57oNrTe7Jecc-lBKFN6iudVo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199401503231&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=XqkLS92I1foaOtxsXYNnjCGIFRNTD7A0RlS57hUUwt8G1JJyMH5SCsHlo9f7NIjW-JCY-86YHbaZdu92cN1ZBRvumJzPwn5pNZGN_1y0jT747KtjDvUgJY-9sGQGRkSFSIywyZijhdZ22pqMSYUpy_G6ZaXqJ09Z2jhmDE_KLqdIvQdH_Qj6669lGa2jhI17ZfKCg2nz8bR8TkpUz9ChsA9DHoEesQ1VaacqrDXhdou45zPaWvjhoJd0GY0Ybw_CqYWbNE6xtHUc56Wp8n7UFlgWc3BXtGAtb5xuAtzs3ZHnmoPj2kb9DrdPJTMycB791QLY02kmRFujXh_t51hlUw&h=1hXwErE9-3KHy4BTUf2_FlCau05LsCIu8Sa_byqLujc response: body: string: '{"status":"Succeeded"}' @@ -8226,9 +8452,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464422860040&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=nWanis3GTMGhz-RMVeLV_LpQYU1My0EcFKIGHNOufJtgpLgJLp580Y4Y8Lds0Y1Yz7J7ruEYamxdGCNwhobNiDDqZMZOcQVIn6Vw3AHzntB4sd2c57SpLeo7iQWS_sofl5VdgF7VWydXC7cE3J7N1esHLuGSd1gBQsu0HgAKk1I_PjdaaUqWdQIj0_jQTVUDx4GLfV4FFIAiZIvf7Qu3JrVu2RJrufQeEkZSLCXDo56pb2KVM6Hl8czHf0Zx4FKLzSanPBPpga0KF_mjbseFqmyONKQVLoSR58U8XWOaND_iTkCgx7Cr6B0iJKCFRedF79ibGlmyXQ4geNQ1WbBuRA&h=KKf_mnuOTacR73riG02meD-6pd5oj80YibL4qO0Ceis + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199522139994&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=SNw2jHq-Oij4vMwC1vHdvrrpIyCGYFcu1QdAwK9sHwUq2awbJWr98VjaBF3FrcBXbPRgvOk-mvXk9y9ZMXvrlhTuJieySKXbh0e0Jfn7IJ2Qxh8VHp9cehzGce59EOKziY41G88nRR2Ja-lrTVzfkdWUpJzAb0wIc7jg9nj_LWVLhN7mJiYj0jegFimG2nlvg5j4Hia74cGaWt467OjawXcqkTGRnqdeog6GGSFJCKnR_a5cVsehEAx9ZiSq4Jew8km1MwDJEr1ZLAgB0Ta-LKri5MczCl6tEy4mEeQyiKWFw1IcPzLTakhSJlvqjKk9o833uJUWL2doJWrSxQlmHA&h=EZzw4YaA8KAhJfaUl-Nfo3DtCOHhwhWY7q0UasSf9aE cache-control: - no-cache content-length: @@ -8236,7 +8463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:01 GMT + - Thu, 10 Sep 2026 06:52:31 GMT expires: - '-1' pragma: @@ -8248,11 +8475,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/face3288-1f9d-4e08-80ea-7517fdc0579a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/345b1146-9aab-49cb-84f4-a0841bfc9f3f x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 2E36D3F63106483199A3CAD1E79446BC Ref B: SYD03EDGE2114 Ref C: 2026-04-21T05:34:02Z' + - 'Ref A: 7FBA83D9377D4064B0FF27B1AC5E9B95 Ref B: SYD281080707029 Ref C: 2026-09-10T06:52:31Z' status: code: 200 message: OK @@ -8270,28 +8497,29 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:01.1331539+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:01.1331539+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/grandchild/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:19.7284279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:19.7284279+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '845' + - '823' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:02 GMT + - Thu, 10 Sep 2026 06:52:32 GMT expires: - '-1' pragma: @@ -8303,11 +8531,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/c6c20428-e3ba-4948-92de-3a7fdd5563c2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/889514e7-20e6-4786-a56c-e9c88870d69f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E3EE7886CBB54110A4D97C7944119CA5 Ref B: SYD03EDGE1419 Ref C: 2026-04-21T05:34:02Z' + - 'Ref A: DFB642C41AB340508E49B53C1A077385 Ref B: SYD281080710042 Ref C: 2026-09-10T06:52:32Z' status: code: 200 message: OK @@ -8325,27 +8553,28 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-04-21T05:33:05.7836295+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '911' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:03 GMT + - Thu, 10 Sep 2026 06:52:33 GMT expires: - '-1' pragma: @@ -8357,11 +8586,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/de251deb-7381-4f46-9d83-9db7d8051ed4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/018c4cb7-52f9-4f04-a766-3a981d6db06e x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2BFE35E7376D4533B1A37F2FEED42F3F Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:34:03Z' + - 'Ref A: 4A1CEBF411134EAAA6E8A21DE4CF038C Ref B: SYD281080707023 Ref C: 2026-09-10T06:52:34Z' status: code: 200 message: OK @@ -8379,28 +8608,29 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:53.9282234+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:53.9282234+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:12.0495455+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:12.0495455+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1167' + - '1145' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:04 GMT + - Thu, 10 Sep 2026 06:52:35 GMT expires: - '-1' pragma: @@ -8412,21 +8642,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/d0fc00ae-e67b-448e-b461-c188460d1bfa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/786f987e-575b-4c50-888d-dbaf4b99d2d0 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F76095BE93A548C5A196C118BAEC6779 Ref B: SYD03EDGE1417 Ref C: 2026-04-21T05:34:04Z' + - 'Ref A: DF45960BC6CD4417817BE6B5991DACB5 Ref B: SYD281080712031 Ref C: 2026-09-10T06:52:35Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/write", "gateway/grandchild/config/read", - "gateway/rootregistry/config/read", "repositories/repo3/content/read", "gateway/rootregistry/message/write", - "gateway/child/message/read", "repositories/repo1/metadata/read", "gateway/rootregistry/config/write", - "repositories/repo3/metadata/read", "gateway/grandchild/config/write", "repositories/repo1/content/read", - "gateway/child/config/read", "gateway/grandchild/message/read", "gateway/child/config/write", - "gateway/child/message/write", "gateway/rootregistry/message/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "gateway/grandchild/config/read", + "gateway/grandchild/config/write", "gateway/rootregistry/config/write", "gateway/child/message/read", + "repositories/repo1/content/read", "gateway/child/config/read", "gateway/rootregistry/config/read", + "gateway/grandchild/message/write", "repositories/repo3/content/read", "gateway/child/message/write", + "gateway/rootregistry/message/read", "repositories/repo1/metadata/read", "gateway/rootregistry/message/write", + "gateway/child/config/write", "gateway/grandchild/message/read"]}}' headers: Accept: - application/json @@ -8443,30 +8673,31 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:05.6322881+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:05.6322881+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/rootregistry/config/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo3/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:36.8847127+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:36.8847127+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/rootregistry/config/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464470855060&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=SYzGwxR_0YGpJWArb-NZw6ONGoSdpc1OeGta0Hhto0Ibfy_1x_kamUCxCsH7awC23TR0IIHKHDkAfz8x9K1GmrToiWhW9nETZiBnG5DBvQBi0MXPeGUHK0V1yK3iI_b9gIhQBnNgKEvWKkg-ClNwu2YpigFet5cru_F7e4fVY3YnIOOCghWyAQAOqYmcY06IyZSj1ORQ2WSmu_oi0hl7zMsVcg3ROiaMFEyZhi7UBGlyFhkvkWa12nJPCq4rAEsx4qMrnZv4_unZxg3_OlYzbamHpxdxYzLgNDh9oG77q5XyxpYTRbsvbZqOGUk_GzwjVR2H6qLoQBJJI28wSi6l4Q&h=0yqsDIhgXFDoFmWHSYPs0Wo59sni6MwzdmCFu0CilL0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199570878381&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Kp6wxWP3I486t6r4zDG5uWA4xizKQw8sOShFckyvZDvkLg3C4U2vCi-XT354JeZLD0KSRoE9h7N7wfsD_XMBh-O157r2BuO8US027Rgxjs-Oh3mF9_qxvx5adcbaKEU5GWT3Nh9Azhnc_fAzuP23RktqYceH-QLoJHPKI2sbQ8LRoKng_jLtGtnMk-IW8kPU-KV7lu3yU2BoVnPw31Xp-DXJb1IK6zq2Pi2XlkNBiAhPtmOqrUp-pxbweDlI4MdTD_i8JGoBeBbI3JjWhTyz1fUjWVb9N5SipCBdbfxpf1pDRgNtlwNTp6_RFB82ixOEqyN2c_L5sqhTxgBoPUX8HQ&h=O-rsBXrTk-XSKvKj0w4Ne_7mGGRRIcjSMmTbTWTcJSs cache-control: - no-cache content-length: - - '1235' + - '1213' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:06 GMT + - Thu, 10 Sep 2026 06:52:36 GMT expires: - '-1' pragma: @@ -8478,13 +8709,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/9c261a4c-fe0c-414f-85cd-b51d83e52ca5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/220932b7-166a-4813-a173-01fafe659078 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: D34CCD9B2D5A4063A0CD7E9BD81D61CD Ref B: SYD03EDGE1119 Ref C: 2026-04-21T05:34:05Z' + - 'Ref A: 1CEAF564CF344F549E90908CC6016AF8 Ref B: SYD281080706052 Ref C: 2026-09-10T06:52:36Z' status: code: 201 message: Created @@ -8502,9 +8733,9 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464470855060&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=SYzGwxR_0YGpJWArb-NZw6ONGoSdpc1OeGta0Hhto0Ibfy_1x_kamUCxCsH7awC23TR0IIHKHDkAfz8x9K1GmrToiWhW9nETZiBnG5DBvQBi0MXPeGUHK0V1yK3iI_b9gIhQBnNgKEvWKkg-ClNwu2YpigFet5cru_F7e4fVY3YnIOOCghWyAQAOqYmcY06IyZSj1ORQ2WSmu_oi0hl7zMsVcg3ROiaMFEyZhi7UBGlyFhkvkWa12nJPCq4rAEsx4qMrnZv4_unZxg3_OlYzbamHpxdxYzLgNDh9oG77q5XyxpYTRbsvbZqOGUk_GzwjVR2H6qLoQBJJI28wSi6l4Q&h=0yqsDIhgXFDoFmWHSYPs0Wo59sni6MwzdmCFu0CilL0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199570878381&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Kp6wxWP3I486t6r4zDG5uWA4xizKQw8sOShFckyvZDvkLg3C4U2vCi-XT354JeZLD0KSRoE9h7N7wfsD_XMBh-O157r2BuO8US027Rgxjs-Oh3mF9_qxvx5adcbaKEU5GWT3Nh9Azhnc_fAzuP23RktqYceH-QLoJHPKI2sbQ8LRoKng_jLtGtnMk-IW8kPU-KV7lu3yU2BoVnPw31Xp-DXJb1IK6zq2Pi2XlkNBiAhPtmOqrUp-pxbweDlI4MdTD_i8JGoBeBbI3JjWhTyz1fUjWVb9N5SipCBdbfxpf1pDRgNtlwNTp6_RFB82ixOEqyN2c_L5sqhTxgBoPUX8HQ&h=O-rsBXrTk-XSKvKj0w4Ne_7mGGRRIcjSMmTbTWTcJSs response: body: string: '{"status":"Succeeded"}' @@ -8514,9 +8745,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464477103699&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=MzXaakp-KDwFTJEuQrkPjhPzsvQsDGSsGIAblefZg3UAbhPyN5cPHZUHqrDFs2-Av4-vh-rATriwPMUrxIFzQoWeT0atT-OKCrMcEq3wcn-jiRcgGsOOCzlBEqYg4uysORKFZkp07PFkmVnPdbMnRg9CRrX3WTnCyZb9_yOAkAAOqM_cJUgCDO6W4xT6IQkO2EvCUi-xbYHdw-zHUHmN8GI2gWcmPt67sSkPZ11UZJi1u05HR3OW5uSDUS1VxzXwiGpNX841JTyww-9HUlS2vbW5xpWDVgfSh7ES2MvdOLqxbC2N7iO9GVMpgtJNGJ9kyhB9RFGuX7u39zPUUjzSVA&h=cH-CX8b5OK3fmd4RZ-KOkmWSSyuXgUEVfDfYcgpvhZ0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199582658895&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RMSRKIj2xmaP3pTlHpQbRtJgDHFllC6xJiJr4XrzsNOIwRaBMBs_-be8J42_UNVMubUSLi6Zh6nbaFZy0PGIKX-lntN6SOcC3iXm8LXRN3MZ0q3mHxC-_ps8xU3xYKkdIfN6A0oMEbvBRZCPGia63BPsVLUWX-k2XHF9uTDDGqziE2TzlFuRqddp6HkUPfrgECWph6AzRVu62Cl_ocRlZ1SkDNNGkzhMhFIFfnnPmlvZVG_HJZrHHtGUGNXHDI2JLW8QovVkgCfnG_8aHgGSjbeIJRBEIwwxB8aZgV4vjxUYfV_SFoxBCFwYAFJUAAk4COkqAjUaorc_t_xJRbA4gw&h=2UL1NzVBWVnQ1ENHaGdlzxtagt4_Jk_zDvb0RwX6hnE cache-control: - no-cache content-length: @@ -8524,7 +8756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:07 GMT + - Thu, 10 Sep 2026 06:52:38 GMT expires: - '-1' pragma: @@ -8536,11 +8768,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/0383eb23-24f8-40da-9ae9-cad753e1b7c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1fca7608-aeec-4da0-ad23-2cbf33409fee x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 279DC1ACC60C41A3A9E48D9DE72BFC54 Ref B: SYD03EDGE1312 Ref C: 2026-04-21T05:34:07Z' + - 'Ref A: 7FBE46E2CB494E29B822D8C899BA2C8E Ref B: SYD281080709029 Ref C: 2026-09-10T06:52:37Z' status: code: 200 message: OK @@ -8558,28 +8790,29 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:05.6322881+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:05.6322881+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/rootregistry/config/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo3/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:36.8847127+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:36.8847127+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/rootregistry/config/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1236' + - '1214' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:07 GMT + - Thu, 10 Sep 2026 06:52:39 GMT expires: - '-1' pragma: @@ -8591,11 +8824,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/839ebecd-5ae6-418e-8a56-c0cf5e15fb53 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4c91c138-faf6-467e-ac30-6278a92b9f33 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0DDA6133CD804F40AFAE02DC3539CBE4 Ref B: SYD03EDGE1908 Ref C: 2026-04-21T05:34:07Z' + - 'Ref A: B13F4E469B68425495E75EEE3CDAE78E Ref B: SYD281080711023 Ref C: 2026-09-10T06:52:38Z' status: code: 200 message: OK @@ -8613,27 +8846,28 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:09 GMT + - Thu, 10 Sep 2026 06:52:39 GMT expires: - '-1' pragma: @@ -8645,11 +8879,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/fac56198-8678-4b95-81e2-38e2da709e87 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/739dd762-1e39-4354-9b1b-e75c93f7f045 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 462758473F76468084A5CF89EAB05ECA Ref B: SYD03EDGE0907 Ref C: 2026-04-21T05:34:08Z' + - 'Ref A: 51B1E32DB7754B0AB6392A820A3F534A Ref B: SYD281080712042 Ref C: 2026-09-10T06:52:40Z' status: code: 200 message: OK @@ -8667,28 +8901,29 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:33:34.1415926+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:33:34.1415926+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo3/metadata/read","gateway/child/config/read","gateway/grandchild/message/read","repositories/repo3/content/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:01.2213973+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:01.2213973+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/message/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1015' + - '993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:09 GMT + - Thu, 10 Sep 2026 06:52:41 GMT expires: - '-1' pragma: @@ -8700,19 +8935,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/d0e378d0-f7bd-47de-b13a-3274840b7d1e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ffb187cb-c07b-447d-88a8-2466cd8cca0e x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AC1019D8A8FF4699B2E81FF61ED480A2 Ref B: SYD03EDGE1915 Ref C: 2026-04-21T05:34:09Z' + - 'Ref A: 84B2D7A17EF34628BDE60B29FB34FA04 Ref B: SYD281080707031 Ref C: 2026-09-10T06:52:41Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/config/write", "gateway/grandchild/config/read", - "gateway/grandchild/message/write", "repositories/repo1/content/read", "gateway/child/config/read", - "gateway/grandchild/message/read", "gateway/child/config/write", "gateway/child/message/write", - "gateway/child/message/read", "repositories/repo1/metadata/read"]}}' + body: '{"properties": {"actions": ["gateway/child/message/write", "repositories/repo1/metadata/read", + "gateway/grandchild/config/read", "gateway/grandchild/config/write", "gateway/child/message/read", + "repositories/repo1/content/read", "gateway/child/config/read", "gateway/child/config/write", + "gateway/grandchild/message/read", "gateway/grandchild/message/write"]}}' headers: Accept: - application/json @@ -8729,30 +8964,31 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:10.5142667+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:10.5142667+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Updating","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:42.4162967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:42.4162967+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Updating","actions":["gateway/child/message/write","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464511236502&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ZKzs8tTKXEf6Cx7FriW24568-Byc94h0YMEQETLOLMWsWHsuK186OvqoZM3e3vK7GiQRdcM6Px1SZm88GWOD5URFmbsVWwPaCbM60-pt1LYQ5n1Enrnoy4UN0d1wcSnRe2I8KyKu8PMaLWLxpLqcCF04NxwnoSfOfmpVUvBl2_HkE5Hx3P83rPeYrpkdpm_02L09oyzciAyHy9PK9-hMWBXBFaNlCvlQKtqg82SsOKq1mc5JaIa9HvsHI8_U5uy_GJoPmRzoFQnyA851MssUV57ocWY-WuyevjANwEqpfqN9XbTeygEjUkvIuFr0Ntf7mUBDk2QafwW_ApuyHQxWFQ&h=JkqGvxqdm3W2OtJeOnDPslNN_3RTc2fh8dFzOkRMwAc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199625569299&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mKZ2fGD4Lkh0qhYCH0wvRBIJgDSpWZm6dWpvgSc71b2vxgwQqQ3b4vM8CGhS0Ey17Cc3egUYJiCIb0QD4mzwBzDjTT-wo-OxuprCdUu6mqPFUBz2GLHuWx5mpA1MZZBiMtVxL_yX52S5yNp4SbVCsQaFFcV0-mxE5gT9cgXv6TDSvupWpu89taEk9pNrRhcuhl4PLX_VIvIY_sEtKsZ9EoFakXluq5mKf5c_joPHcQBKqwEamDiCRgIz46dtsAUeqxzKs7ydnOcZxvTHXTMoxauGDx4bDSsF7XO1vYvczdmOcVntkJfFSMiyBMF2Z0D-8uwhCAzmsFhbmxA-d26M6Q&h=PeuVZmfXIJ98R2D2vmte0bGTOTx3XZzxikBT02R55fU cache-control: - no-cache content-length: - - '1014' + - '992' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:11 GMT + - Thu, 10 Sep 2026 06:52:41 GMT expires: - '-1' pragma: @@ -8764,13 +9000,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/dff65e25-44d1-43be-80be-05255424e4c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6ec2cfa2-56bd-4a75-9ca4-db8d03a5d7fa x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: B8EA1C814C3845B9B2F924452193D545 Ref B: SYD03EDGE1919 Ref C: 2026-04-21T05:34:10Z' + - 'Ref A: 5394D3875637425896882BD92AE461E3 Ref B: SYD281080709060 Ref C: 2026-09-10T06:52:42Z' status: code: 201 message: Created @@ -8788,9 +9024,9 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464511236502&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ZKzs8tTKXEf6Cx7FriW24568-Byc94h0YMEQETLOLMWsWHsuK186OvqoZM3e3vK7GiQRdcM6Px1SZm88GWOD5URFmbsVWwPaCbM60-pt1LYQ5n1Enrnoy4UN0d1wcSnRe2I8KyKu8PMaLWLxpLqcCF04NxwnoSfOfmpVUvBl2_HkE5Hx3P83rPeYrpkdpm_02L09oyzciAyHy9PK9-hMWBXBFaNlCvlQKtqg82SsOKq1mc5JaIa9HvsHI8_U5uy_GJoPmRzoFQnyA851MssUV57ocWY-WuyevjANwEqpfqN9XbTeygEjUkvIuFr0Ntf7mUBDk2QafwW_ApuyHQxWFQ&h=JkqGvxqdm3W2OtJeOnDPslNN_3RTc2fh8dFzOkRMwAc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199625569299&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mKZ2fGD4Lkh0qhYCH0wvRBIJgDSpWZm6dWpvgSc71b2vxgwQqQ3b4vM8CGhS0Ey17Cc3egUYJiCIb0QD4mzwBzDjTT-wo-OxuprCdUu6mqPFUBz2GLHuWx5mpA1MZZBiMtVxL_yX52S5yNp4SbVCsQaFFcV0-mxE5gT9cgXv6TDSvupWpu89taEk9pNrRhcuhl4PLX_VIvIY_sEtKsZ9EoFakXluq5mKf5c_joPHcQBKqwEamDiCRgIz46dtsAUeqxzKs7ydnOcZxvTHXTMoxauGDx4bDSsF7XO1vYvczdmOcVntkJfFSMiyBMF2Z0D-8uwhCAzmsFhbmxA-d26M6Q&h=PeuVZmfXIJ98R2D2vmte0bGTOTx3XZzxikBT02R55fU response: body: string: '{"status":"Updating"}' @@ -8800,9 +9036,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464520245961&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=lzW5sQDVuP76rdtEhZ0mre9k9lveG4aNhjf4jZOc-pxgUUCAaNB468vge0xa1G85QQ-YcClKfQt8_5Ezc6xm6aL5BDenc_rpq-0GzcBPn2Y9T5aO-70-A0H7ukvQ-LfGUonO36NbTb1O9a5zC7LJyWpMlAPgqokQh--S16ImUik4792tZb7OazdSPq1M9syPOgov6V9ADS7D8uB6atd3XChcA-Z6KXphl9JfWGnW9A6lFm27NA6EDBE_-3aDCVSNkXrxKEveDUlUHDKn640JHgU7bwVTznQ99N6h0b97buhpVXofKc5p0JPXae7EBPVvbJ0n7QvB2KJOHKy2cP829w&h=qnnYU7q-GDxi3wt7iAQqJL4WSttGpX8RVb5ZvNSIkWc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199635285902&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=YPHNhWTpDSz90YdZOEaPuyclaZLron7KK64GqbiRO-fLKbvQ6hhYgWADddD9pOeM3lalP5qscRiOevMK9gs6P_5bEcmHO53oRsy30KdwpQhHX_WmDt2vG7ouBVbkiRQ0h9ASue5_LHO6fTmccu0uRP6JZ1B41TpS-KnbYVjN9gR_l9Mo73fPbb1MqvNSwmrZenGZPfQweK5gv6YpugroxvBJCOXmbdYmolvHoubBIT2SS9v6gDZufAGx76oNbbVGIPitymKLjMF5EJPERXU5cq0t3cr3ZHcgsEZSZDOpWofZubEAZ42jW9Gx4sT2OUVo6hKcFzUES50Bp6aKwhk6PA&h=fVnDRgp7Q1YJ1zUpqqAR5UaZrha5O5OgpBgFXfEi4dM cache-control: - no-cache content-length: @@ -8810,7 +9047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:11 GMT + - Thu, 10 Sep 2026 06:52:43 GMT expires: - '-1' pragma: @@ -8822,11 +9059,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/33e98561-637e-4fef-9a78-9b62a6f66d1a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/62dbfdb7-7d28-42ef-a849-686f0b1a32b9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 594199F1AFDB4684B12B880AADEE0A67 Ref B: SYD03EDGE1722 Ref C: 2026-04-21T05:34:11Z' + - 'Ref A: BD08AFE2AEFD4F61AF76129F372B46FE Ref B: SYD281080708036 Ref C: 2026-09-10T06:52:43Z' status: code: 200 message: OK @@ -8844,9 +9081,9 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464511236502&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ZKzs8tTKXEf6Cx7FriW24568-Byc94h0YMEQETLOLMWsWHsuK186OvqoZM3e3vK7GiQRdcM6Px1SZm88GWOD5URFmbsVWwPaCbM60-pt1LYQ5n1Enrnoy4UN0d1wcSnRe2I8KyKu8PMaLWLxpLqcCF04NxwnoSfOfmpVUvBl2_HkE5Hx3P83rPeYrpkdpm_02L09oyzciAyHy9PK9-hMWBXBFaNlCvlQKtqg82SsOKq1mc5JaIa9HvsHI8_U5uy_GJoPmRzoFQnyA851MssUV57ocWY-WuyevjANwEqpfqN9XbTeygEjUkvIuFr0Ntf7mUBDk2QafwW_ApuyHQxWFQ&h=JkqGvxqdm3W2OtJeOnDPslNN_3RTc2fh8dFzOkRMwAc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199625569299&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mKZ2fGD4Lkh0qhYCH0wvRBIJgDSpWZm6dWpvgSc71b2vxgwQqQ3b4vM8CGhS0Ey17Cc3egUYJiCIb0QD4mzwBzDjTT-wo-OxuprCdUu6mqPFUBz2GLHuWx5mpA1MZZBiMtVxL_yX52S5yNp4SbVCsQaFFcV0-mxE5gT9cgXv6TDSvupWpu89taEk9pNrRhcuhl4PLX_VIvIY_sEtKsZ9EoFakXluq5mKf5c_joPHcQBKqwEamDiCRgIz46dtsAUeqxzKs7ydnOcZxvTHXTMoxauGDx4bDSsF7XO1vYvczdmOcVntkJfFSMiyBMF2Z0D-8uwhCAzmsFhbmxA-d26M6Q&h=PeuVZmfXIJ98R2D2vmte0bGTOTx3XZzxikBT02R55fU response: body: string: '{"status":"Succeeded"}' @@ -8856,9 +9093,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b19f0f94-3d43-11f1-8b2d-00155d7ffebd?api-version=2026-03-01-preview&t=639123464623970196&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ooAGLQfxh0Xfl7p8OdY2_WUDUosReio4yElqGrRKY-6o0DZM1s8QznE2WXrBtMM9v-WNVlu3H7CFL4D_ltP548brpl6b_kDb5qkMeXPSWvlPXKQ0-UJEeHLix6pjW3cTpRA5WlBGedsbgHK5AgHhbmteYHVdw3DE0SM0NFy3eJpedxkhKQbBvW6wzHABjP6HWJz7wgqffzzjEue7MPp-IdHgTsthXQouPzyctJbS3wFdgbSPV-Q0IeR_ZnGoHe-27_XMlUbyUoDCOtIMFRNwGtTUH4s3AZGSwyTGYj3q7_y-jD5A7gWKW1TpaqiUTHegiBIFPp-ItsfSznzBSYELQg&h=EZUQm9Ldlt3947rwCQN8G9v4fGUY977eiTCAyi1KU-0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-28e84be4-ace4-11f1-8103-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199745356213&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ZGhLg0a-EpNa9XovyubrFg9hXRsl52VLK8Q69143qFvO8I_pIhEJ9G-sJqrDBxgxHg5ht_micXaX5T4z7bd9hxyuINiidpHAIqM4CIsklQxDV4UxqQvvqiQ0n2J_-bi3UYqYPgvoPVcdIMZGSGHGfQfbPv35G1Fc9kNDaOIhoBeITX31wCOA9cJN_1C-lm8gK2Dx_zflKtKmtOMmrnmjIAjBmX2y4jJIYPK6khbxI2ukGUKpPnrDplgA2Pp5MdOWSl6aQSkuyy3nVwuUq25v93TJmoe9PtXPkoMMFMaC3s94xfzZ4gF3E_V40U0FtemzOCmYJRgaZGz1e0hrtNMA3A&h=kGxO7a0x30Twp0SOYzESU-yqN_gkZy7I3VJRdrZ0FBQ cache-control: - no-cache content-length: @@ -8866,7 +9104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:22 GMT + - Thu, 10 Sep 2026 06:52:54 GMT expires: - '-1' pragma: @@ -8878,11 +9116,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/1d115d45-0573-4b96-ab92-2f33ea19f1de + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a226dcb8-1d39-4da5-984a-14a5593efc1f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 70218B21B7794733B756B97DF1A9D371 Ref B: SYD03EDGE0813 Ref C: 2026-04-21T05:34:21Z' + - 'Ref A: AB7344031548404B89FB4A687B50A3D1 Ref B: SYD281080705054 Ref C: 2026-09-10T06:52:54Z' status: code: 200 message: OK @@ -8900,28 +9138,29 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:10.5142667+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:10.5142667+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:42.4162967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:42.4162967+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["gateway/child/message/write","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1015' + - '993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:22 GMT + - Thu, 10 Sep 2026 06:52:54 GMT expires: - '-1' pragma: @@ -8933,11 +9172,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/b027ffd2-4ccf-443b-b541-8cacfb67b9c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/234ebe2f-f8bf-425c-b932-b65464552ce2 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F7B9AE1BBC2F4BF6A8F4163A9B24552C Ref B: SYD03EDGE1708 Ref C: 2026-04-21T05:34:22Z' + - 'Ref A: 47CE9DCE95434454A3C4F11117BD3E7B Ref B: SYD281080711060 Ref C: 2026-09-10T06:52:55Z' status: code: 200 message: OK @@ -8955,21 +9194,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_5ubpp4vkryjvxmmsyx36qv5yar4btjkykmerxtqhwptfrvjr6t7tfgvnxkeb/providers/Microsoft.ContainerRegistry/registries/sourceregistryajj6cs","name":"sourceregistryajj6cs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_5ubpp4vkryjvxmmsyx36qv5yar4btjkykmerxtqhwptfrvjr6t7tfgvnxkeb/providers/Microsoft.ContainerRegistry/registries/targetregistryehebgn","name":"targetregistryehebgn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '3990' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:23 GMT + - Thu, 10 Sep 2026 06:52:56 GMT expires: - '-1' pragma: @@ -8981,9 +9220,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0B090B1439DF47D8B64FD3DBD4A7950A Ref B: SYD03EDGE0917 Ref C: 2026-04-21T05:34:23Z' + - 'Ref A: 47B8FD000BB3457DA22F29B19CA3E737 Ref B: SYD281080707054 Ref C: 2026-09-10T06:52:56Z' status: code: 200 message: OK @@ -9001,23 +9240,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:24 GMT + - Thu, 10 Sep 2026 06:52:56 GMT expires: - '-1' pragma: @@ -9029,9 +9268,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: ACF838EC968C4F9497E7D8E10B563FFA Ref B: SYD03EDGE0913 Ref C: 2026-04-21T05:34:24Z' + - 'Ref A: B3C5F63591CD4149AABB11B2A875B2AE Ref B: SYD281080706034 Ref C: 2026-09-10T06:52:57Z' status: code: 200 message: OK @@ -9049,23 +9288,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:25 GMT + - Thu, 10 Sep 2026 06:52:57 GMT expires: - '-1' pragma: @@ -9077,9 +9316,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 77CA7E70A49A430D86487B47F122D236 Ref B: SYD03EDGE0816 Ref C: 2026-04-21T05:34:25Z' + - 'Ref A: B92ED4F99C9C4728B46AB30CC3CB5038 Ref B: SYD281080711036 Ref C: 2026-09-10T06:52:58Z' status: code: 200 message: OK @@ -9097,25 +9336,26 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:36.6833803+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:36.6833803+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:51.5072279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:51.5072279+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1250' + - '1251' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:26 GMT + - Thu, 10 Sep 2026 06:52:58 GMT expires: - '-1' pragma: @@ -9127,11 +9367,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/366b53fb-9699-407c-b9f0-d4e7b0aa9c36 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/43380408-fe86-412b-8d94-b3ccf3d7c6ec x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BB2D27536F274860AE2DF1AE5E077838 Ref B: SYD03EDGE0907 Ref C: 2026-04-21T05:34:25Z' + - 'Ref A: A1D1018C6FE24D7888CA5CACBE2F35C6 Ref B: SYD281080708042 Ref C: 2026-09-10T06:52:58Z' status: code: 200 message: OK @@ -9149,27 +9389,28 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:33.4658788+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:33.4658788+00:00"},"properties":{"creationDate":"2026-04-21T05:32:33.5612087+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.9469027+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.9469027+00:00"},"properties":{"creationDate":"2026-09-10T06:50:48.2046935+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '833' + - '811' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:26 GMT + - Thu, 10 Sep 2026 06:52:59 GMT expires: - '-1' pragma: @@ -9181,11 +9422,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/99eb8193-9256-4c75-bfde-05f5ccdf2795 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0b75002e-faaa-4419-abea-6952122b2ca7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FACA2242FF084234A4DF5D84032A657D Ref B: SYD03EDGE2112 Ref C: 2026-04-21T05:34:26Z' + - 'Ref A: 61D572A36280494C870EFF034184429E Ref B: SYD281080705025 Ref C: 2026-09-10T06:52:59Z' status: code: 200 message: OK @@ -9203,28 +9444,29 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:01.1331539+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:01.1331539+00:00"},"properties":{"description":"Created - by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-04-21T05:32:33.0046931+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","gateway/grandchild/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:19.7284279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:19.7284279+00:00"},"properties":{"description":"Created + by connected registry sync token: grandchild","type":"UserDefined","creationDate":"2026-09-10T06:50:47.3030032+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '845' + - '823' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:26 GMT + - Thu, 10 Sep 2026 06:53:00 GMT expires: - '-1' pragma: @@ -9236,11 +9478,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/c443aff0-d847-43c2-aff4-5d29cbc7901d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2457011d-618b-41bb-b266-cc5d423f6a31 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6BBF54D4097E4704BCF4978EA9B0BCD3 Ref B: SYD03EDGE1314 Ref C: 2026-04-21T05:34:26Z' + - 'Ref A: 227F2820F3D3490CBACE3794130B9346 Ref B: SYD281080710042 Ref C: 2026-09-10T06:53:00Z' status: code: 200 message: OK @@ -9258,21 +9500,21 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_5ubpp4vkryjvxmmsyx36qv5yar4btjkykmerxtqhwptfrvjr6t7tfgvnxkeb/providers/Microsoft.ContainerRegistry/registries/sourceregistryajj6cs","name":"sourceregistryajj6cs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_5ubpp4vkryjvxmmsyx36qv5yar4btjkykmerxtqhwptfrvjr6t7tfgvnxkeb/providers/Microsoft.ContainerRegistry/registries/targetregistryehebgn","name":"targetregistryehebgn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '3990' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:27 GMT + - Thu, 10 Sep 2026 06:53:01 GMT expires: - '-1' pragma: @@ -9284,9 +9526,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EDE12543681848ECAD460A7DFFDD4537 Ref B: SYD03EDGE1921 Ref C: 2026-04-21T05:34:27Z' + - 'Ref A: 9906D29EE34C4265AB5213490B62A647 Ref B: SYD281080712054 Ref C: 2026-09-10T06:53:01Z' status: code: 200 message: OK @@ -9304,23 +9546,23 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:27 GMT + - Thu, 10 Sep 2026 06:53:02 GMT expires: - '-1' pragma: @@ -9332,9 +9574,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 072504E2D5E641EF9356A6DAEE99D887 Ref B: SYD03EDGE0722 Ref C: 2026-04-21T05:34:28Z' + - 'Ref A: 00EFA452B3624266AA47E2A04ED8D86D Ref B: SYD281080706060 Ref C: 2026-09-10T06:53:02Z' status: code: 200 message: OK @@ -9352,23 +9594,23 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:29 GMT + - Thu, 10 Sep 2026 06:53:03 GMT expires: - '-1' pragma: @@ -9380,9 +9622,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 83F7F24B40624391B17FCFACCD4555C2 Ref B: SYD03EDGE1422 Ref C: 2026-04-21T05:34:28Z' + - 'Ref A: 11C37C8D0D2A4430BAF77864BA088206 Ref B: SYD281080708031 Ref C: 2026-09-10T06:53:03Z' status: code: 200 message: OK @@ -9400,25 +9642,26 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:36.6833803+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:36.6833803+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:51.5072279+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:51.5072279+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1250' + - '1251' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:29 GMT + - Thu, 10 Sep 2026 06:53:05 GMT expires: - '-1' pragma: @@ -9430,11 +9673,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/3f901648-7dff-4fcc-8ab2-15138c2995b0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b2a5a6a8-320c-44c5-bb41-6ac44f36d053 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 671C64C84F0A45F8AEBF2FA435D7CA5C Ref B: SYD03EDGE1315 Ref C: 2026-04-21T05:34:29Z' + - 'Ref A: 1F994CD065054FDE9ACC4CB9108241BF Ref B: SYD281080707060 Ref C: 2026-09-10T06:53:04Z' status: code: 200 message: OK @@ -9454,21 +9697,22 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2026-09-01-preview response: body: string: '' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 21 Apr 2026 05:34:30 GMT + - Thu, 10 Sep 2026 06:53:06 GMT expires: - '-1' pragma: @@ -9480,13 +9724,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/98a58a69-e3a5-4b0e-8f8b-982cc4f8f129 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ee03e335-aee3-49f4-9361-f21df1867c38 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: 41B065B79B13419AB8917828526F8A0E Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:34:29Z' + - 'Ref A: 354CD4FE432C4B65A2AC6308D29683C3 Ref B: SYD281080707052 Ref C: 2026-09-10T06:53:05Z' status: code: 200 message: OK @@ -9504,27 +9748,28 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:33.4658788+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:33.4658788+00:00"},"properties":{"creationDate":"2026-04-21T05:32:33.5612087+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:47.9469027+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:47.9469027+00:00"},"properties":{"creationDate":"2026-09-10T06:50:48.2046935+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '833' + - '811' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:31 GMT + - Thu, 10 Sep 2026 06:53:07 GMT expires: - '-1' pragma: @@ -9536,11 +9781,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/dad89a21-5a39-4e68-bf39-4abf901e505e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6994678f-4179-4b45-8a4b-256dc04975c4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 424AF57D769A4840A4B8E93B5DE340F1 Ref B: SYD03EDGE1709 Ref C: 2026-04-21T05:34:31Z' + - 'Ref A: F8094A9EA93E4EE198BD9EAC65BBEFFE Ref B: SYD281080707060 Ref C: 2026-09-10T06:53:07Z' status: code: 200 message: OK @@ -9560,9 +9805,9 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2026-09-01-preview response: body: string: '' @@ -9572,17 +9817,18 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 21 Apr 2026 05:34:32 GMT + - Thu, 10 Sep 2026 06:53:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464726617275&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=BLva7VSclB34SZ1pDb2wGA1VndTT1yGYA0Sh8YzbOmnX-Rd5ZhVwNsG-UskcdjNLfckIa-0y5jRSe8t175JUV9mTt0xQ4ABWYZ-uEcWStj4Ty1g4-PyGggh00wyTiWluMsHxXsdnHHUDDhA73RsS18taUaEPQnjTSGT4ULztL6V5iRHZblq8KMi7sFpm3VF1PhJgqeRj_qn875bkdcPMbuYEEeppuKOf9rs-GMr96rRMqPfoxlndCwzBz0JLUEir48ERu-T2bFZ1FaSKbjm3hEepik0fi6TkUzkLOegVaMZcRij2kPbSyPLuA7NypicQ7-ZulRMrs2MLX4gHl0msAw&h=dxhVZLX3TwasAQz3wzgPVglKUC20gbo_-Olg5z9dWmk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199886276716&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=oDcuweU4IQUR5zCogWJ3U3wL3jD9soVXQ9cMNORNZWx8TG-19JTxz1NMrRG71yBKVTNIt89UuKBvel2MfAjCQ8BLlRn09sHzsmGqIVhdrVCzNGgd8Nsu1CkkXd5lUvGwTPOkTsRkhgpg_FrQ5NGAeHjHm2N4RNjZsi_EAotm12IaBwWp_sJJvNuMUeMwB-6xX4Fx66r4FtyWoJbBN0eqhcH7HUB-Ps8c7ql46L210WL-Et5FtNEsaSJBm0MQez5haaIFnGjAfUKX81cT5UOoGXhIX2NxjcDuZ7xtNCITUWX1dA0IofQ52tOfBXABNHM4_2fyF8qORqjj9aS_9V7TqQ&h=c5cy-5auWNrzmm9M5Y-n0GOrEvW1MM_o-6c1tmu3Rvo pragma: - no-cache strict-transport-security: @@ -9592,13 +9838,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/17c794da-798d-414f-a6d4-d2a8e92ac8e9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/258c1ae3-7d9f-4ac8-b79a-008d98f4dae4 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: B0849E06666F44E197C532E84DD5EAB4 Ref B: SYD03EDGE0920 Ref C: 2026-04-21T05:34:32Z' + - 'Ref A: FE2356DAC27D410EA6A124B4234916E3 Ref B: SYD281080706040 Ref C: 2026-09-10T06:53:08Z' status: code: 202 message: Accepted @@ -9616,9 +9862,9 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464726617275&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=BLva7VSclB34SZ1pDb2wGA1VndTT1yGYA0Sh8YzbOmnX-Rd5ZhVwNsG-UskcdjNLfckIa-0y5jRSe8t175JUV9mTt0xQ4ABWYZ-uEcWStj4Ty1g4-PyGggh00wyTiWluMsHxXsdnHHUDDhA73RsS18taUaEPQnjTSGT4ULztL6V5iRHZblq8KMi7sFpm3VF1PhJgqeRj_qn875bkdcPMbuYEEeppuKOf9rs-GMr96rRMqPfoxlndCwzBz0JLUEir48ERu-T2bFZ1FaSKbjm3hEepik0fi6TkUzkLOegVaMZcRij2kPbSyPLuA7NypicQ7-ZulRMrs2MLX4gHl0msAw&h=dxhVZLX3TwasAQz3wzgPVglKUC20gbo_-Olg5z9dWmk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199886276716&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=oDcuweU4IQUR5zCogWJ3U3wL3jD9soVXQ9cMNORNZWx8TG-19JTxz1NMrRG71yBKVTNIt89UuKBvel2MfAjCQ8BLlRn09sHzsmGqIVhdrVCzNGgd8Nsu1CkkXd5lUvGwTPOkTsRkhgpg_FrQ5NGAeHjHm2N4RNjZsi_EAotm12IaBwWp_sJJvNuMUeMwB-6xX4Fx66r4FtyWoJbBN0eqhcH7HUB-Ps8c7ql46L210WL-Et5FtNEsaSJBm0MQez5haaIFnGjAfUKX81cT5UOoGXhIX2NxjcDuZ7xtNCITUWX1dA0IofQ52tOfBXABNHM4_2fyF8qORqjj9aS_9V7TqQ&h=c5cy-5auWNrzmm9M5Y-n0GOrEvW1MM_o-6c1tmu3Rvo response: body: string: '' @@ -9628,7 +9874,7 @@ interactions: content-length: - '0' date: - - Tue, 21 Apr 2026 05:34:32 GMT + - Thu, 10 Sep 2026 06:53:09 GMT expires: - '-1' pragma: @@ -9640,11 +9886,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/australiaeast/f3ec643b-743e-4c96-8648-948577f17b51 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/baba9a20-c915-4e06-aa4e-55f3db159d9d x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9302CB9285C742398E2B3E12AC697943 Ref B: SYD03EDGE0712 Ref C: 2026-04-21T05:34:32Z' + - 'Ref A: 10C40EB703384213B9F0A6194B576C84 Ref B: SYD281080708054 Ref C: 2026-09-10T06:53:09Z' status: code: 200 message: OK @@ -9664,9 +9910,9 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2026-09-01-preview response: body: string: '' @@ -9676,17 +9922,18 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 21 Apr 2026 05:34:34 GMT + - Thu, 10 Sep 2026 06:53:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464747696829&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=K_LEoMdgtY9VU8Z3saE57_zvmN3JrUYMCgq6n7_oX7Ekav0Zdk0mPcfjRjeb2Kt3nsGrTEXSNHP5gSW3EKEJKm4fvFpw1BfVTeHn8R30ifzTCc0H-QxkTFa-jXfMUW3APVqDKQKNKywZzTz3tHzk4w8uoFq7yxeskRSNaamwBdBV8JWdIdc_I9drsrb6ebPhAHTS6MBB05uco11SfqIfetrrJR0YrD9S0lLYZ6Bb4JasBoMOg2r3t-vSsoYTd1RBWAJJchJ8mpmZhB4Apti-o7RBKnLo30g6F6uzxGYsDmlOOC3x7csRBhbOAI3dekAb0vv5uIrmtBu6FcX3NmQCHA&h=Ik_l-ZPhkzh8Pr_P4aGaMKpxW2W292DKupU8DXLrPNU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199910403943&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=xGixrbeTEieai2Jemu_wX8ouTUL3GB1K-9h4QFdTOPzPh1k7vPef-2s4pCji6sKARlr3wnWMriSXqHMZwoCoqzM2yrmHDrci-hBdKEaRCiN7fxnaWmRhNRSOXbK6MD_8rtz-m-4k1xuCRFB2nvtlL6q9iXpPnng_PODbPpVpinga7Ja8Vl_ufz1-cSOCeiuN12n4McYWx2_MKiMU0fCeN6PrDd1UeTi_TqqYqk78lMc_8bvUI2Q3wgtSQGAHj73pDTB1FNSlAKKauxTtDFAMUdBRqr4paIs7wfAw-528e4SNyywU1fOyANLM_MOT7QPNcRr2B0HSf0xgqF6IgupidQ&h=abKkBCAizqVQhiZUDVw1UjTn2n6mYIjBMI1-lNEHH1Q pragma: - no-cache strict-transport-security: @@ -9696,13 +9943,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/cccd2f3c-89bc-41ea-a557-115c122f163e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a04f1f8b-c673-4de3-a26b-61ca928d41e5 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: 2D6896E638684FCF856850EFEAA92F34 Ref B: SYD03EDGE1111 Ref C: 2026-04-21T05:34:33Z' + - 'Ref A: B1B72D191E3E49BAB28AF9A42DF5BDFB Ref B: SYD281080708036 Ref C: 2026-09-10T06:53:10Z' status: code: 202 message: Accepted @@ -9720,9 +9967,9 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464747696829&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=K_LEoMdgtY9VU8Z3saE57_zvmN3JrUYMCgq6n7_oX7Ekav0Zdk0mPcfjRjeb2Kt3nsGrTEXSNHP5gSW3EKEJKm4fvFpw1BfVTeHn8R30ifzTCc0H-QxkTFa-jXfMUW3APVqDKQKNKywZzTz3tHzk4w8uoFq7yxeskRSNaamwBdBV8JWdIdc_I9drsrb6ebPhAHTS6MBB05uco11SfqIfetrrJR0YrD9S0lLYZ6Bb4JasBoMOg2r3t-vSsoYTd1RBWAJJchJ8mpmZhB4Apti-o7RBKnLo30g6F6uzxGYsDmlOOC3x7csRBhbOAI3dekAb0vv5uIrmtBu6FcX3NmQCHA&h=Ik_l-ZPhkzh8Pr_P4aGaMKpxW2W292DKupU8DXLrPNU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199910403943&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=xGixrbeTEieai2Jemu_wX8ouTUL3GB1K-9h4QFdTOPzPh1k7vPef-2s4pCji6sKARlr3wnWMriSXqHMZwoCoqzM2yrmHDrci-hBdKEaRCiN7fxnaWmRhNRSOXbK6MD_8rtz-m-4k1xuCRFB2nvtlL6q9iXpPnng_PODbPpVpinga7Ja8Vl_ufz1-cSOCeiuN12n4McYWx2_MKiMU0fCeN6PrDd1UeTi_TqqYqk78lMc_8bvUI2Q3wgtSQGAHj73pDTB1FNSlAKKauxTtDFAMUdBRqr4paIs7wfAw-528e4SNyywU1fOyANLM_MOT7QPNcRr2B0HSf0xgqF6IgupidQ&h=abKkBCAizqVQhiZUDVw1UjTn2n6mYIjBMI1-lNEHH1Q response: body: string: '' @@ -9732,7 +9979,7 @@ interactions: content-length: - '0' date: - - Tue, 21 Apr 2026 05:34:35 GMT + - Thu, 10 Sep 2026 06:53:12 GMT expires: - '-1' pragma: @@ -9744,11 +9991,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/australiasoutheast/6a48baf2-c127-4bb0-ad8b-e279f9740b7d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f51b7e57-45f7-4322-944e-f98a0d043ed5 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 30CD07874BE643BD8A50CC1D35797F5B Ref B: SYD03EDGE1709 Ref C: 2026-04-21T05:34:35Z' + - 'Ref A: 119DAE4297F3406FB944DF44B02E3478 Ref B: SYD281080709031 Ref C: 2026-09-10T06:53:11Z' status: code: 200 message: OK @@ -9766,29 +10013,30 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:43.2947231+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:43.2947231+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 - 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:54.7767429+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:54.7767429+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 - 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:30.9066462+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:30.9066462+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + 0 * * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:13.6507807+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:13.6507807+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"],"garbageCollection":{"enabled":true,"schedule":"0 + 0 */2 * *"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}]}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '3753' + - '3756' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:35 GMT + - Thu, 10 Sep 2026 06:53:14 GMT expires: - '-1' pragma: @@ -9800,11 +10048,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/eebabc12-d1a6-409e-961f-e4d1b49087db + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c3a59658-db65-47e8-a06f-1fec2c57f6dc x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BF3B51DA5F264E64A811624FFB50C4CB Ref B: SYD03EDGE1117 Ref C: 2026-04-21T05:34:36Z' + - 'Ref A: 80B7BA34FA154D75804603334734D872 Ref B: SYD281080712060 Ref C: 2026-09-10T06:53:13Z' status: code: 200 message: OK @@ -9822,27 +10070,28 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:36 GMT + - Thu, 10 Sep 2026 06:53:15 GMT expires: - '-1' pragma: @@ -9854,11 +10103,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/58a0209c-1a0e-48a1-8933-51557d5ce5ce + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9e1d01e3-9f74-4157-a556-5712aa40a96b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BB08861542394FF8B71F0098C2640DA6 Ref B: SYD03EDGE0705 Ref C: 2026-04-21T05:34:36Z' + - 'Ref A: A0245DD0460B418DBE72401A1C2181AB Ref B: SYD281080711062 Ref C: 2026-09-10T06:53:15Z' status: code: 200 message: OK @@ -9876,28 +10125,29 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:10.5142667+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:10.5142667+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/config/write","gateway/grandchild/config/read","gateway/grandchild/message/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:42.4162967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:42.4162967+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["gateway/child/message/write","repositories/repo1/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1015' + - '993' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:37 GMT + - Thu, 10 Sep 2026 06:53:15 GMT expires: - '-1' pragma: @@ -9909,18 +10159,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/d68fe99c-16e5-45ad-a32f-f67502f2cfde + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/699cafc0-6fb4-4c3e-b6d9-efd8f52df0bc x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FEFED0E1EFBD45FF8A7723926DAC47EF Ref B: SYD03EDGE0908 Ref C: 2026-04-21T05:34:37Z' + - 'Ref A: 449CA851905749B5977BFB5BFCD4912A Ref B: SYD281080705031 Ref C: 2026-09-10T06:53:16Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["repositories/repo1/content/read", "gateway/child/config/read", - "gateway/child/config/write", "gateway/child/message/write", "gateway/child/message/read", - "repositories/repo1/metadata/read"]}}' + body: '{"properties": {"actions": ["gateway/child/message/write", "repositories/repo1/metadata/read", + "gateway/child/message/read", "repositories/repo1/content/read", "gateway/child/config/read", + "gateway/child/config/write"]}}' headers: Accept: - application/json @@ -9937,30 +10187,31 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:38.7586069+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:38.7586069+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Updating","actions":["repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:17.5702201+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:17.5702201+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Updating","actions":["gateway/child/message/write","repositories/repo1/metadata/read","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464789461075&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=e0u4SLCkuCL1ZfGM_EHy0_D5M-dH8WU4B7_mkylFJj-hv1FcPBMjlO7D-uG4rfucrVwT-EdcwyEIoquW-nxQRsN_HyFooxylKJd7QAXUN3ziuab75n1u34XgKDKDZFGyL-xdXKg5tb0UzGcmrHkp7eOWBiYDzTDu_K8WyoNF-Cgci328PAFUT6gmeYL0-gqD9rleha4rA0lnoUC301QY1MqwNbps3NxZt_Z9JKug1WfgyBjjXKJYAAmx9GKHP0_5qV6S15Ve5TBFLNATqFU5dbAMffej7uXrravmaCYrB7eXXymJx2bTHG8_Pv3ZBUqKlhd6V2Trl1dKjYSQyM7TcA&h=SvapSYSUQeRSOf7jresOslHP8PMFcTtphHsXwhmSVKE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199978983473&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=EXmoHkrTzZEe6tP1Xa5jScW67KwkclIUQ-9zz6ugYb7d3N__giz0qckt-gBMfTveTP0h7oGgF_k8a5dwTONkIwvJcvDeJsD-stLrn7coQQjws8iYFMW1XmcN1Pm4bwwZP9UiPPlOAO38e2ecQx-PAu1wvbxrwz1v0di7kAZ4RlHmDS2yisH80__nxSklgkNTvsy9aMCJ34NpQvnD7U-nykThL3ihqb6zxNOXB7d1lxf6FD7bt_F8fm-PfCIWpZEHv3_bzqZ0A-lyj83FFlMYPaXHoXSHK0XjFGnwFnehV-7C3tEy8boJc3WoRqXrmbX3vqtdl9dddxrDCgemCcLxFw&h=y6pn5_np1byWmZi2Z_QBcqr1mCHpAmMnVmBZETW-HQM cache-control: - no-cache content-length: - - '878' + - '856' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:38 GMT + - Thu, 10 Sep 2026 06:53:17 GMT expires: - '-1' pragma: @@ -9972,13 +10223,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/71f8f43c-71e8-45d8-9c02-1d467c041aaa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/dd052040-4e95-4971-bbe8-c6d3dc4ac497 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 25B0EF69E44647F9AD2D747E8251A3E9 Ref B: SYD03EDGE2017 Ref C: 2026-04-21T05:34:38Z' + - 'Ref A: 58E6033C12BC4750B5F4C8AF4A6C0BAE Ref B: SYD281080707029 Ref C: 2026-09-10T06:53:17Z' status: code: 201 message: Created @@ -9996,9 +10247,9 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464789461075&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=e0u4SLCkuCL1ZfGM_EHy0_D5M-dH8WU4B7_mkylFJj-hv1FcPBMjlO7D-uG4rfucrVwT-EdcwyEIoquW-nxQRsN_HyFooxylKJd7QAXUN3ziuab75n1u34XgKDKDZFGyL-xdXKg5tb0UzGcmrHkp7eOWBiYDzTDu_K8WyoNF-Cgci328PAFUT6gmeYL0-gqD9rleha4rA0lnoUC301QY1MqwNbps3NxZt_Z9JKug1WfgyBjjXKJYAAmx9GKHP0_5qV6S15Ve5TBFLNATqFU5dbAMffej7uXrravmaCYrB7eXXymJx2bTHG8_Pv3ZBUqKlhd6V2Trl1dKjYSQyM7TcA&h=SvapSYSUQeRSOf7jresOslHP8PMFcTtphHsXwhmSVKE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199978983473&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=EXmoHkrTzZEe6tP1Xa5jScW67KwkclIUQ-9zz6ugYb7d3N__giz0qckt-gBMfTveTP0h7oGgF_k8a5dwTONkIwvJcvDeJsD-stLrn7coQQjws8iYFMW1XmcN1Pm4bwwZP9UiPPlOAO38e2ecQx-PAu1wvbxrwz1v0di7kAZ4RlHmDS2yisH80__nxSklgkNTvsy9aMCJ34NpQvnD7U-nykThL3ihqb6zxNOXB7d1lxf6FD7bt_F8fm-PfCIWpZEHv3_bzqZ0A-lyj83FFlMYPaXHoXSHK0XjFGnwFnehV-7C3tEy8boJc3WoRqXrmbX3vqtdl9dddxrDCgemCcLxFw&h=y6pn5_np1byWmZi2Z_QBcqr1mCHpAmMnVmBZETW-HQM response: body: string: '{"status":"Succeeded"}' @@ -10008,9 +10259,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464799793171&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=aTuLE87FS5fSJeiPIWChYP655xqu_SaG-4Ly-sGaEgog_HmfTihja32CWT6EuRzWEAjImOMU-6DUwdGTIpAPsCZUaIHkctD-Iqk1jzmCgNf6y7EoWIX-umggh0KCPyy0ymzrf6Tr8y6JUPxoeksvo6HIS-2p5_FJ1O5jwcoexBd_-ORmOmMw1pBFgFsw7DeNMl-OjpnSZjx0emB1agfFb9FtT-1mCBG17JAMpe-ulaXLlwSVEyzMNXCdAl7HiJNRsNNrx6IwS9GJNIZ10OQepdZmWDgCMeTphLYkja8GVJvgiiQpK-jWpoaoB8RegyJGAf1snL5UNI94dCbTSnR1XA&h=AauJ64ybDI9oHtkYMcAu46cla-NU5Qi8VS7T-ZvnxhI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199992595812&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=bHGOIXaRa4QfcNMNRm83kbkNLuoGxcrISOzetsEw3l0Xf1CWQ-XWXtEibm59sfgb9IW7KxV0joGM2wzziBf6ghlL9Xv-iTnnX446wQb5_o7NXYo2X84rVZOPC95BMNQDvY8AyJP0yXDEv9fmrmwO_7MxKNUuLyNrs9Ip3gv14rq3HVVeBwf0nqOKi0GUzWJG1pC4gtaDh3w0UfZYsyGDNL-fVWxai4TRPJka03t2Gz8gy89ix7vapZjfOFFxoM2qsTmc8CGrx3Hs8al0s-eScK-MQGuL1JTpMwu0tF_M69fqgoj2HuqF2ATC-OZBqrnv-nz3bXIcVAkaG9h3SRLUFA&h=PQjsFYoPZwiEi93ncQM00NHcZdy3gjxAdjJe4U-rwOg cache-control: - no-cache content-length: @@ -10018,7 +10270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:39 GMT + - Thu, 10 Sep 2026 06:53:18 GMT expires: - '-1' pragma: @@ -10030,11 +10282,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/e7e86543-bfb0-4762-8ce5-92947912602e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d8f6a819-0c18-4213-a611-bf5768dbb191 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 24903B88F2104B618C219131FC8BA833 Ref B: SYD03EDGE0714 Ref C: 2026-04-21T05:34:39Z' + - 'Ref A: 560E78B6A10F4411B6001066EB9084EB Ref B: SYD281080705031 Ref C: 2026-09-10T06:53:18Z' status: code: 200 message: OK @@ -10052,28 +10304,29 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:38.7586069+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:38.7586069+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:17.5702201+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:17.5702201+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["gateway/child/message/write","repositories/repo1/metadata/read","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '879' + - '857' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:40 GMT + - Thu, 10 Sep 2026 06:53:19 GMT expires: - '-1' pragma: @@ -10085,11 +10338,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/43a8b47b-c020-40be-954a-f74fcf21e525 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9d7d3a4f-15be-4566-914c-b2c294f4a30c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3EDF18AAA35240639E552911C8E3964A Ref B: SYD03EDGE1116 Ref C: 2026-04-21T05:34:40Z' + - 'Ref A: F3B6B70683EA4D959BA482DF0EB7667F Ref B: SYD281080705029 Ref C: 2026-09-10T06:53:19Z' status: code: 200 message: OK @@ -10107,27 +10360,28 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:48.5782299+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:48.5782299+00:00"},"properties":{"creationDate":"2026-04-21T05:31:48.8898915+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-04-21T05:33:05.7836295+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.1963142+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.1963142+00:00"},"properties":{"creationDate":"2026-09-10T06:49:38.2650265+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '911' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:41 GMT + - Thu, 10 Sep 2026 06:53:20 GMT expires: - '-1' pragma: @@ -10139,11 +10393,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/a56c17d2-0498-40fe-819f-c4f946c180e3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fb094e81-c486-4e3f-a817-7b355d9cda25 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EB53FF6C709644BBAB831A9B876EE769 Ref B: SYD03EDGE1914 Ref C: 2026-04-21T05:34:41Z' + - 'Ref A: 614F19D8BE264C5280C4349C17C51554 Ref B: SYD281080706031 Ref C: 2026-09-10T06:53:20Z' status: code: 200 message: OK @@ -10161,28 +10415,29 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:05.6322881+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:05.6322881+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/rootregistry/config/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo3/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","gateway/child/config/read","gateway/grandchild/message/read","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:36.8847127+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:36.8847127+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/rootregistry/config/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1236' + - '1214' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:44 GMT + - Thu, 10 Sep 2026 06:53:21 GMT expires: - '-1' pragma: @@ -10194,20 +10449,20 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/2225bdef-adea-47f5-a0db-1a647aed9c8f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/132a6dba-ac77-4f0c-ae40-c4514dad6a5c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A8C7D7D03B1441BA9E92911EFEBA1673 Ref B: SYD03EDGE2009 Ref C: 2026-04-21T05:34:42Z' + - 'Ref A: C5BBC2E9E2E74D7BAF116E6D1657738D Ref B: SYD281080711060 Ref C: 2026-09-10T06:53:21Z' status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/rootregistry/config/write", "repositories/repo3/metadata/read", - "repositories/repo1/content/read", "gateway/rootregistry/config/read", "gateway/child/config/read", - "repositories/repo3/content/read", "gateway/rootregistry/message/write", "gateway/child/config/write", - "gateway/child/message/write", "gateway/rootregistry/message/read", "gateway/child/message/read", - "repositories/repo1/metadata/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/metadata/read", "repositories/repo3/content/read", + "gateway/child/message/write", "gateway/rootregistry/message/read", "repositories/repo1/metadata/read", + "gateway/rootregistry/config/write", "repositories/repo1/content/read", "gateway/child/message/read", + "gateway/child/config/read", "gateway/rootregistry/message/write", "gateway/child/config/write", + "gateway/rootregistry/config/read"]}}' headers: Accept: - application/json @@ -10224,30 +10479,31 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:45.6134313+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:45.6134313+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Updating","actions":["gateway/rootregistry/config/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/child/config/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:22.5602578+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:22.5602578+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Updating","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464859884306&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=rEQvut-Z1_wFqxZfDHpSBWnIpDK0cj7ShZFSdyz7Gws967X7gP-OfEBIBVG0S69r8Km72ZkeIa0s8CveKl21EwH8USz6170pKj_AvdNI7fHENc3m242WRFLQgGNXC87zFIUAP5Iv9Bhr4GrHsk8aPDL9sKef2KrlkKdRhZSLfaNBF_WfoEEViJt1jsG74RP94YBKmmKc8bZIZDLLOpzisqoCVl0rBfqS1QR4FXlfa2VSuMdP4g6ZX6LqODTQjGM4GH5XGrb2MNV5a-N3rFsUHt_f_3e_wniVohu9Rz96L-P3NBZ7mm8bbOZH-i_N2JSACWTtuSRckOZxQGazjogAPg&h=BZ246qWtYYiNL2fyWManbQDzYpc8KeR7t0TU3-mmu3Q + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200028415361&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Nv99t3Ie55gx17M0N325MIlFW5qe_Bp_Nj1ZTwC3Ig6ZOp25JH7YWJAqYJSSPA8P0rtVm1YE8xA5Ski4BryPZWoBLRuNGHjMPvFSQBVrXczUfx5nmQ2RC7r2ndSFcVVCNcR2oJ7uqVDjkiD8NeISHzqE3_3OtYpqJpzzY1oXyJdqMTePKDg6bggEz39X4p7ILtjvlbkmoARASeKMebxplMR7YB6NEm2CJ_yYknHTnTT8-UyUDRZNHXkq5VXx_WvqtFQsdlML7J-46sjPR8jWKuM1hJJ2IQRtWUCv08LWPZqGOpxGANoesrjyEmwxWoXPCKSqFPAB0ZwiYOBpjprGyA&h=9WC4PUGtZNrsZAOwMD-XT2d0R8cIY35Yql20HuanD5Q cache-control: - no-cache content-length: - - '1099' + - '1077' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:45 GMT + - Thu, 10 Sep 2026 06:53:22 GMT expires: - '-1' pragma: @@ -10259,13 +10515,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/ed557264-0c93-4da3-9b1d-0ecbadded963 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/66054429-d6bb-4d6b-ae25-e6b78f07b1aa x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 2E3D3CF005CC4B62897A9E08BB954244 Ref B: SYD03EDGE1112 Ref C: 2026-04-21T05:34:44Z' + - 'Ref A: CFE3AA9D2A7140909D5F54DE70DD92D5 Ref B: SYD281080705042 Ref C: 2026-09-10T06:53:22Z' status: code: 201 message: Created @@ -10283,9 +10539,9 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464859884306&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=rEQvut-Z1_wFqxZfDHpSBWnIpDK0cj7ShZFSdyz7Gws967X7gP-OfEBIBVG0S69r8Km72ZkeIa0s8CveKl21EwH8USz6170pKj_AvdNI7fHENc3m242WRFLQgGNXC87zFIUAP5Iv9Bhr4GrHsk8aPDL9sKef2KrlkKdRhZSLfaNBF_WfoEEViJt1jsG74RP94YBKmmKc8bZIZDLLOpzisqoCVl0rBfqS1QR4FXlfa2VSuMdP4g6ZX6LqODTQjGM4GH5XGrb2MNV5a-N3rFsUHt_f_3e_wniVohu9Rz96L-P3NBZ7mm8bbOZH-i_N2JSACWTtuSRckOZxQGazjogAPg&h=BZ246qWtYYiNL2fyWManbQDzYpc8KeR7t0TU3-mmu3Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200028415361&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Nv99t3Ie55gx17M0N325MIlFW5qe_Bp_Nj1ZTwC3Ig6ZOp25JH7YWJAqYJSSPA8P0rtVm1YE8xA5Ski4BryPZWoBLRuNGHjMPvFSQBVrXczUfx5nmQ2RC7r2ndSFcVVCNcR2oJ7uqVDjkiD8NeISHzqE3_3OtYpqJpzzY1oXyJdqMTePKDg6bggEz39X4p7ILtjvlbkmoARASeKMebxplMR7YB6NEm2CJ_yYknHTnTT8-UyUDRZNHXkq5VXx_WvqtFQsdlML7J-46sjPR8jWKuM1hJJ2IQRtWUCv08LWPZqGOpxGANoesrjyEmwxWoXPCKSqFPAB0ZwiYOBpjprGyA&h=9WC4PUGtZNrsZAOwMD-XT2d0R8cIY35Yql20HuanD5Q response: body: string: '{"status":"Succeeded"}' @@ -10295,9 +10551,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-c44a3fd1-3d43-11f1-a51f-00155d7ffebd?api-version=2026-03-01-preview&t=639123464871964649&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=Ao_lYwLuACkXlHekBUxeb2hira9xp-7GEuCzCh7wvj-fqEa-AftctdUmMQQzUpWBkQSOtYOmGAl2a3EPMQYikYxo4PSW4NkvduD30agZJYYeTwLHt7UO6dCX_sbmm_mj2HN2gFAauA1LZ2SZK24dojXdrOWA_A3s01Y7dnGIJCh8eZprhGxxBCiytJTPayfNCkN_dkeUcZRZHcpp9cluQQAILgM_lrd2jUFh5gYmwxiJblt1kxCFJcf-E-r8zaU8NZu_tjjwuPP-XW1Dp8vJ_zhLrFJgwSGDoIXIK5LfgC460N3SMoezl-5S-FTVFTIord3KTcrL46ZJuBBXJUA1Kw&h=C1lvhxA4IacdkQ90P8sC_kwTw-EjBuNyo-niQhtE-G4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-447a3cec-ace4-11f1-ae9e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200040089622&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=r2YXLe53bVEktk93i3MDSB2cGg0M3JY1Zygp5dMi0Yxt_zja5sC7FQ0ywzImbsLXTcvHkAZMFoBGmhNdrGiov1U6SvJgD8esQs_Jt9samWXZdM6vUwGF5AKQv5OKn5g4Dm59Dyq4g3LxL4TV6TpkmL16-jXZU6cP8TC9lhwWsItMbWbPSCIUyE1Sv8HZiPBsmegTBAvZiM0w-JXdNjfpXIxXSPkjV7t6GnZqMiEps4M-vBGwZo0_5U_OMg1usl5hnux_yKp1WlB4xNRAm-pcsNsCsamvRDIRPZ3YfOhAdQMGz_ChV3GvMJRQHgprNeH7pH22uCJqnLXE8QW6wQ3lYA&h=Z2vKu2lkN4JotC-GdTRZT1QhK42aPmYt8s_QNtrxjHc cache-control: - no-cache content-length: @@ -10305,7 +10562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:46 GMT + - Thu, 10 Sep 2026 06:53:23 GMT expires: - '-1' pragma: @@ -10317,11 +10574,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/5360bd46-af47-4757-9ec9-19e48a36297f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e8cb00bb-11ba-46da-b4ea-c95d28372cac x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E70565CEB8854F198C8AC4110586565C Ref B: SYD03EDGE2122 Ref C: 2026-04-21T05:34:46Z' + - 'Ref A: CCB11813D3804270BC4B85263B00F3F0 Ref B: SYD281080706042 Ref C: 2026-09-10T06:53:23Z' status: code: 200 message: OK @@ -10339,28 +10596,29 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:45.6134313+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:45.6134313+00:00"},"properties":{"description":"Created - by token: syncToken","type":"UserDefined","creationDate":"2026-04-21T05:31:47.9166369+00:00","provisioningState":"Succeeded","actions":["gateway/rootregistry/config/write","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/child/config/read","repositories/repo3/content/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/child/message/write","gateway/rootregistry/message/read","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:22.5602578+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:22.5602578+00:00"},"properties":{"description":"Created + by token: syncToken","type":"UserDefined","creationDate":"2026-09-10T06:49:37.1274213+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/metadata/read","repositories/repo3/content/read","gateway/child/message/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/rootregistry/config/write","repositories/repo1/content/read","gateway/child/message/read","gateway/child/config/read","gateway/rootregistry/message/write","gateway/child/config/write","gateway/rootregistry/config/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1100' + - '1078' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:48 GMT + - Thu, 10 Sep 2026 06:53:24 GMT expires: - '-1' pragma: @@ -10372,11 +10630,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/d966dfbc-fcf9-4e09-819f-8a1a4807c8e7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e501c20b-30bb-474f-b468-5549ecaaef2c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1F9243EE36874FD2822C019831A32101 Ref B: SYD03EDGE1009 Ref C: 2026-04-21T05:34:47Z' + - 'Ref A: D398080DD6F0430CA39E7BE9E691F8C7 Ref B: SYD281080709023 Ref C: 2026-09-10T06:53:24Z' status: code: 200 message: OK @@ -10394,21 +10652,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"name":"magic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"name":"cliregfckivn52alvx7u","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"name":"clireg000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"name":"sourceregistryajj6cs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_5ubpp4vkryjvxmmsyx36qv5yar4btjkykmerxtqhwptfrvjr6t7tfgvnxkeb/providers/Microsoft.ContainerRegistry/registries/sourceregistryajj6cs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879Z"}},{"name":"clitestrew4a5ys3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_32ki5cqkt7atrvcd3o6i65kexe54sb52to4nk2suo7l2dfc4jubawndaysr3/providers/Microsoft.ContainerRegistry/registries/clitestrew4a5ys3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:06.9600532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:06.9600532Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '3980' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:49 GMT + - Thu, 10 Sep 2026 06:53:25 GMT expires: - '-1' pragma: @@ -10420,9 +10678,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C13E84177D0243199A3A7689ABE29273 Ref B: SYD03EDGE1311 Ref C: 2026-04-21T05:34:48Z' + - 'Ref A: 75FC1F8B30C54F928951FCB469A5F1BA Ref B: SYD281080709060 Ref C: 2026-09-10T06:53:26Z' status: code: 200 message: OK @@ -10440,23 +10698,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:49 GMT + - Thu, 10 Sep 2026 06:53:26 GMT expires: - '-1' pragma: @@ -10468,9 +10726,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DA18EFBF9B8E4BD6B420A9A83AAD2B81 Ref B: SYD03EDGE1121 Ref C: 2026-04-21T05:34:49Z' + - 'Ref A: C56EB1421C594E6999A98739FA344CD9 Ref B: SYD281080709040 Ref C: 2026-09-10T06:53:27Z' status: code: 200 message: OK @@ -10488,23 +10746,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:49 GMT + - Thu, 10 Sep 2026 06:53:27 GMT expires: - '-1' pragma: @@ -10516,9 +10774,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 308F8817FB724FE2B8D32BBA3BE7877E Ref B: SYD03EDGE1714 Ref C: 2026-04-21T05:34:49Z' + - 'Ref A: 2E2C952BECB24D678A85D1D134C4D4EB Ref B: SYD281080712023 Ref C: 2026-09-10T06:53:27Z' status: code: 200 message: OK @@ -10536,25 +10794,26 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1242' + - '1243' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:51 GMT + - Thu, 10 Sep 2026 06:53:28 GMT expires: - '-1' pragma: @@ -10566,11 +10825,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/002e70c4-3c7b-4c1e-8646-2036088d4369 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/96b4c4e1-70d2-43ef-b277-b7f01f2161ec x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B6571CABAE01491B97CEA81020C67C5F Ref B: SYD03EDGE0805 Ref C: 2026-04-21T05:34:50Z' + - 'Ref A: 8BFD0D8EF6F04A1C85E5B18326E894CC Ref B: SYD281080708040 Ref C: 2026-09-10T06:53:28Z' status: code: 200 message: OK @@ -10588,27 +10847,28 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:51 GMT + - Thu, 10 Sep 2026 06:53:29 GMT expires: - '-1' pragma: @@ -10620,11 +10880,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/44a0d1ce-ed6b-48a9-bcae-dbf6c23e2cf4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4f8bdf75-341c-4802-ac03-b3f807646780 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DCBC4E2FB83340B38D7C69B8AADED2A4 Ref B: SYD03EDGE1719 Ref C: 2026-04-21T05:34:51Z' + - 'Ref A: 2B6FEBCC478244D2876C5534134998E0 Ref B: SYD281080709042 Ref C: 2026-09-10T06:53:29Z' status: code: 200 message: OK @@ -10642,28 +10902,29 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:34:38.7586069+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:34:38.7586069+00:00"},"properties":{"description":"Created - by connected registry sync token: child","type":"UserDefined","creationDate":"2026-04-21T05:32:11.5527426+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","repositories/repo1/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:17.5702201+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:17.5702201+00:00"},"properties":{"description":"Created + by connected registry sync token: child","type":"UserDefined","creationDate":"2026-09-10T06:50:15.4450938+00:00","provisioningState":"Succeeded","actions":["gateway/child/message/write","repositories/repo1/metadata/read","gateway/child/message/read","repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '879' + - '857' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:52 GMT + - Thu, 10 Sep 2026 06:53:29 GMT expires: - '-1' pragma: @@ -10675,11 +10936,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/e6314f2c-077b-4aab-a0e9-bbde749120cd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2c26d4dd-c6e9-47f9-b894-0e5e692fc37c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 86C4026952A847DCBC2835E5DBB891AA Ref B: SYD03EDGE1005 Ref C: 2026-04-21T05:34:52Z' + - 'Ref A: DF48A603F32C45BBBA46D0A1CC1B14C2 Ref B: SYD281080709036 Ref C: 2026-09-10T06:53:29Z' status: code: 200 message: OK @@ -10697,21 +10958,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233Z","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:22.4476233Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_5ubpp4vkryjvxmmsyx36qv5yar4btjkykmerxtqhwptfrvjr6t7tfgvnxkeb/providers/Microsoft.ContainerRegistry/registries/sourceregistryajj6cs","name":"sourceregistryajj6cs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_32ki5cqkt7atrvcd3o6i65kexe54sb52to4nk2suo7l2dfc4jubawndaysr3/providers/Microsoft.ContainerRegistry/registries/clitestrew4a5ys3","name":"clitestrew4a5ys3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:06.9600532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:06.9600532Z"}}]}' headers: cache-control: - no-cache content-length: - - '554' + - '3980' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:52 GMT + - Thu, 10 Sep 2026 06:53:31 GMT expires: - '-1' pragma: @@ -10723,9 +10984,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6FC30538FEA24208B4D2E63382CDA03A Ref B: SYD03EDGE0919 Ref C: 2026-04-21T05:34:53Z' + - 'Ref A: E5F060439B84462DA3826FBE896A7B31 Ref B: SYD281080709052 Ref C: 2026-09-10T06:53:30Z' status: code: 200 message: OK @@ -10743,23 +11004,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:53 GMT + - Thu, 10 Sep 2026 06:53:30 GMT expires: - '-1' pragma: @@ -10771,9 +11032,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: D4E8190E411E4D5BB33CD8167B8DA73F Ref B: SYD03EDGE1015 Ref C: 2026-04-21T05:34:53Z' + - 'Ref A: 80702C835A6946E187F1F476624020DA Ref B: SYD281080709036 Ref C: 2026-09-10T06:53:31Z' status: code: 200 message: OK @@ -10791,23 +11052,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1723' + - '1758' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:54 GMT + - Thu, 10 Sep 2026 06:53:31 GMT expires: - '-1' pragma: @@ -10819,9 +11080,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3EDBFCEF428546188F0F1AAC18A4B4DD Ref B: SYD03EDGE1110 Ref C: 2026-04-21T05:34:54Z' + - 'Ref A: 58404CCFC0694F60B9E519F23959656E Ref B: SYD281080712040 Ref C: 2026-09-10T06:53:32Z' status: code: 200 message: OK @@ -10839,25 +11100,26 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:16.7797821+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:16.7797821+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:20.1124607+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:20.1124607+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":true,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1242' + - '1243' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:54 GMT + - Thu, 10 Sep 2026 06:53:33 GMT expires: - '-1' pragma: @@ -10869,11 +11131,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/fcf423c0-4f6a-4d70-b8e9-813151e7c147 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e9f441ee-f166-438a-8b22-ebeee824415d x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7576E3850A9F403AB89F1E6C95C85FD2 Ref B: SYD03EDGE1010 Ref C: 2026-04-21T05:34:54Z' + - 'Ref A: 99BB797655AB4F78807B0F6EBD100750 Ref B: SYD281080707052 Ref C: 2026-09-10T06:53:32Z' status: code: 200 message: OK @@ -10893,21 +11155,22 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2026-09-01-preview response: body: string: '' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 21 Apr 2026 05:34:55 GMT + - Thu, 10 Sep 2026 06:53:33 GMT expires: - '-1' pragma: @@ -10919,13 +11182,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/0381d825-c300-4ba6-bf31-5322fe19776c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/50583cbc-cba7-4aba-8fdd-30417de73279 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: B5138B02A5F64A989B62E3DED8E09D7F Ref B: SYD03EDGE1021 Ref C: 2026-04-21T05:34:55Z' + - 'Ref A: 94AB2B4AE095470693BFF554D99A1931 Ref B: SYD281080711060 Ref C: 2026-09-10T06:53:33Z' status: code: 200 message: OK @@ -10943,27 +11206,28 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:32:12.731668+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:32:12.731668+00:00"},"properties":{"creationDate":"2026-04-21T05:32:13.0564983+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:16.1274443+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:16.1274443+00:00"},"properties":{"creationDate":"2026-09-10T06:50:16.398149+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '816' + - '795' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:56 GMT + - Thu, 10 Sep 2026 06:53:34 GMT expires: - '-1' pragma: @@ -10975,11 +11239,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/e0575e12-d8ef-4de2-8b6d-06deb6c84224 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5423d076-6957-4694-8b03-fbe494859f7b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7BADBD86525B4366BE3871FE962D4F17 Ref B: SYD03EDGE1720 Ref C: 2026-04-21T05:34:56Z' + - 'Ref A: 2EDDD7DADFBD48908E3FE383FB0BFDC9 Ref B: SYD281080710034 Ref C: 2026-09-10T06:53:34Z' status: code: 200 message: OK @@ -10999,27 +11263,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"totals_unique.6l@icloud.com","createdByType":"User","createdAt":"2026-04-21T05:31:22.4476233+00:00","lastModifiedBy":"totals_unique.6l@icloud.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-21T05:31:34.6009933+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-21T05:31:22.4476233Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699023+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-21T05:31:30.9699419+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1722' + - '1757' content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2026 05:34:57 GMT + - Thu, 10 Sep 2026 06:53:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-d5d62523-3d43-11f1-819b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464987608872&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=Qpt2rTZS5AdDg1s8yByzY_w8PD0w40VqLLOQ5nBTCDcdXiItGYtyAzw6COYbP62YgbZ_BWlerXQ-l83No4DW6w_H2KQIRowbyxGgiNs5c3aiqYA1dHRt-ieyQyakeqDw5mpnQKREjnwF2cBV5iIYgLF4xn_AFLwiP98r1GdLqFaDpebIhRmGIqu7t0fQxcx6QSnjuXdVtRVJVDUvCswYz4GF2Q3mo7RwE_Tqu-GhbGxZEHbfpWYSQl4qRqfZpZN0jRLPlFW7bIioxsL3UmSeYFzShpCchy4zRIHPJS8ybuxFG6PGXAynP08xChaG0y_txIdweHGwYBppgWUAPQxu2w&h=RAefaVPQVArsn3WfqwUr_GEkZS84BRpIbwfDjD8R7_k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-587b2e15-ace4-11f1-8607-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200155277514&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=VYA1GrNMysQzjPgAT7kV9sLiZs6M83UXssKDdYh1fAKlGVgi58TigpXuvaX3l3jSldLYMXhyxS5YqGkKKZ9GpXF67I6DHNpsuWJGTgEQ_KNtFqRF41SiQPVPcDt0uxxjUk6ExSvhzpP_OWCV14FNuITDca5WK3lln9GwG_MJrJflPIYKTAq5GwXU4kyeD-0nnYWJpN25Kf9mUfS_g1QKt28RU7I4vOfibjdIRkr_H1soCc_be5J72q_PKXL-g96bLbdH3sh1bGGQgorC6UoiCWdGnznBGB5g3amjT3GPKLqUWMins52hzjq4-f_G2z21O7P2EpisKcrXAWHXlqFwLw&h=JjvWBLei8oWT0FuPDVBxbDTKMm7NaUIE8V2yev-2CFw pragma: - no-cache strict-transport-security: @@ -11029,13 +11293,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/westus/dd50d7c6-3f0e-45f8-a472-7b3c34cef149 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3b7edab5-e63a-4c92-8d46-fda282b63dc0 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: 66C3C71369F34541932094C29400CB8E Ref B: SYD03EDGE1118 Ref C: 2026-04-21T05:34:57Z' + - 'Ref A: E49B04824AC6415A8425D80E2CB75906 Ref B: SYD281080707060 Ref C: 2026-09-10T06:53:35Z' status: code: 202 message: Accepted @@ -11053,9 +11317,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-d5d62523-3d43-11f1-819b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464987608872&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=Qpt2rTZS5AdDg1s8yByzY_w8PD0w40VqLLOQ5nBTCDcdXiItGYtyAzw6COYbP62YgbZ_BWlerXQ-l83No4DW6w_H2KQIRowbyxGgiNs5c3aiqYA1dHRt-ieyQyakeqDw5mpnQKREjnwF2cBV5iIYgLF4xn_AFLwiP98r1GdLqFaDpebIhRmGIqu7t0fQxcx6QSnjuXdVtRVJVDUvCswYz4GF2Q3mo7RwE_Tqu-GhbGxZEHbfpWYSQl4qRqfZpZN0jRLPlFW7bIioxsL3UmSeYFzShpCchy4zRIHPJS8ybuxFG6PGXAynP08xChaG0y_txIdweHGwYBppgWUAPQxu2w&h=RAefaVPQVArsn3WfqwUr_GEkZS84BRpIbwfDjD8R7_k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-587b2e15-ace4-11f1-8607-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200155277514&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=VYA1GrNMysQzjPgAT7kV9sLiZs6M83UXssKDdYh1fAKlGVgi58TigpXuvaX3l3jSldLYMXhyxS5YqGkKKZ9GpXF67I6DHNpsuWJGTgEQ_KNtFqRF41SiQPVPcDt0uxxjUk6ExSvhzpP_OWCV14FNuITDca5WK3lln9GwG_MJrJflPIYKTAq5GwXU4kyeD-0nnYWJpN25Kf9mUfS_g1QKt28RU7I4vOfibjdIRkr_H1soCc_be5J72q_PKXL-g96bLbdH3sh1bGGQgorC6UoiCWdGnznBGB5g3amjT3GPKLqUWMins52hzjq4-f_G2z21O7P2EpisKcrXAWHXlqFwLw&h=JjvWBLei8oWT0FuPDVBxbDTKMm7NaUIE8V2yev-2CFw response: body: string: '' @@ -11065,11 +11329,11 @@ interactions: content-length: - '0' date: - - Tue, 21 Apr 2026 05:34:59 GMT + - Thu, 10 Sep 2026 06:53:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-d5d62523-3d43-11f1-819b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464998375025&c=MIIHlDCCBnygAwIBAgIQZWPGY4UySQhtgeazTCTUozANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQxMzEyMDczMFoXDTI2MTAwODE4MDczMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVdAYWGkOoBfvx_HTZo3XsCMnl9FgocqNL0qtxpPSMZyo4pqoADmBqKQ5h794Os58Hn8erVEvQ9EHw19fXk5SHo9trs4KnzCvBy3qu1l-MoLSnMLH94bWWnpBu6cKBA1SgoyVClMMF8ugYR87giG3vR720WDQuvwTgMmihZXBJ4YmcqJlLiMpnM1S1wNIo6I1XYGl2J6Y5YtTSHxSDwnylVnNXmqoADkb3pxYRCbrLcQU3U2GWHrZQxoTsrDJNPSbv1Wi7EI-dviAdSKphaA3GS4N6J4UgjWuEBePHa6o-fw-3elnDgpS-Z7Oz8AFv4IhmSyCm0vU7bzBORFa_lkCpAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRqidylvtclBp-ODYvXB0EupuupgTAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvOTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzk4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvOTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS85OC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQC3Q9HV3TM2ii0jy6HhXWWyulX4MRoUYt6iWWb8iIJlEE5NpkXhxZJF3t5CsVnR3P38vbBroevaLx9-bH8wFD0rrOHKpmyQzK4ay2x3V4y09_sY3K4gtVmBTiZ35CUSP6_eoq897uhV0mP0hlagWRZwqSkD0CofHCTQfkavxDpkenQJT5pHVJZwN2BPk80GhMYhpWPWnUXHvyk-_R-erVDCzbeAjZRaMMaCLnOLk6WSMKFHKi7ilfbCQ4w7mQoUhwSaZ35A-0NzULrQ31lqfrEj3aeEndWMcaPW0zsp9LBfJrvrbwPglPFJNcNTAL_wbcbK8Vczqw1sv4qOdvBElXTS&s=oZA08iAtQKYooZXLlu_xarHd8TShmAAWT-2ebK-JPWGFCw-Ttd725nOCezmHXoDqTXDKpR9xonXffB1T7OXGe_wNQ2EMTi3EkyGlARNr2NM-B3YdSQ-Aj1F8xwNn9zbwkfdbqrs8viruzJKnBsTnKCpOmcgd0ddY2BR3hBl2Tt3OoQcLSMT4WCw_lxnC2llkqZYFg3YTpLd6CUO-L5apTJa9He9hq60Bn1qAnpn4-g2pRPzuQMpinaHvTVPR2-iIipmIYWfJeSPA4Wp_L4bld3lUDvTA26QVfP0Bttnx9LjvE9P984Q2HEilBj_kDI2bWO93EdRp36eujFXb9jCAAQ&h=S5nS6ZX3jZ5pc4W37HTgEFPFpBpuyWSvklOWaYNY_ag + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-587b2e15-ace4-11f1-8607-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200170261660&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=elDJTOesNGZQIRiuesE7bqJ5BAM6VsrK7GGGBzCeCY16alwWPptYWAcCu7-bIA8udEBroQArGJnOSeLNqiiq_F3_XsRtOE1oqDsHtpTbvocapZxiiO08yf1uDfAtKULqz4Ko9ISw6N5cxGN2mnKISWl71A84wZ4Wtvm83NdLVTcwtl2yd_Rf_dz2y6YIV-09ygvt7wZ4HIwmoSJyChxG10DECBcJ8XlNkZ_z1-b377fXyZyEpJ4GwD76VfrmusoD-jtxR2MxCePSyMPa2Z3t1t6HCdPqLKZUZDtuZEyQVhGS8EqzeqxN-gVHHDWoV96RjsBjhLk2jB2oKlxszG2aCg&h=GuLMM1fEd89gzXAmkErSTD3T2HBlgxEZ8WCSYgAFFqk pragma: - no-cache strict-transport-security: @@ -11079,11 +11343,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/australiasoutheast/48fa2bf8-3e9e-4072-9300-ee603706af1b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/5be539b2-b6aa-4cfb-b91e-add46665dd09 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BF54DE344B8345CEAC1B35944486650D Ref B: SYD03EDGE1314 Ref C: 2026-04-21T05:34:59Z' + - 'Ref A: A9AB3407FB62454AB5AA4E2346510E41 Ref B: SYD281080708060 Ref C: 2026-09-10T06:53:36Z' status: code: 202 message: Accepted @@ -11101,9 +11365,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-d5d62523-3d43-11f1-819b-00155d7ffebd?api-version=2026-03-01-preview&t=639123464998375025&c=MIIHlDCCBnygAwIBAgIQZWPGY4UySQhtgeazTCTUozANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQxMzEyMDczMFoXDTI2MTAwODE4MDczMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVdAYWGkOoBfvx_HTZo3XsCMnl9FgocqNL0qtxpPSMZyo4pqoADmBqKQ5h794Os58Hn8erVEvQ9EHw19fXk5SHo9trs4KnzCvBy3qu1l-MoLSnMLH94bWWnpBu6cKBA1SgoyVClMMF8ugYR87giG3vR720WDQuvwTgMmihZXBJ4YmcqJlLiMpnM1S1wNIo6I1XYGl2J6Y5YtTSHxSDwnylVnNXmqoADkb3pxYRCbrLcQU3U2GWHrZQxoTsrDJNPSbv1Wi7EI-dviAdSKphaA3GS4N6J4UgjWuEBePHa6o-fw-3elnDgpS-Z7Oz8AFv4IhmSyCm0vU7bzBORFa_lkCpAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRqidylvtclBp-ODYvXB0EupuupgTAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvOTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzk4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvOTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS85OC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQC3Q9HV3TM2ii0jy6HhXWWyulX4MRoUYt6iWWb8iIJlEE5NpkXhxZJF3t5CsVnR3P38vbBroevaLx9-bH8wFD0rrOHKpmyQzK4ay2x3V4y09_sY3K4gtVmBTiZ35CUSP6_eoq897uhV0mP0hlagWRZwqSkD0CofHCTQfkavxDpkenQJT5pHVJZwN2BPk80GhMYhpWPWnUXHvyk-_R-erVDCzbeAjZRaMMaCLnOLk6WSMKFHKi7ilfbCQ4w7mQoUhwSaZ35A-0NzULrQ31lqfrEj3aeEndWMcaPW0zsp9LBfJrvrbwPglPFJNcNTAL_wbcbK8Vczqw1sv4qOdvBElXTS&s=oZA08iAtQKYooZXLlu_xarHd8TShmAAWT-2ebK-JPWGFCw-Ttd725nOCezmHXoDqTXDKpR9xonXffB1T7OXGe_wNQ2EMTi3EkyGlARNr2NM-B3YdSQ-Aj1F8xwNn9zbwkfdbqrs8viruzJKnBsTnKCpOmcgd0ddY2BR3hBl2Tt3OoQcLSMT4WCw_lxnC2llkqZYFg3YTpLd6CUO-L5apTJa9He9hq60Bn1qAnpn4-g2pRPzuQMpinaHvTVPR2-iIipmIYWfJeSPA4Wp_L4bld3lUDvTA26QVfP0Bttnx9LjvE9P984Q2HEilBj_kDI2bWO93EdRp36eujFXb9jCAAQ&h=S5nS6ZX3jZ5pc4W37HTgEFPFpBpuyWSvklOWaYNY_ag + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-587b2e15-ace4-11f1-8607-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200170261660&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=elDJTOesNGZQIRiuesE7bqJ5BAM6VsrK7GGGBzCeCY16alwWPptYWAcCu7-bIA8udEBroQArGJnOSeLNqiiq_F3_XsRtOE1oqDsHtpTbvocapZxiiO08yf1uDfAtKULqz4Ko9ISw6N5cxGN2mnKISWl71A84wZ4Wtvm83NdLVTcwtl2yd_Rf_dz2y6YIV-09ygvt7wZ4HIwmoSJyChxG10DECBcJ8XlNkZ_z1-b377fXyZyEpJ4GwD76VfrmusoD-jtxR2MxCePSyMPa2Z3t1t6HCdPqLKZUZDtuZEyQVhGS8EqzeqxN-gVHHDWoV96RjsBjhLk2jB2oKlxszG2aCg&h=GuLMM1fEd89gzXAmkErSTD3T2HBlgxEZ8WCSYgAFFqk response: body: string: '' @@ -11113,7 +11377,7 @@ interactions: content-length: - '0' date: - - Tue, 21 Apr 2026 05:35:09 GMT + - Thu, 10 Sep 2026 06:53:47 GMT expires: - '-1' pragma: @@ -11125,11 +11389,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=62c95205-e781-41a6-a58d-5895ace9f6f9,objectId=a20fbf29-d4ab-4702-a031-ab434bfe9f53/australiasoutheast/c3b9b919-0629-415e-b1a6-910941b0ee94 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/3a4c0f5f-0b80-4c31-bf16-a497ee8132a4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CE9ADBC68D334588904C1DF0BFED1A84 Ref B: SYD03EDGE0805 Ref C: 2026-04-21T05:35:09Z' + - 'Ref A: 28050BE87D4B49C582F75832D2307C3A Ref B: SYD281080706036 Ref C: 2026-09-10T06:53:47Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry_dedicated_endpoint_not_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry_dedicated_endpoint_not_enabled.yaml index 59d6bbba294..31d15eb1a38 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry_dedicated_endpoint_not_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry_dedicated_endpoint_not_enabled.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:48.6878935+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:01:56.1210277+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:01:56.1210764+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:55.8873773+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:08.773883+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:08.7739225+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:01:56 GMT + - Thu, 10 Sep 2026 06:54:08 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/73df3f9e-096e-44f6-9435-028c26b1b4b0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/31def443-2b2d-4491-a42d-11fec4b93fa7 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: EDCBB1A902DB490E8DF4900EF9C99511 Ref B: BY1AA1072318025 Ref C: 2026-03-26T18:01:48Z' + - 'Ref A: 0C08C49CD1D94BDBB8217A684807A00D Ref B: SYD281080705040 Ref C: 2026-09-10T06:53:53Z' status: code: 200 message: OK @@ -70,21 +70,21 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:48.6878935Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_yf63tjl4vxpkzwvzsani7vgrpagrn5rvahxffww76hdwhdunceozp643axfm/providers/Microsoft.ContainerRegistry/registries/clitestrepap7spu","name":"clitestrepap7spu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:46.8678689Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_gqfphwp3trg64to65eacowuvou536v5xts3gdsddxrl4kjpzrs5wn3raun7y/providers/Microsoft.ContainerRegistry/registries/cliregpezjs4fipujzl4","name":"cliregpezjs4fipujzl4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:47.3308679Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:47.3308679Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:55.8873773Z"}}]}' headers: cache-control: - no-cache content-length: - - '532' + - '3980' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:01:57 GMT + - Thu, 10 Sep 2026 06:54:09 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 640AD1D2935E422A8127E438961A1F7E Ref B: BY1AA1072319036 Ref C: 2026-03-26T18:01:56Z' + - 'Ref A: CE6C71E5AF704BA1B380DD54FC8C6A3F Ref B: SYD281080706036 Ref C: 2026-09-10T06:54:09Z' status: code: 200 message: OK @@ -116,23 +116,23 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:48.6878935+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:01:56.1210277+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:01:56.1210764+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:55.8873773+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:08.773883+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:08.7739225+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:01:57 GMT + - Thu, 10 Sep 2026 06:54:11 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D5E83598FFD34EBB95D55DC80FD2225F Ref B: BY1AA1072318052 Ref C: 2026-03-26T18:01:57Z' + - 'Ref A: AE48BD3C0A644FA3B5B770473A34138C Ref B: SYD281080712025 Ref C: 2026-09-10T06:54:10Z' status: code: 200 message: OK @@ -164,23 +164,23 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:48.6878935+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:01:56.1210277+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:01:56.1210764+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:55.8873773+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:08.773883+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:08.7739225+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:01:58 GMT + - Thu, 10 Sep 2026 06:54:12 GMT expires: - '-1' pragma: @@ -194,22 +194,23 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3CE04CEB5F1D471E9F8DA965650963DC Ref B: SJC211051205007 Ref C: 2026-03-26T18:01:58Z' + - 'Ref A: 1026D2BB4D014B1CA980461BE6056A06 Ref B: SYD281080709042 Ref C: 2026-09-10T06:54:12Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "location": "eastus", "tags": {}, "properties": - {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "ipRules": - []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": - {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": - "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": + [], "ipRules": []}, "policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 7, "status": "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, "dataEndpointEnabled": true, "regionalEndpoints": "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": - "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -220,31 +221,31 @@ interactions: Connection: - keep-alive Content-Length: - - '938' + - '999' Content-Type: - application/json ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:59.5903876+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:02:00.3537424+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:02:00.3538233+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:14.4254838+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:14.4255544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-e0abd25d-293d-11f1-bd68-70a8a5190411?api-version=2026-03-01-preview&t=639101449207310124&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=W1E58pE5mkKVdeWus2nb1oskkMh-V2efKeQCB-QAjgqKnRgEWcCIgGxDvbSRfh0-U-6XBaNoiZJ_j1Xp7jwHHKsQJSsvoL4wZ-3DFsoPdrV2D76iSRGXh2gB2R-81aQDfu0AuCIj4dZj3kF9kXplCFPwa2jTkSd__PZzOCW4j1jml8jFyTuWrnuYJvtn58SlnRK2XzCx0Tx490FkTnNxu5hycwWDOtX_T59UcdPdHoa5NtNQZjMjD-NHidgMPyJcFdcHBNhLdt2eQ42jwBqnkLTR6AXqrKklWYseug83lB3VRr_aWM6Qfbi0zADbbeah1WZa6NyHyJwZ6OdUmYYZSQ&h=NY9hOaVslkM3T_Boo9CHQhGKDwcSqFUNjay0OBbFVCM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-6cfbaf67-ace4-11f1-8dac-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200547124527&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mH9dVi3bqgOGxTgEPKtBG4HAW9dPErdQPl9xLc9k_p7cb0R1VRYfcOdlymqjZZrqp9Fz8lTdiBuLWkV1v2xvqHxbkU531ZyNzhQchlmtqQ8vqueLBhcFF1xayE_wnD6bjg0c3qS0mAuweLhZaRqOrSWRBcV9dTTpScfqw3O4KFHhfUZG6-TH6jHX_qls6k_O6Xzo5HqFNqTioQ6_thW6Z1svE5CF4gR42Gnrptsm0-dZdKGjisevVyFAW6oZ5CMO9YABlyYbRMLAdklG3QfiVwqXJ6wacQHLNwVIOWClmOVjdxuqUSkutrlcRHYHmo9bapbl8xhv9SMLfD9um88VLQ&h=8ABHKhMAMm7E_M1jkXz-ebQFdSZHyivY91Td-QfFwhQ cache-control: - no-cache content-length: - - '1700' + - '1757' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:00 GMT + - Thu, 10 Sep 2026 06:54:14 GMT expires: - '-1' pragma: @@ -256,13 +257,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f6ee55b5-f1b3-4d24-9ab5-413a9f83a71e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4177579b-6548-4d61-9fd2-707a6fc6f61a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4041FFFB54F24F91BDD28817702CF4BD Ref B: BY1AA1072317023 Ref C: 2026-03-26T18:01:58Z' + - 'Ref A: 0E6C3D74E0884A53A04674A36E3CCF29 Ref B: SYD281080709052 Ref C: 2026-09-10T06:54:13Z' status: code: 201 message: Created @@ -280,17 +281,17 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-e0abd25d-293d-11f1-bd68-70a8a5190411?api-version=2026-03-01-preview&t=639101449207310124&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=W1E58pE5mkKVdeWus2nb1oskkMh-V2efKeQCB-QAjgqKnRgEWcCIgGxDvbSRfh0-U-6XBaNoiZJ_j1Xp7jwHHKsQJSsvoL4wZ-3DFsoPdrV2D76iSRGXh2gB2R-81aQDfu0AuCIj4dZj3kF9kXplCFPwa2jTkSd__PZzOCW4j1jml8jFyTuWrnuYJvtn58SlnRK2XzCx0Tx490FkTnNxu5hycwWDOtX_T59UcdPdHoa5NtNQZjMjD-NHidgMPyJcFdcHBNhLdt2eQ42jwBqnkLTR6AXqrKklWYseug83lB3VRr_aWM6Qfbi0zADbbeah1WZa6NyHyJwZ6OdUmYYZSQ&h=NY9hOaVslkM3T_Boo9CHQhGKDwcSqFUNjay0OBbFVCM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-6cfbaf67-ace4-11f1-8dac-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200547124527&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mH9dVi3bqgOGxTgEPKtBG4HAW9dPErdQPl9xLc9k_p7cb0R1VRYfcOdlymqjZZrqp9Fz8lTdiBuLWkV1v2xvqHxbkU531ZyNzhQchlmtqQ8vqueLBhcFF1xayE_wnD6bjg0c3qS0mAuweLhZaRqOrSWRBcV9dTTpScfqw3O4KFHhfUZG6-TH6jHX_qls6k_O6Xzo5HqFNqTioQ6_thW6Z1svE5CF4gR42Gnrptsm0-dZdKGjisevVyFAW6oZ5CMO9YABlyYbRMLAdklG3QfiVwqXJ6wacQHLNwVIOWClmOVjdxuqUSkutrlcRHYHmo9bapbl8xhv9SMLfD9um88VLQ&h=8ABHKhMAMm7E_M1jkXz-ebQFdSZHyivY91Td-QfFwhQ response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-e0abd25d-293d-11f1-bd68-70a8a5190411?api-version=2026-03-01-preview&t=639101449213975690&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IFuEAlYPn0AjfBac_9q_WTKXo0iM9y1_hxmu2asf0tsl9lcCo7oN7_mw3Mtq-EchgQ84G5hwguJc-AFlsYEx0ck965hwO7B13mv4OKl3KVAMgSfJprLpQGrEsgwLCtKlx53xSvs8OnQCfGYlsxZUXvreAnBVOR83PXuSLx5d9Zu_U9VS5N_aCPYI_JzaOPrDuZmaYm60otmwfiVJ8cBtjYwT_aNZQZAZ1CYCxFumUO3ijmPFB8IGyLXuJvH-6Yybkb_DJmY0nLP9_i8iwbtrGrWM--7_xv_dHkPd2QuItkHfgK6o9iJIzogCQU03Gd0zHkdXi9tFZ8h1g-0_pdIW-Q&h=jx_b-QaxxeFgOijh6ME-y7qYjsYIa-SRf26EVqGCE30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-6cfbaf67-ace4-11f1-8dac-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200557364036&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mxr24D9Kw8LonligzKNX-gddBiGaic8yu58BvE-kp66opXGQGV6POD9f6iRhcA4jf5ZCgCIRMnlkc7O20iZFENl17AZ5aWG2nduqAfUuOy95KCsiIOmx5x-17Kqao7rxZAeYCcrReoznr0RRiguMF5CqxLao8FyVbcnYFvUTRV81Jz2ZSe3EhGcrmwwZMX2DTQvPu6o4XnnDurxWg06IpzYg6SWuFRoAdoFcrMi8s5HUYvbunrdg7SDfZ6pBBMk9GX-xMrMzrthS93sO0ED_igd8uWH_K4-pLEhToVOo0X43sXKB4zvWiHuq4iifJo0Vx7NvwSSIZBaXlQnPqprVuQ&h=K04bY07hHFtvmNDVc0Ut7V51rlBqGbYHLeHlbh8L-EY cache-control: - no-cache content-length: @@ -298,7 +299,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:01 GMT + - Thu, 10 Sep 2026 06:54:15 GMT expires: - '-1' pragma: @@ -310,11 +311,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8969007b-40d5-4144-a590-6b3bc0293b5a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e47e3d60-af7d-40b2-b3b2-ee865fe324aa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E734E136B6774B83A3A14D6645D62DEF Ref B: BY1AA1072317031 Ref C: 2026-03-26T18:02:01Z' + - 'Ref A: 837DCC2267C04A6C9E81012D280AF242 Ref B: SYD281080709023 Ref C: 2026-09-10T06:54:15Z' status: code: 200 message: OK @@ -332,23 +333,23 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:59.5903876+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:02:00.3537424+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:02:00.3538233+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:14.4254838+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:14.4255544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1701' + - '1758' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:01 GMT + - Thu, 10 Sep 2026 06:54:15 GMT expires: - '-1' pragma: @@ -362,7 +363,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7CD0381E046647E89EC8C7F93AF47ECE Ref B: BY1AA1072316054 Ref C: 2026-03-26T18:02:01Z' + - 'Ref A: F8BB5732F23643CE840CAA7EC712FBCC Ref B: SYD281080711040 Ref C: 2026-09-10T06:54:16Z' status: code: 200 message: OK @@ -380,9 +381,9 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource connectedregistry @@ -393,7 +394,8 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -401,7 +403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:02 GMT + - Thu, 10 Sep 2026 06:54:17 GMT expires: - '-1' pragma: @@ -413,24 +415,24 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/2bdeb961-abc5-4950-827b-76fff7ef5c1c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a5e2b11e-7592-4198-a778-bbb6338da73f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C9D462F58E004AA4BE3DABDEF21EB347 Ref B: BY1AA1072315034 Ref C: 2026-03-26T18:02:02Z' + - 'Ref A: FF5F7C022B3E4057B232A0CD768B0172 Ref B: SYD281080706040 Ref C: 2026-09-10T06:54:17Z' status: code: 404 message: Not Found - request: - body: '{"properties": {"actions": ["repositories/repo1/content/read", "repositories/repo1/content/write", + body: '{"properties": {"description": "Created by connected registry sync token: + connectedregistry", "actions": ["repositories/repo1/content/read", "repositories/repo1/content/write", "repositories/repo1/content/delete", "repositories/repo1/metadata/read", "repositories/repo1/metadata/write", "repositories/repo2/content/read", "repositories/repo2/content/write", "repositories/repo2/content/delete", "repositories/repo2/metadata/read", "repositories/repo2/metadata/write", "repositories/repo3/content/read", "repositories/repo3/content/write", "repositories/repo3/content/delete", "repositories/repo3/metadata/read", "repositories/repo3/metadata/write", "gateway/connectedregistry/config/read", "gateway/connectedregistry/config/write", "gateway/connectedregistry/message/read", - "gateway/connectedregistry/message/write"], "description": "Created by connected - registry sync token: connectedregistry"}}' + "gateway/connectedregistry/message/write"]}}' headers: Accept: - application/json @@ -447,28 +449,29 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:02:03.226413+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:02:03.226413+00:00"},"properties":{"description":"Created - by connected registry sync token: connectedregistry","type":"UserDefined","creationDate":"2026-03-26T18:02:03.4497152+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/content/write","repositories/repo1/content/delete","repositories/repo1/metadata/read","repositories/repo1/metadata/write","repositories/repo2/content/read","repositories/repo2/content/write","repositories/repo2/content/delete","repositories/repo2/metadata/read","repositories/repo2/metadata/write","repositories/repo3/content/read","repositories/repo3/content/write","repositories/repo3/content/delete","repositories/repo3/metadata/read","repositories/repo3/metadata/write","gateway/connectedregistry/config/read","gateway/connectedregistry/config/write","gateway/connectedregistry/message/read","gateway/connectedregistry/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:18.7360917+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:18.7360917+00:00"},"properties":{"description":"Created + by connected registry sync token: connectedregistry","type":"UserDefined","creationDate":"2026-09-10T06:54:19.3526143+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/content/write","repositories/repo1/content/delete","repositories/repo1/metadata/read","repositories/repo1/metadata/write","repositories/repo2/content/read","repositories/repo2/content/write","repositories/repo2/content/delete","repositories/repo2/metadata/read","repositories/repo2/metadata/write","repositories/repo3/content/read","repositories/repo3/content/write","repositories/repo3/content/delete","repositories/repo3/metadata/read","repositories/repo3/metadata/write","gateway/connectedregistry/config/read","gateway/connectedregistry/config/write","gateway/connectedregistry/message/read","gateway/connectedregistry/message/write"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '1398' + - '1400' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:03 GMT + - Thu, 10 Sep 2026 06:54:19 GMT expires: - '-1' pragma: @@ -480,18 +483,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8cc7dd4f-7458-4f31-985e-617a997a11b0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/1aee7e28-1323-45cd-9fd5-acd24d555270 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 33FA3FE54AE648089B1597ACE637FD13 Ref B: SJC211051205029 Ref C: 2026-03-26T18:02:03Z' + - 'Ref A: F04764E9D47A43FDA8777732DB71181C Ref B: SYD281080707052 Ref C: 2026-09-10T06:54:18Z' status: code: 200 message: OK - request: - body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry"}}' + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry", + "status": "enabled"}}' headers: Accept: - application/json @@ -508,29 +512,30 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:02:03.7727535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:02:03.7727535+00:00"},"properties":{"creationDate":"2026-03-26T18:02:04.011929+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:20.667455+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:20.667455+00:00"},"properties":{"creationDate":"2026-09-10T06:54:20.8780443+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-e0abd25d-293d-11f1-bd68-70a8a5190411?api-version=2026-03-01-preview&t=639101449241165320&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=LwSL_AQWIrdfPDVUKfQtwEK3B8eXG91TeBRigPzQvJv8tMZG1_0F0AcngdEC8yGS8UT9yWl0w0vBUI9w2GEuhnvHnqeug1UTvmrx2hwzYyGUEqYIvKQEGJmYTRY3y6pirAb8E7KWjecVQ0qSa2l8Wnsm9vuIPiwRS9bh0PygmovbbkoXEPbZ2xYtn4HLjdHtG6DhNdueBWDyIF7iySRr9hAro7r5En9Ev8mWtrE0OwBt7VpZM8C1N-QopZ7th94YCEahoNGORYh-6oLqorUclAsZyNOQ281ehTbzA6DaESau2EoLU5NC9Ia7fYKH6HaS8Cb6_lM3u5XQCs-LiBLVkQ&h=7kLbU5v9xdU7BckpsVyjPi0j4Ee3lbS1YjV3EqwRNZM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-6cfbaf67-ace4-11f1-8dac-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200609955815&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=d6HKq_ZBJ7MgYTtIk61614812NQ06e50pzw3IMgmTumNQz-xnuBfztjIdZeyziFo4i2McJ-9_zhV1XAafPWxxl6p-A0wnUdXagF1NjBMGhIEDrWcwm5jsRVD84wd3wZ0u-PMw62s9DErRlzxrGjOKMWAJ0235gMhI6LIy937PCN4sjeUjKK5i0O8WQN85khwMetshhC1Y7J8p2E8ys62IkFpVdKZ1DtRSeXj4oe3RyJoXS8zygbQUtumOj3Pr1MZWBDRNsw6Mip8AB8pxZTpgXxDRdhpXopNS08UppT-_5dnktoBHThyhFkNKgWJWnlKfCcQG4MmEMiu9kAiYewi3g&h=Q9jTAtaVWlRskGSPdSROBfMz7fdeFVK9E8stwJY989U cache-control: - no-cache content-length: - - '830' + - '829' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:03 GMT + - Thu, 10 Sep 2026 06:54:20 GMT expires: - '-1' pragma: @@ -542,13 +547,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/bdfe226c-761b-46af-9b5c-d43e1eb48c7d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/81fdc911-17b9-45cf-bdac-3de4e807ff52 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 7AA18D06628D483B8D9372CF7C0321A2 Ref B: BY1AA1072318025 Ref C: 2026-03-26T18:02:03Z' + - 'Ref A: 5B18ADA3E4084AE68ADCB0FB0D9A90A3 Ref B: SYD281080709062 Ref C: 2026-09-10T06:54:20Z' status: code: 201 message: Created @@ -566,9 +571,9 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-e0abd25d-293d-11f1-bd68-70a8a5190411?api-version=2026-03-01-preview&t=639101449241165320&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=LwSL_AQWIrdfPDVUKfQtwEK3B8eXG91TeBRigPzQvJv8tMZG1_0F0AcngdEC8yGS8UT9yWl0w0vBUI9w2GEuhnvHnqeug1UTvmrx2hwzYyGUEqYIvKQEGJmYTRY3y6pirAb8E7KWjecVQ0qSa2l8Wnsm9vuIPiwRS9bh0PygmovbbkoXEPbZ2xYtn4HLjdHtG6DhNdueBWDyIF7iySRr9hAro7r5En9Ev8mWtrE0OwBt7VpZM8C1N-QopZ7th94YCEahoNGORYh-6oLqorUclAsZyNOQ281ehTbzA6DaESau2EoLU5NC9Ia7fYKH6HaS8Cb6_lM3u5XQCs-LiBLVkQ&h=7kLbU5v9xdU7BckpsVyjPi0j4Ee3lbS1YjV3EqwRNZM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-6cfbaf67-ace4-11f1-8dac-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200609955815&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=d6HKq_ZBJ7MgYTtIk61614812NQ06e50pzw3IMgmTumNQz-xnuBfztjIdZeyziFo4i2McJ-9_zhV1XAafPWxxl6p-A0wnUdXagF1NjBMGhIEDrWcwm5jsRVD84wd3wZ0u-PMw62s9DErRlzxrGjOKMWAJ0235gMhI6LIy937PCN4sjeUjKK5i0O8WQN85khwMetshhC1Y7J8p2E8ys62IkFpVdKZ1DtRSeXj4oe3RyJoXS8zygbQUtumOj3Pr1MZWBDRNsw6Mip8AB8pxZTpgXxDRdhpXopNS08UppT-_5dnktoBHThyhFkNKgWJWnlKfCcQG4MmEMiu9kAiYewi3g&h=Q9jTAtaVWlRskGSPdSROBfMz7fdeFVK9E8stwJY989U response: body: string: '{"status":"Succeeded"}' @@ -578,9 +583,10 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-e0abd25d-293d-11f1-bd68-70a8a5190411?api-version=2026-03-01-preview&t=639101449246301354&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=NEkBKBTLxYT28VwwLPVCFIIWh5gIFvhPPpelWuZfrSySSczZNJq3A_osz3CmrVA270s3KadgAK8tkqginWzlR4j10fBQpakOV00lh3azrAK02OJsUpygn_QdfiafXbRBeQKUlnkq5TWa9sWkhSzQbmILKoHPklwzodQFjRWeN45IjVMF1wjwnIpaiRK4t49rjZ5AgelBeOwz55gb1RQtXkcLDb_OirMf70flOYRUxPLJqtRv5UvzmJuBCcVc4ahwnKzsnyY2Z4tvMiI-f61XXXSZqI_1YH_wrZTFCVUeDLpiJDYfF5qxmrzbq4iXPy6Mg6300NmFsos6emJFnpv-bQ&h=L1OQW-W7bs07nXPyd9CZuAMCmQCZ8nsm5GRbQ_FZXsk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry/operationStatuses/token-6cfbaf67-ace4-11f1-8dac-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200620241489&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=SXVB3j8lY_RnfZcXAytiRSGuXJPHIfD5ZN7Um1ZrDw2T3m9rJGwQdzCTn3Td8klApD5rqUVxhIeGYl_lK-rS1Zt_4EmjJoraTJjw32kiXYZLFfY6cvI4raxSy3yIV1qK0s3x6c8VNFjAUI7fK6tC6M2EAoFRRqYb_N8UiazvJpEkcuDQo5SD4I_EvBWajP_PXaAqro2IBXa-jyPCWDVgEkJQ5VMAqzAgpanzkdiuRPwlsQgGbxZ6Rp7d7JgIUvx4FOvd-0yDZWO5zqsWrv5M9A7mEPRZTIFeMxg6ILcCuX_T0ovzYOIK31B2Af2a3PuM-fRnGWuMN0_gOSIS6CxfBA&h=99E3aa93R2EYnGlgdbcog_d81Br-fdtgIoRVJYcQUgw cache-control: - no-cache content-length: @@ -588,7 +594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:03 GMT + - Thu, 10 Sep 2026 06:54:21 GMT expires: - '-1' pragma: @@ -600,11 +606,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6237ca35-95c0-476d-a72e-b72534c6a4b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/62320a15-5e6f-42ca-a167-f3cdbf9cd496 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6C2156DECBE44205B327EE5D7F0F3039 Ref B: SJC211051203047 Ref C: 2026-03-26T18:02:04Z' + - 'Ref A: 4D0E6D39440B434EA65A1FE39831A058 Ref B: SYD281080708042 Ref C: 2026-09-10T06:54:21Z' status: code: 200 message: OK @@ -622,27 +628,28 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:02:03.7727535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:02:03.7727535+00:00"},"properties":{"creationDate":"2026-03-26T18:02:04.011929+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:20.667455+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:20.667455+00:00"},"properties":{"creationDate":"2026-09-10T06:54:20.8780443+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '831' + - '830' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:04 GMT + - Thu, 10 Sep 2026 06:54:22 GMT expires: - '-1' pragma: @@ -654,19 +661,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ef36e12b-3045-437e-bdc8-f5d98158ad21 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8f018011-4f56-45e8-be5d-07856349df17 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AEA327D23D4B462195AE24745043D0E8 Ref B: SJC211051205009 Ref C: 2026-03-26T18:02:04Z' + - 'Ref A: 043EDBC7011A452386445094871CA76C Ref B: SYD281080706029 Ref C: 2026-09-10T06:54:22Z' status: code: 200 message: OK - request: - body: '{"properties": {"logging": {"logLevel": "Information", "auditLogStatus": - "Disabled"}, "garbageCollection": {"enabled": false, "schedule": "0 0 * * *"}, - "mode": "readwrite", "parent": {"syncProperties": {"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry", - "schedule": "* * * * *", "messageTtl": "P2D"}}}}' + body: '{"properties": {"mode": "readwrite", "garbageCollection": {"enabled": false, + "schedule": "0 0 * * *"}, "parent": {"syncProperties": {"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry", + "schedule": "* * * * *", "messageTtl": "P2D"}}, "logging": {"logLevel": "Information", + "auditLogStatus": "Disabled"}}}' headers: Accept: - application/json @@ -683,25 +690,26 @@ interactions: ParameterSetName: - -n -r -m --repository --gc-enabled -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:02:05.5027321+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:02:05.5027321+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:23.9014847+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:23.9014847+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1128' + - '1151' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:05 GMT + - Thu, 10 Sep 2026 06:54:24 GMT expires: - '-1' pragma: @@ -713,13 +721,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/63941c9b-dbc4-4d9b-a40e-646a748802cf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/08548237-632e-4e68-b997-6838b1fb4cb0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6FB5657DD68E4D0383E8CA978F76B652 Ref B: BY1AA1072315060 Ref C: 2026-03-26T18:02:05Z' + - 'Ref A: 32EBB48732D54F14ABF9A151BE52027F Ref B: SYD281080708042 Ref C: 2026-09-10T06:54:23Z' status: code: 200 message: OK @@ -737,23 +745,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:59.5903876+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:02:00.3537424+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:02:00.3538233+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:14.4254838+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:14.4255544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1701' + - '1758' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:05 GMT + - Thu, 10 Sep 2026 06:54:24 GMT expires: - '-1' pragma: @@ -767,7 +775,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4B8F3A72FE504698907AB3E24DDFF56B Ref B: BY1AA1072317025 Ref C: 2026-03-26T18:02:06Z' + - 'Ref A: 8EBA139E6CB5468EA1DE51BD24CD614C Ref B: SYD281080706025 Ref C: 2026-09-10T06:54:24Z' status: code: 200 message: OK @@ -785,21 +793,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:59.5903876Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966Z"}}]}' headers: cache-control: - no-cache content-length: - - '532' + - '2796' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:06 GMT + - Thu, 10 Sep 2026 06:54:25 GMT expires: - '-1' pragma: @@ -813,7 +821,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 86FE2B32987F43CFA6012FADEB8810C4 Ref B: BY1AA1072319054 Ref C: 2026-03-26T18:02:06Z' + - 'Ref A: AAC645615C7F4635B25496297965D480 Ref B: SYD281080712029 Ref C: 2026-09-10T06:54:25Z' status: code: 200 message: OK @@ -831,23 +839,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:59.5903876+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:02:00.3537424+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:02:00.3538233+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:14.4254838+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:14.4255544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1701' + - '1758' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:06 GMT + - Thu, 10 Sep 2026 06:54:26 GMT expires: - '-1' pragma: @@ -861,7 +869,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FF370775C4304E4090692128CBB97009 Ref B: BY1AA1072315042 Ref C: 2026-03-26T18:02:06Z' + - 'Ref A: 70C31B88C3AF4F518ED6E86FB5B20774 Ref B: SYD281080711060 Ref C: 2026-09-10T06:54:26Z' status: code: 200 message: OK @@ -879,23 +887,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:59.5903876+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:02:00.3537424+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:02:00.3538233+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:14.4254838+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:14.4255544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1701' + - '1758' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:06 GMT + - Thu, 10 Sep 2026 06:54:27 GMT expires: - '-1' pragma: @@ -909,7 +917,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F740575F244E471CA87C5CC01551E189 Ref B: BY1AA1072320025 Ref C: 2026-03-26T18:02:07Z' + - 'Ref A: 619DB46F97044A05A9C2079AE25F9826 Ref B: SYD281080709025 Ref C: 2026-09-10T06:54:27Z' status: code: 200 message: OK @@ -927,25 +935,26 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:02:05.5027321+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:02:05.5027321+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:23.9014847+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:23.9014847+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io","authType":"SyncToken"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"garbageCollection":{"enabled":false,"schedule":"0 0 * * *"}}}' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '1128' + - '1151' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:07 GMT + - Thu, 10 Sep 2026 06:54:28 GMT expires: - '-1' pragma: @@ -957,11 +966,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/bc89c560-02ec-468e-981a-b173a3ae9afc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/23d61e96-951a-4e00-8a2f-a91811c7f7c2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BEE260CDA9804630BF2F8463D72BC5B8 Ref B: BY1AA1072316042 Ref C: 2026-03-26T18:02:07Z' + - 'Ref A: 9CA30AD17EB94DD692B6CE90E7428331 Ref B: SYD281080708060 Ref C: 2026-09-10T06:54:28Z' status: code: 200 message: OK @@ -981,21 +990,22 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedregistry?api-version=2026-09-01-preview response: body: string: '' headers: api-supported-versions: - - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview + - 2025-09-01-preview, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 26 Mar 2026 18:02:08 GMT + - Thu, 10 Sep 2026 06:54:29 GMT expires: - '-1' pragma: @@ -1007,13 +1017,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1b3b4287-869c-410d-9e06-470f610154ce + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/657eb27b-348c-45e9-8861-e6bdb58845d0 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: E4B970E89B534C4B806B0E65D163FE2F Ref B: BY1AA1072320060 Ref C: 2026-03-26T18:02:08Z' + - 'Ref A: 5E29C541C50D4A18AC7E29B26957BBC3 Ref B: SYD281080707040 Ref C: 2026-09-10T06:54:29Z' status: code: 200 message: OK @@ -1031,27 +1041,28 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:02:03.7727535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:02:03.7727535+00:00"},"properties":{"creationDate":"2026-03-26T18:02:04.011929+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedregistry","name":"connectedregistry","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:20.667455+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:20.667455+00:00"},"properties":{"creationDate":"2026-09-10T06:54:20.8780443+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedregistry","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '831' + - '830' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:08 GMT + - Thu, 10 Sep 2026 06:54:29 GMT expires: - '-1' pragma: @@ -1063,11 +1074,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7db4d2bc-b9b2-40fb-82d4-f3e818fe5059 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2074847c-64d9-4a52-962d-bc9d101e0ca2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 818488756E5C4CD7989BE8354EDD02B8 Ref B: BY1AA1072315062 Ref C: 2026-03-26T18:02:08Z' + - 'Ref A: E32BEE06E0F940F8B95042DC70D87B4E Ref B: SYD281080707034 Ref C: 2026-09-10T06:54:30Z' status: code: 200 message: OK @@ -1087,27 +1098,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-26T18:01:48.6878935+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-26T18:01:59.5903876+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-26T18:01:48.6878935Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-26T18:02:00.3537424+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-26T18:02:00.3538233+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:55.8873773+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:13.8686966+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:55.8873773Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:14.4254838+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:14.4255544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1700' + - '1757' content-type: - application/json; charset=utf-8 date: - - Thu, 26 Mar 2026 18:02:09 GMT + - Thu, 10 Sep 2026 06:54:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-e832a777-293d-11f1-b03a-70a8a5190411?api-version=2026-03-01-preview&t=639101449300911163&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mkYn1MRnz8rP7hKGQ0lGHk6Y6TF-uIJlL5xnqa6T0OCBN3JmUOA-J8Lzvd9aleNc5HU5j7AHzki8mfVApoS-RXLCZkUIeXdbWOQXWV-W3r31SFVW1VBmRfVydkbR5NO51LqwhV-OtAj6rGbvDXTKIeio2Z7A3N9rZ9uRkpT4Rg1q-McE33chnTC2V0SpQ6hsjt94xSjVrwSoHnjlR76Pqxr5TWadsEAm3HSnHbiGEpNMN17NenhVZC91h7ALRtoZwhtty_0SYvYo5rhhZeubbb-Dtc8D-xWR094KCpUTx134qv5CDaQzYRaM4Jh4z35Nz30pIy3ckGIhRjOzdN1c0g&h=4Kbo-JIn52xFFKgN3WKL38Gxgl4xnUtzHF-CtM8yfLg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-79af188f-ace4-11f1-83d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200715026647&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=jIpoW-Gj-5pfP8stRgkPQxKn1tecgJopkmsG6sFcslLWBhqAbvGguZUJVuOjNlZ2czEQtB4Eqa8tanNw2Ff60RUvVw1-BHU32UUU_-IIsknadqVxm2gC5ccNxVqJbPIMuBTXU8bgcFR5JVm5AKdBbNDivbua8I-2FES-nr5nj_2r1GXN8tDw0u3BmF80XJRC3b3dcQSjwX9HyzvcFEyOmg5InhT4m94tr0CZ3fVew62_LV_M6GUThANWO9RWh1fz5AEPlEU76t-HcmUuiuKls-RU6qSLtY1wVznUvd0XHFd_vfHj-glcrVp3WJI82dFkjsTwqy1DZh8tCM7qgCHUyA&h=rnPtDvsgYNSeKgXPq9nUSdBkSiJuMcVbo3R29pGsAaI pragma: - no-cache strict-transport-security: @@ -1117,13 +1128,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/dea9176d-8477-4041-b64f-e734de62047e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6147bd1c-5220-4df0-a0f0-aea5bdb912ce x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 94B44115F45F4EAAA1EC3AE612FA8191 Ref B: BY1AA1072319034 Ref C: 2026-03-26T18:02:09Z' + - 'Ref A: 7FBF41A506F444C19142E04AAD4EA25B Ref B: SYD281080707025 Ref C: 2026-09-10T06:54:31Z' status: code: 202 message: Accepted @@ -1141,9 +1152,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-e832a777-293d-11f1-b03a-70a8a5190411?api-version=2026-03-01-preview&t=639101449300911163&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=mkYn1MRnz8rP7hKGQ0lGHk6Y6TF-uIJlL5xnqa6T0OCBN3JmUOA-J8Lzvd9aleNc5HU5j7AHzki8mfVApoS-RXLCZkUIeXdbWOQXWV-W3r31SFVW1VBmRfVydkbR5NO51LqwhV-OtAj6rGbvDXTKIeio2Z7A3N9rZ9uRkpT4Rg1q-McE33chnTC2V0SpQ6hsjt94xSjVrwSoHnjlR76Pqxr5TWadsEAm3HSnHbiGEpNMN17NenhVZC91h7ALRtoZwhtty_0SYvYo5rhhZeubbb-Dtc8D-xWR094KCpUTx134qv5CDaQzYRaM4Jh4z35Nz30pIy3ckGIhRjOzdN1c0g&h=4Kbo-JIn52xFFKgN3WKL38Gxgl4xnUtzHF-CtM8yfLg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-79af188f-ace4-11f1-83d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200715026647&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=jIpoW-Gj-5pfP8stRgkPQxKn1tecgJopkmsG6sFcslLWBhqAbvGguZUJVuOjNlZ2czEQtB4Eqa8tanNw2Ff60RUvVw1-BHU32UUU_-IIsknadqVxm2gC5ccNxVqJbPIMuBTXU8bgcFR5JVm5AKdBbNDivbua8I-2FES-nr5nj_2r1GXN8tDw0u3BmF80XJRC3b3dcQSjwX9HyzvcFEyOmg5InhT4m94tr0CZ3fVew62_LV_M6GUThANWO9RWh1fz5AEPlEU76t-HcmUuiuKls-RU6qSLtY1wVznUvd0XHFd_vfHj-glcrVp3WJI82dFkjsTwqy1DZh8tCM7qgCHUyA&h=rnPtDvsgYNSeKgXPq9nUSdBkSiJuMcVbo3R29pGsAaI response: body: string: '' @@ -1153,11 +1164,11 @@ interactions: content-length: - '0' date: - - Thu, 26 Mar 2026 18:02:10 GMT + - Thu, 10 Sep 2026 06:54:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-e832a777-293d-11f1-b03a-70a8a5190411?api-version=2026-03-01-preview&t=639101449306400900&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jWTz9OslRTmtEPcS6bcI2GAC5q9vYOecv78y81JQ6PxenMmcWY8JXhkUDOL7hWqBFOVAO_Nj_ZrdWgy-DrvKl1z4TFemNooe9PiZGEoOse-J4N8XNtctnLNhbKfn69RPXPhEOTthZDv6Jf7fyflsKMatF7vhggLqh8He7p2fof-ZRJy7dsJF6FcFE1zwLqrqJtvVN7LqECL8r05tX9cihqvtZf0iDLfX7l_eBRcoUdsKz6spyIAaqZ6tU0U9ZmmpaBf1MjJMApKHHS9rXwDFu5fEUgdtNqcd-de5YhHgc3ybtzl5Ijx9wAinjmPDEdwxD9EtG5dIFz2_GlDt5IHO0A&h=g6TsmwAM4UmW3fn3JSi5JUZD7dCA35veT6lAjkRw6DI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-79af188f-ace4-11f1-83d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200731542030&c=MIIHlTCCBn2gAwIBAgIRAP3gA1NTVfsyY1OAzEH6ZxgwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTcwMzUwMzRaFw0yNzAyMTIwOTUwMzRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz4QdyZCaJJyeTiLaFPtWJfrFjQBvFiPuzXEv1RYUnOVbG6CgM9-zAjE6VqzzH_ry3ylc1gfGz6trnOm36FC95XZN2cCXp9y49dBX5ARtbkqOb5BHj5WIXttGYC8azrRlvpPY-UgoTrxrODNYnd9zPdmWFTt8eiVOabmtu8YkeC5xQbAfStgY-cSF67cM163I2m0lUmMRhXAoURoP8LYqW8LPszEPUm35qa6W0XcEfar_boQxw4ZdhrhAO_JSNzOmKlvArod48lGW9Qo67YUrtSxaxhZLN-ToHXgM2BXkkOkxuLlfF-zewr3Hc0ZK_XonevTH-HqtYfak-VOdgLwwwQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUMwWFFADYJuZjpCje-R5vqszDG70wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkzL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85My9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkzL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTMvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAfdst7PXa3ogyQLF7Jy4O_dGeSpqDceWxzIbo4NIpZfZMInuRZt6N1cZ17JzQwO9wpT3dbvQrW_9Chfhc9K26kB7skQlG9nV6CIaJ5LroI00qr85tOPRcMbzSa_LwIM_1WhqUAbC1vt42bKM4cgC_QniX7bfhwBKQ7zUjh4Fstu-6lYJzztVawXpnNMYNceUEljzwL2p7jhz2ReKQafSIStD7cREW2DUKEw0nW492Ro2Eb8rMaVqMGpcq__nFurDqDstzrSOzcc76ZsENCHFmj_X5HdtdrvHDESbNm8n4LAaZi15lQlMTGFLJdEx8Ck-obWaoY0XEIqJDE2uMyZfZ7Q&s=DPBsriU0V0itv13j1SL1a3thSvXnkWxNPST_6SHR_xfGm8XYDwc8BdWA93MJLjAASUBZhix9OUdFNNyIr1lHuYPPS7NUlAkm4FHZ-smkT1FepqLbexVtS1cOYh4CLttfZj1Ose1IVJoo82qWkWFdJtZzKOPvU7ybk5_VMtWKBPwajPONRAe_DaXEtLd5gwSPdXuHHUD4oCwcf0QcJBLHonmpJoltuEaYQHCDbca2P_xk3ISFdOnUs_hABtwMDl6UqhiT2yoeMV7r2pG-bvKechnVrO2e5h3uNWMw6Q2ulApezwXF5s5Hr80J4_zngllbSDcYF-UI9t_fe5WfG0UD5A&h=9fDBCQY3Ych-guXpF1fphdZ93JiX_zB2h6KXsnFFhFs pragma: - no-cache strict-transport-security: @@ -1167,11 +1178,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cfb8be9f-8474-47cf-98a4-870d75600c59 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/764456b6-d75d-4aef-8c48-80dd162dba8e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AC42309BC49B48CFB88FDCD44C60B3AF Ref B: BY1AA1072316023 Ref C: 2026-03-26T18:02:10Z' + - 'Ref A: E956E326FAFF4E2E81753E1A9E674290 Ref B: SYD281080706034 Ref C: 2026-09-10T06:54:32Z' status: code: 202 message: Accepted @@ -1189,9 +1200,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.17.0-1010-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/registries-e832a777-293d-11f1-b03a-70a8a5190411?api-version=2026-03-01-preview&t=639101449306400900&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jWTz9OslRTmtEPcS6bcI2GAC5q9vYOecv78y81JQ6PxenMmcWY8JXhkUDOL7hWqBFOVAO_Nj_ZrdWgy-DrvKl1z4TFemNooe9PiZGEoOse-J4N8XNtctnLNhbKfn69RPXPhEOTthZDv6Jf7fyflsKMatF7vhggLqh8He7p2fof-ZRJy7dsJF6FcFE1zwLqrqJtvVN7LqECL8r05tX9cihqvtZf0iDLfX7l_eBRcoUdsKz6spyIAaqZ6tU0U9ZmmpaBf1MjJMApKHHS9rXwDFu5fEUgdtNqcd-de5YhHgc3ybtzl5Ijx9wAinjmPDEdwxD9EtG5dIFz2_GlDt5IHO0A&h=g6TsmwAM4UmW3fn3JSi5JUZD7dCA35veT6lAjkRw6DI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus/operationResults/delete-clireg000002-79af188f-ace4-11f1-83d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200731542030&c=MIIHlTCCBn2gAwIBAgIRAP3gA1NTVfsyY1OAzEH6ZxgwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTcwMzUwMzRaFw0yNzAyMTIwOTUwMzRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz4QdyZCaJJyeTiLaFPtWJfrFjQBvFiPuzXEv1RYUnOVbG6CgM9-zAjE6VqzzH_ry3ylc1gfGz6trnOm36FC95XZN2cCXp9y49dBX5ARtbkqOb5BHj5WIXttGYC8azrRlvpPY-UgoTrxrODNYnd9zPdmWFTt8eiVOabmtu8YkeC5xQbAfStgY-cSF67cM163I2m0lUmMRhXAoURoP8LYqW8LPszEPUm35qa6W0XcEfar_boQxw4ZdhrhAO_JSNzOmKlvArod48lGW9Qo67YUrtSxaxhZLN-ToHXgM2BXkkOkxuLlfF-zewr3Hc0ZK_XonevTH-HqtYfak-VOdgLwwwQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUMwWFFADYJuZjpCje-R5vqszDG70wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkzL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85My9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkzL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTMvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAfdst7PXa3ogyQLF7Jy4O_dGeSpqDceWxzIbo4NIpZfZMInuRZt6N1cZ17JzQwO9wpT3dbvQrW_9Chfhc9K26kB7skQlG9nV6CIaJ5LroI00qr85tOPRcMbzSa_LwIM_1WhqUAbC1vt42bKM4cgC_QniX7bfhwBKQ7zUjh4Fstu-6lYJzztVawXpnNMYNceUEljzwL2p7jhz2ReKQafSIStD7cREW2DUKEw0nW492Ro2Eb8rMaVqMGpcq__nFurDqDstzrSOzcc76ZsENCHFmj_X5HdtdrvHDESbNm8n4LAaZi15lQlMTGFLJdEx8Ck-obWaoY0XEIqJDE2uMyZfZ7Q&s=DPBsriU0V0itv13j1SL1a3thSvXnkWxNPST_6SHR_xfGm8XYDwc8BdWA93MJLjAASUBZhix9OUdFNNyIr1lHuYPPS7NUlAkm4FHZ-smkT1FepqLbexVtS1cOYh4CLttfZj1Ose1IVJoo82qWkWFdJtZzKOPvU7ybk5_VMtWKBPwajPONRAe_DaXEtLd5gwSPdXuHHUD4oCwcf0QcJBLHonmpJoltuEaYQHCDbca2P_xk3ISFdOnUs_hABtwMDl6UqhiT2yoeMV7r2pG-bvKechnVrO2e5h3uNWMw6Q2ulApezwXF5s5Hr80J4_zngllbSDcYF-UI9t_fe5WfG0UD5A&h=9fDBCQY3Ych-guXpF1fphdZ93JiX_zB2h6KXsnFFhFs response: body: string: '' @@ -1201,7 +1212,7 @@ interactions: content-length: - '0' date: - - Thu, 26 Mar 2026 18:02:20 GMT + - Thu, 10 Sep 2026 06:54:43 GMT expires: - '-1' pragma: @@ -1213,11 +1224,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/8c84f32c-cd83-428e-b4b6-6e6176e11321 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4e02e718-22ed-4225-8a24-abc43ab2b1a6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BD82C2B4555348E58684C0E81C500CCC Ref B: BY1AA1072316029 Ref C: 2026-03-26T18:02:20Z' + - 'Ref A: 808A21D7154047508ECB903621E32CB2 Ref B: SYD281080708052 Ref C: 2026-09-10T06:54:43Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml index d14bcc76b4e..626082c05f1 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -g -n --sku --location --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1633' + - '1663' content-type: - application/json; charset=utf-8 date: - - Wed, 25 Mar 2026 03:45:15 GMT + - Thu, 10 Sep 2026 06:42:41 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/49944ae7-9bb8-4340-99d5-4524be6bb887 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bf6e8d0-c4e4-4b5a-8bd3-eee843657790 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: E461EAC396F947C2822E6FFB67421C95 Ref B: BY1AA1072315029 Ref C: 2026-03-25T03:45:07Z' + - 'Ref A: 99314DE97E844DC694DBF5A8AD402823 Ref B: SYD281080705040 Ref C: 2026-09-10T06:42:32Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1633' + - '1663' content-type: - application/json; charset=utf-8 date: - - Wed, 25 Mar 2026 03:45:17 GMT + - Thu, 10 Sep 2026 06:42:42 GMT expires: - '-1' pragma: @@ -100,271 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C0B54184C0FE41E7A2C76B50D241DC18 Ref B: BY1AA1072319036 Ref C: 2026-03-25T03:45:16Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr check-health - Connection: - - keep-alive - ParameterSetName: - - -n --repository -y - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '552' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 25 Mar 2026 03:45:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 3AF4F80B7E6F40D997D24B75E6D48939 Ref B: BY1AA1072317034 Ref C: 2026-03-25T03:45:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr check-health - Connection: - - keep-alive - ParameterSetName: - - -n --repository -y - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2026-01-01-preview - cache-control: - - no-cache - content-length: - - '1633' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 25 Mar 2026 03:45:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 0A19AB2AAAB346C48B1F8CF5A8D8181F Ref B: SJC211051203033 Ref C: 2026-03-25T03:45:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.4 - method: GET - uri: https://clitestabac000002.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 25 Mar 2026 03:45:19 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://clitestabaci2ozj.azurecr.io/oauth2/token",service="clitestabaci2ozj.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.4 - method: GET - uri: https://clitestabac000002.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 25 Mar 2026 03:45:20 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://clitestabaci2ozj.azurecr.io/oauth2/token",service="clitestabaci2ozj.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: grant_type=access_token&service=clitestabaci2ozj.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=*** - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2680' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.32.4 - method: POST - uri: https://clitestabac000002.azurecr.io/oauth2/exchange - response: - body: - string: '{"refresh_token":"abc123"}' - headers: - connection: - - keep-alive - content-type: - - application/json; charset=utf-8 - date: - - Wed, 25 Mar 2026 03:45:21 GMT - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-ms-ratelimit-remaining-calls-per-second: - - '166.65' - status: - code: 200 - message: OK -- request: - body: grant_type=refresh_token&service=clitestabaci2ozj.azurecr.io&scope=repository%3Ahello-world%3Apull%2Cpush%2Cmetadata_write%2Cmetadata_read%2Cdelete&refresh_token=*** - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1599' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.32.4 - method: POST - uri: https://clitestabac000002.azurecr.io/oauth2/token - response: - body: - string: '{"access_token":"***"}' - headers: - connection: - - keep-alive - content-type: - - application/json; charset=utf-8 - date: - - Wed, 25 Mar 2026 03:45:22 GMT - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - 'Ref A: 4317657C2D7440E080357F06030D2673 Ref B: SYD281080707042 Ref C: 2026-09-10T06:42:42Z' status: code: 200 message: OK @@ -382,23 +118,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1633' + - '1663' content-type: - application/json; charset=utf-8 date: - - Wed, 25 Mar 2026 03:45:23 GMT + - Thu, 10 Sep 2026 06:42:44 GMT expires: - '-1' pragma: @@ -412,7 +148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 919DA1CE4A3A4CCAB9094D868B1C2FBE Ref B: BY1AA1072315054 Ref C: 2026-03-25T03:45:22Z' + - 'Ref A: 93402403C119442C953FAC0E4F1A9AC7 Ref B: SYD281080707034 Ref C: 2026-09-10T06:42:44Z' status: code: 200 message: OK @@ -434,23 +170,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:24.3180328+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1633' + - '1664' content-type: - application/json; charset=utf-8 date: - - Wed, 25 Mar 2026 03:45:23 GMT + - Thu, 10 Sep 2026 06:42:46 GMT expires: - '-1' pragma: @@ -462,13 +198,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b8da086b-50ca-4d94-9442-ad3074465e24 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/86bcd0d2-dab5-479e-94d0-da1d05ebf496 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8017ED66FD564DA4AC312B945C0D654B Ref B: SJC211051201047 Ref C: 2026-03-25T03:45:23Z' + - 'Ref A: DC28DC71EE674D7C97D0CE3E86B41483 Ref B: SYD281080712025 Ref C: 2026-09-10T06:42:45Z' status: code: 200 message: OK @@ -486,23 +222,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:24.3180328+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1633' + - '1664' content-type: - application/json; charset=utf-8 date: - - Wed, 25 Mar 2026 03:45:25 GMT + - Thu, 10 Sep 2026 06:42:48 GMT expires: - '-1' pragma: @@ -516,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EEFA0FE539964F9C9315634D0AECF916 Ref B: SJC211051201035 Ref C: 2026-03-25T03:45:24Z' + - 'Ref A: 4E0AC5FC79C24ED09BCFF1CF34AD5D51 Ref B: SYD281080710031 Ref C: 2026-09-10T06:42:48Z' status: code: 200 message: OK @@ -538,23 +274,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:26.2054093+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1633' + - '1664' content-type: - application/json; charset=utf-8 date: - - Wed, 25 Mar 2026 03:45:25 GMT + - Thu, 10 Sep 2026 06:42:49 GMT expires: - '-1' pragma: @@ -566,13 +302,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/bb1569b2-5165-4d60-9a35-0b85aaf6f035 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/20cb4955-1656-4347-9d96-0de05f6046a5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 229729D2781C43699434BE4970AA3BFF Ref B: SJC211051204037 Ref C: 2026-03-25T03:45:25Z' + - 'Ref A: CD363FFE7CD446DF888402C25A00EFBC Ref B: SYD281080709062 Ref C: 2026-09-10T06:42:49Z' status: code: 200 message: OK @@ -592,27 +328,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:26.2054093+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1663' content-type: - application/json; charset=utf-8 date: - - Wed, 25 Mar 2026 03:45:27 GMT + - Thu, 10 Sep 2026 06:42:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-03-01-preview&t=639100071276370275&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MRjKjFAo1UbLYuYxJl2dSJ_7T3uQdwVlpomXvqi9SsiOE8RB4ayO8gS-YE2Ga_vL6C_XVwAuX4RjHkha1WxOX0bvaJUBBwh5mN6NANK2NJWUcN_Zl_BxITsAoFUm_8WfL9y8GTirF05U8No7p4QDGHENlSwUHs5A_pcoJlFZYFbGVaGLMPXLWpinV6ipQqoBcGYyqcrluBfAHXyBB4-39cuwBlDsRYw53sMiuxU_Tw7flR4sjt688ueY2FxwU0y_6ndzWQapsK8EGT5ny-gOjzykk0FdXUUzp9b0OvpXwrX9ATMKdGMSzYcZbi1u4Gud3svNNRcJKvf0-y2F8xLSSQ&h=77A41BxnvH-J8jQ7ynbTC0oNqpxKiG4MQzADiCf5SNk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew pragma: - no-cache strict-transport-security: @@ -622,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ebecd660-1342-4d8f-9f0b-7b13ef98fbdc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/58a4dbf1-63cd-4e4f-8844-2e14b95300a9 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 3A6578A047684DB8A770BFD44238B04A Ref B: SJC211051204051 Ref C: 2026-03-25T03:45:26Z' + - 'Ref A: 646AE4D19B144B639A34E8CDE1C3A6BD Ref B: SYD281080710042 Ref C: 2026-09-10T06:42:51Z' status: code: 202 message: Accepted @@ -646,9 +382,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-03-01-preview&t=639100071276370275&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MRjKjFAo1UbLYuYxJl2dSJ_7T3uQdwVlpomXvqi9SsiOE8RB4ayO8gS-YE2Ga_vL6C_XVwAuX4RjHkha1WxOX0bvaJUBBwh5mN6NANK2NJWUcN_Zl_BxITsAoFUm_8WfL9y8GTirF05U8No7p4QDGHENlSwUHs5A_pcoJlFZYFbGVaGLMPXLWpinV6ipQqoBcGYyqcrluBfAHXyBB4-39cuwBlDsRYw53sMiuxU_Tw7flR4sjt688ueY2FxwU0y_6ndzWQapsK8EGT5ny-gOjzykk0FdXUUzp9b0OvpXwrX9ATMKdGMSzYcZbi1u4Gud3svNNRcJKvf0-y2F8xLSSQ&h=77A41BxnvH-J8jQ7ynbTC0oNqpxKiG4MQzADiCf5SNk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew response: body: string: '' @@ -658,11 +394,11 @@ interactions: content-length: - '0' date: - - Wed, 25 Mar 2026 03:45:27 GMT + - Thu, 10 Sep 2026 06:42:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-03-01-preview&t=639100071285596562&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=f01jT8gXRoO9L-MHy_vLwyFfilcteExMnngKB9NiM_KcnnxKqJa_U7p0noUjw40vphBwoQpFbnfS6wjuZ-v6Xau52Bzqz7-RIHWM5-Sz331QPEqSvDKVvofbBh4dKVdhiGYmxi7lKm_CBj8qsGVmVd4gtvlBvwPL5NTbkdhHZ17dML2i4oFQMSgUQLoTxlxAt8e8MT5V_py7HM71GNpFR7u08fagQZnt1hi9KAQAriXyOwZAJ2DTJpRyAw7r_ys-kq7jZ1nULeIvJaj7o3pCBmCxU6gdG92PsttyqN113MS5XyYDuxeJoO76QkiwI-xsWhwxu-itz_p8r5V3LpXe9g&h=xeFvfHO4izlVczy843Db-186uIHR_uVM2yHJCW9ONRU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk pragma: - no-cache strict-transport-security: @@ -672,11 +408,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/7faf39c4-c6ec-43c6-bf3a-4835fdd8a08f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/81089ec9-6e21-49a1-bb23-e3e375bbe350 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BC73F4ECD7714E84988BB98335777B49 Ref B: BY1AA1072319052 Ref C: 2026-03-25T03:45:27Z' + - 'Ref A: 38220075980544C9A21CF26D4999C6AD Ref B: SYD281080705052 Ref C: 2026-09-10T06:42:52Z' status: code: 202 message: Accepted @@ -694,9 +430,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-03-01-preview&t=639100071285596562&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=f01jT8gXRoO9L-MHy_vLwyFfilcteExMnngKB9NiM_KcnnxKqJa_U7p0noUjw40vphBwoQpFbnfS6wjuZ-v6Xau52Bzqz7-RIHWM5-Sz331QPEqSvDKVvofbBh4dKVdhiGYmxi7lKm_CBj8qsGVmVd4gtvlBvwPL5NTbkdhHZ17dML2i4oFQMSgUQLoTxlxAt8e8MT5V_py7HM71GNpFR7u08fagQZnt1hi9KAQAriXyOwZAJ2DTJpRyAw7r_ys-kq7jZ1nULeIvJaj7o3pCBmCxU6gdG92PsttyqN113MS5XyYDuxeJoO76QkiwI-xsWhwxu-itz_p8r5V3LpXe9g&h=xeFvfHO4izlVczy843Db-186uIHR_uVM2yHJCW9ONRU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk response: body: string: '' @@ -706,7 +442,7 @@ interactions: content-length: - '0' date: - - Wed, 25 Mar 2026 03:45:39 GMT + - Thu, 10 Sep 2026 06:43:04 GMT expires: - '-1' pragma: @@ -718,11 +454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a4d1fa29-501c-4e7d-a370-3dd56fc393c6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/af1d2677-f13f-440b-93e5-5c5f25946215 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC0AF48196AE47969F36CB10AFA226F8 Ref B: SJC211051205037 Ref C: 2026-03-25T03:45:38Z' + - 'Ref A: 25BF3405F9E6488E8616BC304A4420A8 Ref B: SYD281080706023 Ref C: 2026-09-10T06:43:04Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal.yaml index 14507084122..c90f64ad57a 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -g -n --sku --location User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:09.1993098+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:13.3896262+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1634' + - '1666' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:16 GMT + - Thu, 10 Sep 2026 06:43:26 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/94190169-d0f0-4ee7-ba72-6b5dd5d9a244 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9b0d44bc-734c-40d7-ae73-bc653c00417e x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 8BE6AAE3D4044C31AC921D6CB2357DA6 Ref B: SJC211051204023 Ref C: 2026-03-24T00:57:08Z' + - 'Ref A: 96D53649A32546C5B09EFF139137BB10 Ref B: SYD281080706042 Ref C: 2026-09-10T06:43:11Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:09.1993098+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:13.3896262+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1634' + - '1666' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:17 GMT + - Thu, 10 Sep 2026 06:43:27 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 469D8C80365A44578D3F616B8FA41856 Ref B: SJC211051205051 Ref C: 2026-03-24T00:57:17Z' + - 'Ref A: 2DBB8259FC5E40CB90D34FCD42FD4C33 Ref B: SYD281080707052 Ref C: 2026-09-10T06:43:27Z' status: code: 200 message: OK @@ -118,23 +118,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:09.1993098+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:13.3896262+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1634' + - '1666' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:18 GMT + - Thu, 10 Sep 2026 06:43:29 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1564081BC289475F8B22D3293B54A0F4 Ref B: SJC211051201019 Ref C: 2026-03-24T00:57:18Z' + - 'Ref A: 73ADD1B5BC294913BB15B278A0672D1B Ref B: SYD281080711062 Ref C: 2026-09-10T06:43:28Z' status: code: 200 message: OK @@ -170,23 +170,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:19.6144464+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:31.9463338+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1634' + - '1666' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:19 GMT + - Thu, 10 Sep 2026 06:43:31 GMT expires: - '-1' pragma: @@ -198,13 +198,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/13de6866-a6d1-4b13-b4c6-05feffd70023 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/874e91ca-cc03-4f49-85ce-b1778e6c8ab0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3FCD40BF0AB249E5B4FE8FC1E96EB92D Ref B: BY1AA1072317062 Ref C: 2026-03-24T00:57:18Z' + - 'Ref A: B8112F3B6C0C4C929409BE02B718C5EE Ref B: SYD281080710034 Ref C: 2026-09-10T06:43:30Z' status: code: 200 message: OK @@ -222,23 +222,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:19.6144464+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:31.9463338+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1634' + - '1666' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:20 GMT + - Thu, 10 Sep 2026 06:43:32 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1D03F24B11C24D52B7F6B3B3388EEA5D Ref B: SJC211051201009 Ref C: 2026-03-24T00:57:20Z' + - 'Ref A: CCE30D071675445AAB9A1CB59063FBA1 Ref B: SYD281080708054 Ref C: 2026-09-10T06:43:32Z' status: code: 200 message: OK @@ -270,23 +270,23 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:19.6144464+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:31.9463338+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1634' + - '1666' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:21 GMT + - Thu, 10 Sep 2026 06:43:34 GMT expires: - '-1' pragma: @@ -300,7 +300,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9C92E5384B7441F7A260FD0453D4EE57 Ref B: BY1AA1072319054 Ref C: 2026-03-24T00:57:20Z' + - 'Ref A: 28012F1854AF445BAEFE5CE290AA4674 Ref B: SYD281080706042 Ref C: 2026-09-10T06:43:34Z' status: code: 200 message: OK @@ -322,23 +322,23 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:22.9454056+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1694' + - '1751' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:23 GMT + - Thu, 10 Sep 2026 06:43:37 GMT expires: - '-1' pragma: @@ -350,13 +350,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ec0ec0f8-6b2a-40c3-bb88-d2d9db04fb40 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3f0e390b-b0fd-4dfb-90af-f507a6c5a018 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E8313B29685A41ADAD10156FEF5EE6B5 Ref B: BY1AA1072316054 Ref C: 2026-03-24T00:57:21Z' + - 'Ref A: 3CB5725817D34C03BA8959C3B738D459 Ref B: SYD281080708036 Ref C: 2026-09-10T06:43:35Z' status: code: 200 message: OK @@ -374,23 +374,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:22.9454056+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1694' + - '1751' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:24 GMT + - Thu, 10 Sep 2026 06:43:38 GMT expires: - '-1' pragma: @@ -404,7 +404,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 91DEE7A0159C4A3792D52B5964BA3622 Ref B: BY1AA1072320023 Ref C: 2026-03-24T00:57:24Z' + - 'Ref A: EE17D63643034FADA457B7C9ED3451B9 Ref B: SYD281080707042 Ref C: 2026-09-10T06:43:38Z' status: code: 200 message: OK @@ -424,27 +424,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T00:57:09.1993098+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T00:57:22.9454056+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-03-24T00:57:09.1993098Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T00:57:16.7684884+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T00:57:16.7685316+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:43:13.3896262Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:25.9142707+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:25.9143271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1693' + - '1750' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 00:57:25 GMT + - Thu, 10 Sep 2026 06:43:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-6bebedf3-271c-11f1-a4be-70a8a51b6037?api-version=2026-03-01-preview&t=639099106460032919&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Sk3wbr-Gxvblgnp4i9LdTmJGud7s_91WwAuezn9grypO9UNRxc5pcO5iHLbKoUttT8NZxuMdCIjnB8qnXEnEREaN3wYrcqtXRdnqKuqdw9H34A4h69rtmUBGVRpEJRvVFEFZrK20-VSNJ52dnDu2jrgASGX1i3HtimUzZ49GXE3myJuw4u1VEmrnOWMMY0pg2yfdi6DGe2dcboGI1MgtFZrWG7Vvxo6L8o7XS_xiFCGh_fQfcrdSWLQRu7M0BM9EkyWCiYNLn6WyMWwiLUji14AbxV8trAoC1l5jEgLh0zGrlrmZClFe12Ygn-sIq8yYBbg_dJEHf8XS2OIOCja3Dg&h=uq6z4EuArCX8E2SeR9jtzy9Ohpyebe1jUPMvVmpfX94 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestrbac000002-f56fe08a-ace2-11f1-b01b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194203586751&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cqIFaFxx2cN0A4cjjg16VWTkyM0_8kc-_-bPw0cpJK9f22VjE4idoMirvwC0kQrlVd9o0xWkmK8rDpAXXIUjXV3MAeycq5URmTKfvbqITW63kEzcIYy-oDMd6yXYKW63WMaiTmUM-eX8GdzA4qa7BYxKB9X1WiIY0BahpRU6Bx8gN61y3BdE1yta30Y22NIvU9THj_m0OT_7BuqIyQZgvGB-pCAYm9l40enATkMs3Hysh9s0KrjAG-1m9UyeOT9X_p_tNyScYz5eUqP5WG9hKzFl1AkmyLUZATHo-WKee7hvz1Xbd1XRGjv9Jrg9yn74MkI0Dee4qtnXKAv2ZFdRWQ&h=1aoXYEHi0rEEIz-VwsXU_wkZXR4RdG58Io4_jAgQjmA pragma: - no-cache strict-transport-security: @@ -454,13 +454,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5aef3de0-d6bf-40b7-86b3-8b399f66dd39 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/24a122e3-d34f-4050-91b6-5e920bd1d05e x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 8F4510234ED349CCB2DFEFA2E36F49A9 Ref B: BY1AA1072317062 Ref C: 2026-03-24T00:57:24Z' + - 'Ref A: 2136963D70804C0693D279092676EA95 Ref B: SYD281080705060 Ref C: 2026-09-10T06:43:39Z' status: code: 202 message: Accepted @@ -478,9 +478,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-6bebedf3-271c-11f1-a4be-70a8a51b6037?api-version=2026-03-01-preview&t=639099106460032919&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Sk3wbr-Gxvblgnp4i9LdTmJGud7s_91WwAuezn9grypO9UNRxc5pcO5iHLbKoUttT8NZxuMdCIjnB8qnXEnEREaN3wYrcqtXRdnqKuqdw9H34A4h69rtmUBGVRpEJRvVFEFZrK20-VSNJ52dnDu2jrgASGX1i3HtimUzZ49GXE3myJuw4u1VEmrnOWMMY0pg2yfdi6DGe2dcboGI1MgtFZrWG7Vvxo6L8o7XS_xiFCGh_fQfcrdSWLQRu7M0BM9EkyWCiYNLn6WyMWwiLUji14AbxV8trAoC1l5jEgLh0zGrlrmZClFe12Ygn-sIq8yYBbg_dJEHf8XS2OIOCja3Dg&h=uq6z4EuArCX8E2SeR9jtzy9Ohpyebe1jUPMvVmpfX94 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestrbac000002-f56fe08a-ace2-11f1-b01b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194203586751&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cqIFaFxx2cN0A4cjjg16VWTkyM0_8kc-_-bPw0cpJK9f22VjE4idoMirvwC0kQrlVd9o0xWkmK8rDpAXXIUjXV3MAeycq5URmTKfvbqITW63kEzcIYy-oDMd6yXYKW63WMaiTmUM-eX8GdzA4qa7BYxKB9X1WiIY0BahpRU6Bx8gN61y3BdE1yta30Y22NIvU9THj_m0OT_7BuqIyQZgvGB-pCAYm9l40enATkMs3Hysh9s0KrjAG-1m9UyeOT9X_p_tNyScYz5eUqP5WG9hKzFl1AkmyLUZATHo-WKee7hvz1Xbd1XRGjv9Jrg9yn74MkI0Dee4qtnXKAv2ZFdRWQ&h=1aoXYEHi0rEEIz-VwsXU_wkZXR4RdG58Io4_jAgQjmA response: body: string: '' @@ -490,11 +490,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 00:57:26 GMT + - Thu, 10 Sep 2026 06:43:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-6bebedf3-271c-11f1-a4be-70a8a51b6037?api-version=2026-03-01-preview&t=639099106468422496&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=nT3eyccYKXzmEtESV0TfGPSzE_JD4fruxcf3caXDm2K3IBMaCBlEBUlNICY_KoEuHGjmDHPf8C_nLMkojg4PjEpUnruOPv5DWt8uhhfSd-fYjdIaECho6S0kXqJgYSO5e7pljgsSKb7bAbkz-W1VH_fO-WSmDSQZHD_8O08e-pXWg9Byc13V1LBh8qc-i-vJ5EX7V97aHd1J3-GFl6Rq5LnaLLZAL_oLA4cuenSm7wz3S5tP2altQtoxIQFz0K9IEoy0KW2gFUQ6SV5CUjQMTZPiJl7NeQlEfrYIYcp8SyjsvHBnB5YWx9_pEYGO2IxJ1RAalfxCQ_YZNczvWzdjvw&h=6ppipiJltTWv26vs6V0vtjQusLV1tmScfppL5G1rtlk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestrbac000002-f56fe08a-ace2-11f1-b01b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194217452442&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=mLsDzYLly5nNrvioc7pBXl4CEpUdMmbUTYPSzuVUENwMSCpy2_D3o0Q9-0Elb7BY6Ci5Z5eadjkdCLXxH5kJm6s-_cCYNN4GYhjCo8KxT1n8G4mS9Llfv35ExsmNK4XhpnmjlTHB1NNWltUDFQppjT4RCD6bSXdQbk6kOUUtw4O5XJwLIclk0bfeh0shewbdwRFirolVoxc4QkjbpHSrP62gMXj6yKezw3LsRoYsGcj0evlD_bRx7nwdSERA2QsWBA-qDeXygKjlJbyDYDQgaA7crV3Pge8S7PsrbHLlNk6y9KonymI2rNje5KMFDIjpoumLtEWtDqtvo1M0DlP_Lw&h=T7_1qWTwX0fdn96BSQxl9uy8V_e-dlXnJUq_iK47SAY pragma: - no-cache strict-transport-security: @@ -504,11 +504,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f06b04da-7c3e-4044-a0d1-8f92325b2611 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/5682fb12-01b2-484a-b93b-493678baf81d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0AA9C78294FD44B1878317D570D64C44 Ref B: SJC211051204051 Ref C: 2026-03-24T00:57:26Z' + - 'Ref A: 67FAF941719D43FA9C00E54E8183DC06 Ref B: SYD281080709034 Ref C: 2026-09-10T06:43:41Z' status: code: 202 message: Accepted @@ -526,9 +526,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-6bebedf3-271c-11f1-a4be-70a8a51b6037?api-version=2026-03-01-preview&t=639099106468422496&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=nT3eyccYKXzmEtESV0TfGPSzE_JD4fruxcf3caXDm2K3IBMaCBlEBUlNICY_KoEuHGjmDHPf8C_nLMkojg4PjEpUnruOPv5DWt8uhhfSd-fYjdIaECho6S0kXqJgYSO5e7pljgsSKb7bAbkz-W1VH_fO-WSmDSQZHD_8O08e-pXWg9Byc13V1LBh8qc-i-vJ5EX7V97aHd1J3-GFl6Rq5LnaLLZAL_oLA4cuenSm7wz3S5tP2altQtoxIQFz0K9IEoy0KW2gFUQ6SV5CUjQMTZPiJl7NeQlEfrYIYcp8SyjsvHBnB5YWx9_pEYGO2IxJ1RAalfxCQ_YZNczvWzdjvw&h=6ppipiJltTWv26vs6V0vtjQusLV1tmScfppL5G1rtlk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestrbac000002-f56fe08a-ace2-11f1-b01b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194217452442&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=mLsDzYLly5nNrvioc7pBXl4CEpUdMmbUTYPSzuVUENwMSCpy2_D3o0Q9-0Elb7BY6Ci5Z5eadjkdCLXxH5kJm6s-_cCYNN4GYhjCo8KxT1n8G4mS9Llfv35ExsmNK4XhpnmjlTHB1NNWltUDFQppjT4RCD6bSXdQbk6kOUUtw4O5XJwLIclk0bfeh0shewbdwRFirolVoxc4QkjbpHSrP62gMXj6yKezw3LsRoYsGcj0evlD_bRx7nwdSERA2QsWBA-qDeXygKjlJbyDYDQgaA7crV3Pge8S7PsrbHLlNk6y9KonymI2rNje5KMFDIjpoumLtEWtDqtvo1M0DlP_Lw&h=T7_1qWTwX0fdn96BSQxl9uy8V_e-dlXnJUq_iK47SAY response: body: string: '' @@ -538,7 +538,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 00:57:36 GMT + - Thu, 10 Sep 2026 06:43:52 GMT expires: - '-1' pragma: @@ -550,11 +550,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/0c7eadd5-d4fd-4c27-9293-f63f0e4fdda8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f8c0ed4e-1de2-44e2-b3cb-5ced50359e02 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 42ED43929BE541998D9FECA15ABB6EE5 Ref B: BY1AA1072318052 Ref C: 2026-03-24T00:57:37Z' + - 'Ref A: D502D81F51254B19A8C792FCD06ABF65 Ref B: SYD281080709023 Ref C: 2026-09-10T06:43:52Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal_check_health.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal_check_health.yaml index e708844c0f0..d9325238447 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal_check_health.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_normal_check_health.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southeastasia", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": - false, "anonymousPullEnabled": false}}' + false}}' headers: Accept: - application/json @@ -12,31 +12,29 @@ interactions: Connection: - keep-alive Content-Length: - - '129' + - '98' Content-Type: - application/json ParameterSetName: - -g -n --sku --location User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-29T16:18:04.9862448+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-29T16:18:04.9862448+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2025-04-29T16:18:04.9862448Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-29T16:18:09.1825803+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-29T16:18:09.1826279+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:00.3314344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:00.3314344+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:44:00.3314344Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:07.819081+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:07.8191392+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-05-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002/operationStatuses/registries-8677099c-2515-11f0-ad35-00155d325208?api-version=2026-03-01-preview&t=638815402895176576&c=MIIHpTCCBo2gAwIBAgITOgWW6V4bWqMg7jirKQAEBZbpXjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDgxMTE1WhcNMjUxMDE1MDgxMTE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMY1NkY30CSs3RZUjU5LWx8q7D4EBtiOvDh0rp_pq88pDrSLlkOvW1ukv2drLl4IRFgQeGBaWUXLnQSQkKU2147xu_kMK_wSfioRAwmyyQHBR5k_vbrQJFxUKceo6N_rl_2o1j456RihwRURmBeWLnd-69hjHOb5hjnrt_qkn2AFXRyhWO7gcy4NPQtAKQDYrLUUVj2h-D33k8M9wh0QyV5ILmpDadE4FUZdq41h-3VF3wEOfcnxvX517erTM2H7B67HZterUB9j8_HcAXYFr2m0QuYMdMJg_kKz1Rw0S_1Dibc4xxeJ9mM4i2wM0_mRb3j8bwvrBvTEDH-wVRJJJ30CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS4PhGjDcxYCa2eOpJskgmW7M6GVTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHYuF4NC56IyGK6Ro3OTFN7_FjApCny2LNMxb7LrSysN_JN1P48hCgwFKbBarw1eD_cd50ZUsSlQhCpUXw_UKyPtXcIeG_o9kfL9_OD1FHsRLeqNaTS6U5d_ae9_46MeBalddw7Zi7Y_l_WZj-czs03WJvrs-rws6ksOFbJ25hUW_tt3LpxdJ49iUEoL9NogcwIevUhCvdTwed0uJcxSU3InXLDHfkVFTcGdu5TMdm0gfxraHzKeCoTEbo8jP41rP7JVgZzJSUoTzBWqFe-N9LuyN9-TrCNLAJwm11B3bKdUW_Ki1RtB548riY-xx-WmRmrYKnV1JCnsL1wsoViaoSg&s=DORhjFNKvwXWfy-FQgyLTxiKTUiEMTGiGHw2hkQhD8zk1_iI5Br75Y4UKdEJAXj7fhtHaszUVkz2VW0FK53gH59w3J2oVWlg1JyRRDaRMAeL2bSmkA251pq22bEolAOcxliUl1VmWNQJkSyn8WGE8x_etYkTrvAytTU3TK0oxYIDAEjVbciiAlJQWbJWc-KgqWoxxo2cQgO5Dwu2Sd7KMRDirtJWxzreEnr11LWb9ebmpbzq99apglvsU-bKs1cXsgldKlmpPqnnF6dDwcHvSK1oPwVZJ1r5CjB-WK-TGOEDdesFTO5ytT7h2YjP7mwzD2n0uZeFsoHIrUQ7hEn-8Q&h=SbJPO19WHwR4DHjq5P7AloUmwWOw1WRrv8ngPi4Oc6Q + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1504' + - '1665' content-type: - application/json; charset=utf-8 date: - - Tue, 29 Apr 2025 16:18:09 GMT + - Thu, 10 Sep 2026 06:44:08 GMT expires: - '-1' pragma: @@ -48,165 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/b916620d-f9e5-4ffa-b353-4a861942a5ad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/a16278b8-afca-4738-88c7-39776378a7c4 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 010AAF063A474031859E0A1024570829 Ref B: BN1AA2051015019 Ref C: 2025-04-29T16:18:04Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --location - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002/operationStatuses/registries-8677099c-2515-11f0-ad35-00155d325208?api-version=2026-03-01-preview&t=638815402895176576&c=MIIHpTCCBo2gAwIBAgITOgWW6V4bWqMg7jirKQAEBZbpXjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDgxMTE1WhcNMjUxMDE1MDgxMTE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMY1NkY30CSs3RZUjU5LWx8q7D4EBtiOvDh0rp_pq88pDrSLlkOvW1ukv2drLl4IRFgQeGBaWUXLnQSQkKU2147xu_kMK_wSfioRAwmyyQHBR5k_vbrQJFxUKceo6N_rl_2o1j456RihwRURmBeWLnd-69hjHOb5hjnrt_qkn2AFXRyhWO7gcy4NPQtAKQDYrLUUVj2h-D33k8M9wh0QyV5ILmpDadE4FUZdq41h-3VF3wEOfcnxvX517erTM2H7B67HZterUB9j8_HcAXYFr2m0QuYMdMJg_kKz1Rw0S_1Dibc4xxeJ9mM4i2wM0_mRb3j8bwvrBvTEDH-wVRJJJ30CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS4PhGjDcxYCa2eOpJskgmW7M6GVTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHYuF4NC56IyGK6Ro3OTFN7_FjApCny2LNMxb7LrSysN_JN1P48hCgwFKbBarw1eD_cd50ZUsSlQhCpUXw_UKyPtXcIeG_o9kfL9_OD1FHsRLeqNaTS6U5d_ae9_46MeBalddw7Zi7Y_l_WZj-czs03WJvrs-rws6ksOFbJ25hUW_tt3LpxdJ49iUEoL9NogcwIevUhCvdTwed0uJcxSU3InXLDHfkVFTcGdu5TMdm0gfxraHzKeCoTEbo8jP41rP7JVgZzJSUoTzBWqFe-N9LuyN9-TrCNLAJwm11B3bKdUW_Ki1RtB548riY-xx-WmRmrYKnV1JCnsL1wsoViaoSg&s=DORhjFNKvwXWfy-FQgyLTxiKTUiEMTGiGHw2hkQhD8zk1_iI5Br75Y4UKdEJAXj7fhtHaszUVkz2VW0FK53gH59w3J2oVWlg1JyRRDaRMAeL2bSmkA251pq22bEolAOcxliUl1VmWNQJkSyn8WGE8x_etYkTrvAytTU3TK0oxYIDAEjVbciiAlJQWbJWc-KgqWoxxo2cQgO5Dwu2Sd7KMRDirtJWxzreEnr11LWb9ebmpbzq99apglvsU-bKs1cXsgldKlmpPqnnF6dDwcHvSK1oPwVZJ1r5CjB-WK-TGOEDdesFTO5ytT7h2YjP7mwzD2n0uZeFsoHIrUQ7hEn-8Q&h=SbJPO19WHwR4DHjq5P7AloUmwWOw1WRrv8ngPi4Oc6Q - response: - body: - string: '{"status":"Creating"}' - headers: - api-supported-versions: - - 2025-05-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002/operationStatuses/registries-8677099c-2515-11f0-ad35-00155d325208?api-version=2026-03-01-preview&t=638815402911693995&c=MIIHpTCCBo2gAwIBAgITOgWW6V4bWqMg7jirKQAEBZbpXjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDgxMTE1WhcNMjUxMDE1MDgxMTE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMY1NkY30CSs3RZUjU5LWx8q7D4EBtiOvDh0rp_pq88pDrSLlkOvW1ukv2drLl4IRFgQeGBaWUXLnQSQkKU2147xu_kMK_wSfioRAwmyyQHBR5k_vbrQJFxUKceo6N_rl_2o1j456RihwRURmBeWLnd-69hjHOb5hjnrt_qkn2AFXRyhWO7gcy4NPQtAKQDYrLUUVj2h-D33k8M9wh0QyV5ILmpDadE4FUZdq41h-3VF3wEOfcnxvX517erTM2H7B67HZterUB9j8_HcAXYFr2m0QuYMdMJg_kKz1Rw0S_1Dibc4xxeJ9mM4i2wM0_mRb3j8bwvrBvTEDH-wVRJJJ30CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS4PhGjDcxYCa2eOpJskgmW7M6GVTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHYuF4NC56IyGK6Ro3OTFN7_FjApCny2LNMxb7LrSysN_JN1P48hCgwFKbBarw1eD_cd50ZUsSlQhCpUXw_UKyPtXcIeG_o9kfL9_OD1FHsRLeqNaTS6U5d_ae9_46MeBalddw7Zi7Y_l_WZj-czs03WJvrs-rws6ksOFbJ25hUW_tt3LpxdJ49iUEoL9NogcwIevUhCvdTwed0uJcxSU3InXLDHfkVFTcGdu5TMdm0gfxraHzKeCoTEbo8jP41rP7JVgZzJSUoTzBWqFe-N9LuyN9-TrCNLAJwm11B3bKdUW_Ki1RtB548riY-xx-WmRmrYKnV1JCnsL1wsoViaoSg&s=AuuSIDyxNJw7jPlkWMwQ3bQEIduLdsKbRuVDsEaVojatjET2MCgJuy_Nb07Je5RhS6-FTPYPvTiQ1GBwImP5jvZcXzHFX_31_3M6aylqcYbOnS0r0qav0zHh-53p44Cmh-GvD5-aKpowhr0UuUIhkCeF-ALTXW9KAzWNV0vh81tHsXXHWBV56CflWZghjNZgjl4Fyuh1xhnSyHuZj0Z-fUogRC9QMF61jbeCVhB5tz6OjcSvYnfsXcxBJTLvceTM-eMKlCvFjqQ6ryyiPFH1AgDVwWBYx0PNfuzOGcS59dCkKsXPT0aUQco6PTIF9Xt4RDSgkc-q-dKd5_Rjbk4rDg&h=qoDQe124X2lvod1KlPHKcwz0jJNzE1HMY1ybBy6QrkY - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/0b2af0c3-0289-4ec3-b376-6814000b3b29 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 09FF83F4CA674B79BF1FE69BA8BA845B Ref B: BN1AA2051015019 Ref C: 2025-04-29T16:18:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --location - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002/operationStatuses/registries-8677099c-2515-11f0-ad35-00155d325208?api-version=2026-03-01-preview&t=638815402895176576&c=MIIHpTCCBo2gAwIBAgITOgWW6V4bWqMg7jirKQAEBZbpXjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDgxMTE1WhcNMjUxMDE1MDgxMTE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMY1NkY30CSs3RZUjU5LWx8q7D4EBtiOvDh0rp_pq88pDrSLlkOvW1ukv2drLl4IRFgQeGBaWUXLnQSQkKU2147xu_kMK_wSfioRAwmyyQHBR5k_vbrQJFxUKceo6N_rl_2o1j456RihwRURmBeWLnd-69hjHOb5hjnrt_qkn2AFXRyhWO7gcy4NPQtAKQDYrLUUVj2h-D33k8M9wh0QyV5ILmpDadE4FUZdq41h-3VF3wEOfcnxvX517erTM2H7B67HZterUB9j8_HcAXYFr2m0QuYMdMJg_kKz1Rw0S_1Dibc4xxeJ9mM4i2wM0_mRb3j8bwvrBvTEDH-wVRJJJ30CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS4PhGjDcxYCa2eOpJskgmW7M6GVTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHYuF4NC56IyGK6Ro3OTFN7_FjApCny2LNMxb7LrSysN_JN1P48hCgwFKbBarw1eD_cd50ZUsSlQhCpUXw_UKyPtXcIeG_o9kfL9_OD1FHsRLeqNaTS6U5d_ae9_46MeBalddw7Zi7Y_l_WZj-czs03WJvrs-rws6ksOFbJ25hUW_tt3LpxdJ49iUEoL9NogcwIevUhCvdTwed0uJcxSU3InXLDHfkVFTcGdu5TMdm0gfxraHzKeCoTEbo8jP41rP7JVgZzJSUoTzBWqFe-N9LuyN9-TrCNLAJwm11B3bKdUW_Ki1RtB548riY-xx-WmRmrYKnV1JCnsL1wsoViaoSg&s=DORhjFNKvwXWfy-FQgyLTxiKTUiEMTGiGHw2hkQhD8zk1_iI5Br75Y4UKdEJAXj7fhtHaszUVkz2VW0FK53gH59w3J2oVWlg1JyRRDaRMAeL2bSmkA251pq22bEolAOcxliUl1VmWNQJkSyn8WGE8x_etYkTrvAytTU3TK0oxYIDAEjVbciiAlJQWbJWc-KgqWoxxo2cQgO5Dwu2Sd7KMRDirtJWxzreEnr11LWb9ebmpbzq99apglvsU-bKs1cXsgldKlmpPqnnF6dDwcHvSK1oPwVZJ1r5CjB-WK-TGOEDdesFTO5ytT7h2YjP7mwzD2n0uZeFsoHIrUQ7hEn-8Q&h=SbJPO19WHwR4DHjq5P7AloUmwWOw1WRrv8ngPi4Oc6Q - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2025-05-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002/operationStatuses/registries-8677099c-2515-11f0-ad35-00155d325208?api-version=2026-03-01-preview&t=638815403028498325&c=MIIHpTCCBo2gAwIBAgITOgWW6V4bWqMg7jirKQAEBZbpXjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDgxMTE1WhcNMjUxMDE1MDgxMTE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMY1NkY30CSs3RZUjU5LWx8q7D4EBtiOvDh0rp_pq88pDrSLlkOvW1ukv2drLl4IRFgQeGBaWUXLnQSQkKU2147xu_kMK_wSfioRAwmyyQHBR5k_vbrQJFxUKceo6N_rl_2o1j456RihwRURmBeWLnd-69hjHOb5hjnrt_qkn2AFXRyhWO7gcy4NPQtAKQDYrLUUVj2h-D33k8M9wh0QyV5ILmpDadE4FUZdq41h-3VF3wEOfcnxvX517erTM2H7B67HZterUB9j8_HcAXYFr2m0QuYMdMJg_kKz1Rw0S_1Dibc4xxeJ9mM4i2wM0_mRb3j8bwvrBvTEDH-wVRJJJ30CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS4PhGjDcxYCa2eOpJskgmW7M6GVTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHYuF4NC56IyGK6Ro3OTFN7_FjApCny2LNMxb7LrSysN_JN1P48hCgwFKbBarw1eD_cd50ZUsSlQhCpUXw_UKyPtXcIeG_o9kfL9_OD1FHsRLeqNaTS6U5d_ae9_46MeBalddw7Zi7Y_l_WZj-czs03WJvrs-rws6ksOFbJ25hUW_tt3LpxdJ49iUEoL9NogcwIevUhCvdTwed0uJcxSU3InXLDHfkVFTcGdu5TMdm0gfxraHzKeCoTEbo8jP41rP7JVgZzJSUoTzBWqFe-N9LuyN9-TrCNLAJwm11B3bKdUW_Ki1RtB548riY-xx-WmRmrYKnV1JCnsL1wsoViaoSg&s=IhIoKDXQCcMZnLc__60FZh7OTVklYHtORRHxU6xodhRAqHGouHgjTJfu8sepBkKEuhpnKe-6Dt-Sjm223Ztu0GIWFi3nsUGwylD3zSz9TnWwGq0qgcsyCwx5dvsKG8AaU4fKmc_F2s2SKsMccznvliSQcqtvS8Cipc9JPKvYeOuem3tqk_mAW1XFymvv6D63w_xeHL8gGQxF2CdkJHjF8AD5BUfe84kQl1uOWy8U-pyfUMW9ygl45AkDR7T3lXOl-_TKs_U10ga3kNSUT1_COFjpXmesCjXFjzKMdNxL1nTzupaeCz9GQQRKUbKzWpHjyQAfsxvWu4F0PAjPxtpDjQ&h=fzmhbr5RI8sAdV09m7nmPUY2M4ur78g21zXgqLpucjY - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1912a6e4-20e6-4282-8ba0-7177a6820ecd - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 7AE4A552967449048F973BC99036D157 Ref B: BN1AA2051015019 Ref C: 2025-04-29T16:18:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --location - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-29T16:18:04.9862448+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-29T16:18:04.9862448+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2025-04-29T16:18:04.9862448Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-29T16:18:09.1825803+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-29T16:18:09.1826279+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-05-01-preview - cache-control: - - no-cache - content-length: - - '1505' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: AB8F3A3F29144D5088CE93ECCFEE4E67 Ref B: BN1AA2051015019 Ref C: 2025-04-29T16:18:23Z' + - 'Ref A: C18DD59FFA014AF5BDD0AADA7117C651 Ref B: SYD281080710054 Ref C: 2026-09-10T06:43:58Z' status: code: 200 message: OK @@ -224,23 +70,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-29T16:18:04.9862448+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-29T16:18:04.9862448+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2025-04-29T16:18:04.9862448Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-29T16:18:09.1825803+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-29T16:18:09.1826279+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:00.3314344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:00.3314344+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2026-09-10T06:44:00.3314344Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:07.819081+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:07.8191392+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-05-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1505' + - '1665' content-type: - application/json; charset=utf-8 date: - - Tue, 29 Apr 2025 16:18:25 GMT + - Thu, 10 Sep 2026 06:44:08 GMT expires: - '-1' pragma: @@ -254,272 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4DA1A751A8B243C7A6424B8A6C03589A Ref B: BN1AA2051013009 Ref C: 2025-04-29T16:18:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr check-health - Connection: - - keep-alive - ParameterSetName: - - -n --repository -y - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytectncusacr0414","name":"zoeytectncusacr0414","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"northcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-17T14:21:33.1671739Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-17T14:21:33.1671739Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_waw5nm42gcvu3aj4ci3k3rhoyfi46c525vluh3sqph3rjebv2en3p3eyk4/providers/Microsoft.ContainerRegistry/registries/cliregt3hspqayoymnu7","name":"cliregt3hspqayoymnu7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T21:49:56.2007971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T21:49:56.2007971Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_tcgmrt3gvutsrtg2wxuijb6hrvaic3cr7uietobic5iq6ct3ispo72ecof/providers/Microsoft.ContainerRegistry/registries/clireg63o5b3onmtkvrx","name":"clireg63o5b3onmtkvrx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T21:49:58.0949541Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T21:49:58.0949541Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubcjeia3f34kn3ejmpyzf","name":"sourceregistrysamesubcjeia3f34kn3ejmpyzf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-28T02:16:34.9074828Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-28T02:16:34.9074828Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub345yry4ldhar4zun6kf","name":"sourceregistrysamesub345yry4ldhar4zun6kf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-28T02:30:40.8397078Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-28T02:30:40.8397078Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwq5jbxbofv3zh7svb2c","name":"sourceregistrysamesubwq5jbxbofv3zh7svb2c","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-28T03:53:30.4884787Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-28T03:53:30.4884787Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmxbri3n7oe2dwvhmjhtu6ytzg73zese3jzadnbbe7prlpz2v5aabpmsqwzkcwcasr/providers/Microsoft.ContainerRegistry/registries/cliregmdncmfayovw6d5","name":"cliregmdncmfayovw6d5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-28T05:16:14.3146917Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-28T05:16:14.3146917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-29T16:18:04.9862448Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-29T16:18:04.9862448Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-05T08:59:49.6642874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeyacrtestlock","name":"zoeyacrtestlock","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-07-25T07:21:01.5103739Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-25T07:21:01.5103739Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeyRG/providers/Microsoft.ContainerRegistry/registries/zoeyabac","name":"zoeyabac","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-25T07:42:58.8849612Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-21T07:41:19.4378921Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeysfirg/providers/Microsoft.ContainerRegistry/registries/zoeysfiacr","name":"zoeysfiacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-16T20:15:45.8263796Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-16T20:15:45.8263796Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeysfirg/providers/Microsoft.ContainerRegistry/registries/zoeysfiacreus2","name":"zoeysfiacreus2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-16T20:54:43.776323Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-16T20:54:43.776323Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeyRG/providers/Microsoft.ContainerRegistry/registries/zoeyclitest0424001","name":"zoeyclitest0424001","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T04:00:48.2657455Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T04:00:48.2657455Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeyRG/providers/Microsoft.ContainerRegistry/registries/zoeyclitest0425","name":"zoeyclitest0425","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T19:04:37.6150218Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T19:04:37.6150218Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '8647' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 428D599CCEC644B29D9DE4ADF061A80E Ref B: BN1AA2051012011 Ref C: 2025-04-29T16:18:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr check-health - Connection: - - keep-alive - ParameterSetName: - - -n --repository -y - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clitestrbac000002","name":"clitestrbac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-29T16:18:04.9862448+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-29T16:18:04.9862448+00:00"},"properties":{"loginServer":"clitestrbac000002.azurecr.io","creationDate":"2025-04-29T16:18:04.9862448Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-29T16:18:09.1825803+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-29T16:18:09.1826279+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-05-01-preview - cache-control: - - no-cache - content-length: - - '1505' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: FC7C54EBC06144A98D51526B38BC4529 Ref B: BN1AA2051013011 Ref C: 2025-04-29T16:18:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://clitestrbac000002.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:30 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://clitestrbaco6a76.azurecr.io/oauth2/token",service="clitestrbaco6a76.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://clitestrbac000002.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:31 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://clitestrbaco6a76.azurecr.io/oauth2/token",service="clitestrbaco6a76.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: grant_type=access_token&service=clitestrbaco6a76.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=*** - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '2469' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.32.3 - method: POST - uri: https://clitestrbac000002.azurecr.io/oauth2/exchange - response: - body: - string: '{"refresh_token":"***"}' - headers: - connection: - - keep-alive - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:32 GMT - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-ms-ratelimit-remaining-calls-per-second: - - '166.65' - status: - code: 200 - message: OK -- request: - body: grant_type=refresh_token&service=clitestrbaco6a76.azurecr.io&scope=repository%3Ahello-world%3Apull%2Cpush%2Cmetadata_write%2Cmetadata_read%2Cdelete&refresh_token=*** - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1316' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.32.3 - method: POST - uri: https://clitestrbac000002.azurecr.io/oauth2/token - response: - body: - string: '{"access_token":"***"}' - headers: - connection: - - keep-alive - content-type: - - application/json; charset=utf-8 - date: - - Tue, 29 Apr 2025 16:18:33 GMT - server: - - AzureContainerRegistry - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - 'Ref A: DA6B6D5C7B0A45ACB81AAF92116E5FFB Ref B: SYD281080709023 Ref C: 2026-09-10T06:44:08Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml index be969c9a6bc..d7ec9571a8c 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:30 GMT + - Thu, 10 Sep 2026 06:44:47 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1c7e60d5-5f1a-4f4e-989f-da94095ca522 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/d7922412-8ae5-4c73-8961-62ccf5d2f3d2 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: AC9E7D58018F44FEB02A68039AAF7065 Ref B: BN1AA2051013019 Ref C: 2026-04-20T19:01:15Z' + - 'Ref A: 81BC1009CA1C4C66863CF808E219C2A4 Ref B: SYD281080706042 Ref C: 2026-09-10T06:44:38Z' status: code: 200 message: OK @@ -70,22 +70,21 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_rfg4nbcwqcmsnfjopk2mwdic5ttw4lhg5jxkitxxgoexynkw67i6726uc3/providers/Microsoft.ContainerRegistry/registries/clitestrbacidrlh","name":"clitestrbacidrlh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:00.3314344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:00.3314344Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:32.0100072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '6375' + - '4612' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:30 GMT + - Thu, 10 Sep 2026 06:44:48 GMT expires: - '-1' pragma: @@ -99,7 +98,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CA5873DA64324428B253D9148E44993C Ref B: BN1AA2051013031 Ref C: 2026-04-20T19:01:30Z' + - 'Ref A: 9F32CE548CD748A595E8D4BF135287B5 Ref B: SYD281080711034 Ref C: 2026-09-10T06:44:48Z' status: code: 200 message: OK @@ -117,23 +116,23 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:31 GMT + - Thu, 10 Sep 2026 06:44:49 GMT expires: - '-1' pragma: @@ -147,7 +146,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9C1D7ACFC0F545D0BBB156FAD8617DA4 Ref B: BN1AA2051014047 Ref C: 2026-04-20T19:01:31Z' + - 'Ref A: B8DCD79844D348899638D2B4A2CFF915 Ref B: SYD281080707040 Ref C: 2026-09-10T06:44:48Z' status: code: 200 message: OK @@ -169,21 +168,22 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:33.1500742+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:33.1500742+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-04-20T19:01:34.2359286Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:50.2658749+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:50.2658749+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-09-10T06:44:50.9988435Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-5d576fea-3ceb-11f1-a6b1-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123084947751091&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=UqYezHmKt3jz6Sx-mbFda0igYco0ccAIwWpzr1R-P0Hv2jA5Rn0IyCcevWqewI3PX-wUGX4ywjUAbqWhoF3hBesGnGn56QPvu6WQs5oEGfCTsXC9Clisv7DgLzvHezKqtHH3kNVr1kzor1fA8Swa_bv5mfDI6tIKHHeQquuNLqjtU3mi8tDnuCn0bqqazDv2vyE_vx7yZ9dWW5E2U3QJKIvnzOcn5GVQiear4aU6aduOlzoBkOObIRGOHkBO3AHpZoi3m8nCd-XsRwZjF-6qBoYs1ilo_CD0LtTBmG7QyA6Gn8ij1TynEYc0DBBZbV-OCQdnosUFhYkLI64Sh25PcQ&h=gfiHLXsrduhHotZrDJwcCk-OxHu-_pe2wnXNaCIbR_U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-1e511988-ace3-11f1-9b82-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194912815364&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LdCQ22wwtKBUO40awOozJeOfHgwODbT4mX7UGHkOWbhqb2JACM7SJZFeL2Q-6aSYg3gjY5vt3qAGY86DfAXylfp3JedQaaVB6nlexTv7-N5mh-Ku5Qye_hHvdJ9OMyOY0G1ywPeAgpwNnwbe-6C5PwFUiMptmJAZdBc0dmu5dzfMxZXxKBaH3PqwUL0WesO2yt9WBhVjlqZ2nOMwlGkNxSna3CbxezNVuJcDSjA0KKqNgjVnpaToEfQsbsbbqgcXFhXDn9PDNb2oitI49fhQt1WQoOX__tsdsI2YF3y8VbBOhyQ5cCCtD6ysyot7vRkT_NgLnS_3CM4ww3xJYKepng&h=5LRxdKDk2jooHmq1dUXQ4F7xG6PRwBfvax8VOtTNjSs cache-control: - no-cache content-length: @@ -191,7 +191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:33 GMT + - Thu, 10 Sep 2026 06:44:50 GMT expires: - '-1' pragma: @@ -203,13 +203,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/97db31e7-a804-4d6c-86fe-493f1b26e339 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/40d1a3f9-6593-4c69-a8bd-4d6b480c4123 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C6497B557EBF47C6B7C17955E5CA0B3F Ref B: BN1AA2051015031 Ref C: 2026-04-20T19:01:32Z' + - 'Ref A: AC3914F6CC5E457BB7AB4F0C38D89994 Ref B: SYD281080707025 Ref C: 2026-09-10T06:44:49Z' status: code: 201 message: Created @@ -227,9 +227,9 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-5d576fea-3ceb-11f1-a6b1-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123084947751091&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=UqYezHmKt3jz6Sx-mbFda0igYco0ccAIwWpzr1R-P0Hv2jA5Rn0IyCcevWqewI3PX-wUGX4ywjUAbqWhoF3hBesGnGn56QPvu6WQs5oEGfCTsXC9Clisv7DgLzvHezKqtHH3kNVr1kzor1fA8Swa_bv5mfDI6tIKHHeQquuNLqjtU3mi8tDnuCn0bqqazDv2vyE_vx7yZ9dWW5E2U3QJKIvnzOcn5GVQiear4aU6aduOlzoBkOObIRGOHkBO3AHpZoi3m8nCd-XsRwZjF-6qBoYs1ilo_CD0LtTBmG7QyA6Gn8ij1TynEYc0DBBZbV-OCQdnosUFhYkLI64Sh25PcQ&h=gfiHLXsrduhHotZrDJwcCk-OxHu-_pe2wnXNaCIbR_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-1e511988-ace3-11f1-9b82-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194912815364&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LdCQ22wwtKBUO40awOozJeOfHgwODbT4mX7UGHkOWbhqb2JACM7SJZFeL2Q-6aSYg3gjY5vt3qAGY86DfAXylfp3JedQaaVB6nlexTv7-N5mh-Ku5Qye_hHvdJ9OMyOY0G1ywPeAgpwNnwbe-6C5PwFUiMptmJAZdBc0dmu5dzfMxZXxKBaH3PqwUL0WesO2yt9WBhVjlqZ2nOMwlGkNxSna3CbxezNVuJcDSjA0KKqNgjVnpaToEfQsbsbbqgcXFhXDn9PDNb2oitI49fhQt1WQoOX__tsdsI2YF3y8VbBOhyQ5cCCtD6ysyot7vRkT_NgLnS_3CM4ww3xJYKepng&h=5LRxdKDk2jooHmq1dUXQ4F7xG6PRwBfvax8VOtTNjSs response: body: string: '{"status":"Creating"}' @@ -239,9 +239,10 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-5d576fea-3ceb-11f1-a6b1-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123084958968296&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=PRYzIkePZgRJmu_ltPn_p-P5AjatGlC1bDqVJm175uvNSX6qaiRL_klZOw9U9Ig2dilGJDv5QyF_O-u12slvMwke2MP1tEMmMVy8eXYCjCSle-t6QTBATcs8r0DylZF7kKDsz0R0NcrPzqKqMVdD_ZXZtw6XC67XgZWdaTpUc7K4g4TkuWcvIADcttLDNx9eYl3lxFE6N4d92i3I824xI_ck5Gtb19-tqh4kMqLoHKejhAm8UTSEcQfkAHSZukzvwCkCthKDotQhV9ayX1liYll1LEK4MFJiRQo4BtwcpH4KxH9xRlcxDuoC-QwiclBD6m_q5FXwXmkOcXT6j2IJ5A&h=TbBdPv3z3IAcSbtGmqfyfCtilc3i4yOl33Yl0rZs22o + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-1e511988-ace3-11f1-9b82-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194921373542&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ldoSqF0mTND-7EQsgYXA8SIeZr-umGhf2q40HQd_nJlprZ-vtAJENYOknpvt3tIcXPz12HCu6OxObXftV_nVWKSwtoqcLzYAqeVymPu1n41e9eP1imyBP_Xm_6ueVqHx5r5NoAcTT0k9Pir83Swe9T07MKYQsrBczlJ059nxGsW62vDdsnk22iBe91bvQ3cmHGbrIOAyhsAnIQ0D98ojO7Z-yllTit_D2Xn9SyLraJ1pATQ2VQFR_fRLGfcDuj9oaDTBszWreqXuyGIpDrZfe7wE84hcQ7OYS6asMbRCbBf7ROBp6VyT6mz3lraVi-i_NC4GQFQsRLMI55pQbZHbNA&h=f4Po9T6kEMr74sK-gZkaGK8nhAAyoRifjpCQTU_c23U cache-control: - no-cache content-length: @@ -249,7 +250,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:35 GMT + - Thu, 10 Sep 2026 06:44:51 GMT expires: - '-1' pragma: @@ -261,11 +262,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5594104d-92a4-4b22-80ee-5692d497a437 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/70534b7b-ce0f-46eb-b1dc-c9b2e37c87b6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1D8EA4C93EBB473C855EB4B8340ADA89 Ref B: BN1AA2051013045 Ref C: 2026-04-20T19:01:35Z' + - 'Ref A: 15AB4A62FDA741E1B5342A39FC101F3C Ref B: SYD281080710023 Ref C: 2026-09-10T06:44:51Z' status: code: 200 message: OK @@ -283,65 +284,9 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-5d576fea-3ceb-11f1-a6b1-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123084947751091&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=UqYezHmKt3jz6Sx-mbFda0igYco0ccAIwWpzr1R-P0Hv2jA5Rn0IyCcevWqewI3PX-wUGX4ywjUAbqWhoF3hBesGnGn56QPvu6WQs5oEGfCTsXC9Clisv7DgLzvHezKqtHH3kNVr1kzor1fA8Swa_bv5mfDI6tIKHHeQquuNLqjtU3mi8tDnuCn0bqqazDv2vyE_vx7yZ9dWW5E2U3QJKIvnzOcn5GVQiear4aU6aduOlzoBkOObIRGOHkBO3AHpZoi3m8nCd-XsRwZjF-6qBoYs1ilo_CD0LtTBmG7QyA6Gn8ij1TynEYc0DBBZbV-OCQdnosUFhYkLI64Sh25PcQ&h=gfiHLXsrduhHotZrDJwcCk-OxHu-_pe2wnXNaCIbR_U - response: - body: - string: '{"status":"Creating"}' - headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-5d576fea-3ceb-11f1-a6b1-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085069287420&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=alWMSyEDRC7_DQ0JDkKCObZML_7zgzxaaujOrO929PGvvsDR7puAnsDlKq_ulmi_cIhzdjtttIKHzZ6nthutPWw-fbJhrzvpWpFeMzPSpUxG3ldfj9EnBKJ3QgKuFZz2yqB4GikYtQNm70m3luQlYvHz-yyicEpHwE0mn7jwk1nSaUrSkNx4WUUXiY8ar_5GdPzKvnNlNR0Tf76krG8det13mkdZKlpKW6HjEX4liqsPOlBzhq0CUGaLIAyxO-NPVvINGg_nbRwtYLOz4w8ppYTf2K6GuBYRyW8gi5KAhkCgHD8nFteChaITO5MduOfrbSHnuVLlRgXr2rDpmDpPVg&h=085xBUIgIDFULmfRhBEWXPvlaHeyVFMQ4KtmceTM5ng - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 20 Apr 2026 19:01:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/1b38d006-6065-4208-a589-114fe90862be - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: A45252D9CA7B4C10A83DC19A5D8834C0 Ref B: BN1AA2051012029 Ref C: 2026-04-20T19:01:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication create - Connection: - - keep-alive - ParameterSetName: - - -n -r -l - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-5d576fea-3ceb-11f1-a6b1-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123084947751091&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=UqYezHmKt3jz6Sx-mbFda0igYco0ccAIwWpzr1R-P0Hv2jA5Rn0IyCcevWqewI3PX-wUGX4ywjUAbqWhoF3hBesGnGn56QPvu6WQs5oEGfCTsXC9Clisv7DgLzvHezKqtHH3kNVr1kzor1fA8Swa_bv5mfDI6tIKHHeQquuNLqjtU3mi8tDnuCn0bqqazDv2vyE_vx7yZ9dWW5E2U3QJKIvnzOcn5GVQiear4aU6aduOlzoBkOObIRGOHkBO3AHpZoi3m8nCd-XsRwZjF-6qBoYs1ilo_CD0LtTBmG7QyA6Gn8ij1TynEYc0DBBZbV-OCQdnosUFhYkLI64Sh25PcQ&h=gfiHLXsrduhHotZrDJwcCk-OxHu-_pe2wnXNaCIbR_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-1e511988-ace3-11f1-9b82-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194912815364&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LdCQ22wwtKBUO40awOozJeOfHgwODbT4mX7UGHkOWbhqb2JACM7SJZFeL2Q-6aSYg3gjY5vt3qAGY86DfAXylfp3JedQaaVB6nlexTv7-N5mh-Ku5Qye_hHvdJ9OMyOY0G1ywPeAgpwNnwbe-6C5PwFUiMptmJAZdBc0dmu5dzfMxZXxKBaH3PqwUL0WesO2yt9WBhVjlqZ2nOMwlGkNxSna3CbxezNVuJcDSjA0KKqNgjVnpaToEfQsbsbbqgcXFhXDn9PDNb2oitI49fhQt1WQoOX__tsdsI2YF3y8VbBOhyQ5cCCtD6ysyot7vRkT_NgLnS_3CM4ww3xJYKepng&h=5LRxdKDk2jooHmq1dUXQ4F7xG6PRwBfvax8VOtTNjSs response: body: string: '{"status":"Succeeded"}' @@ -351,9 +296,10 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-5d576fea-3ceb-11f1-a6b1-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085178961212&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=gw2Z_NgLu82mIL36OMPFV0jV6j-OFWAfLcn5H8utgm8-ilN5PkiPHDLiggkzIFUHh3KfqcNzeUeGy4Tac43SQJMdi4WFMgQgLueNbgnEfm4VPTP5_1jdysck0fcwF29hcn12K9yPEHag7OLMXkEvas393qBPfxN4YnaAlM1booZTkcRK6-pUJmmKlhyNwbVERV6qUCFWoUSw2guI4KOK06mEch2DmjDkAzBmoavshXFuQSV43mCuNw4Q7-1lCpsK54NXCiSFw05mPpxXq4F9DK-_JZYDQA77tlNWJEjNsC3p7n0PmBxf1QhUaXjFyBZZT6D_V4lQQYd_Ai9pikC_uw&h=a0wBGomN4y_40DaC9d9cV8m1ZNWLkxvu8rIPrVTj2y0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-1e511988-ace3-11f1-9b82-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195036906233&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=tzyqVklBVcaPrmOCytf5otljN4f-Rmsotnaph2BulwPQC4yyyUk55VuZ3TxYxzGPzr_CioH_Fdz6bGCZysGQ1xRyOhPSa-7zoebZSwrbGaoYvvPspMNQQYVyygMgFzZeqR3c6vrtA4k4xg4d2XT0NytagtopP2rCuHSD5X0sRu6tMR1hVRWL3ZQ11HyDHk4yMkm7sR_wYGjGk3WpDSViFcBs0JKx-dEhGv_mDrNQ7jBW4jygUPMWcbfHFElG5JSBOIXdC-W1-b-GoKRdyQ2ORhLqew_F2Aqa_Dmg_C2az5D9bRbDleNefR-PNzxVyDLQ9Cj6hh1UC5IomXmd9WxDEQ&h=tSosUngA3nNZBjNqF9UEPDPIF7Qa_a8k00u6Iuijclo cache-control: - no-cache content-length: @@ -361,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:57 GMT + - Thu, 10 Sep 2026 06:45:03 GMT expires: - '-1' pragma: @@ -373,11 +319,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/36941e42-4ebd-44bc-aab4-32d5069b142c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0da88ef1-4a05-4a7d-a920-cb0070e298da x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 04C8ACA3898140B1A96327D0DB47DE6E Ref B: BN1AA2051014035 Ref C: 2026-04-20T19:01:57Z' + - 'Ref A: A5BD28B3D22E4B619DF1D4B9BE21C84B Ref B: SYD281080705060 Ref C: 2026-09-10T06:45:02Z' status: code: 200 message: OK @@ -395,19 +341,20 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:33.1500742+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:33.1500742+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-20T19:01:51.3858095Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:50.2658749+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:50.2658749+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:45:02.7848059Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -415,7 +362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:57 GMT + - Thu, 10 Sep 2026 06:45:04 GMT expires: - '-1' pragma: @@ -429,7 +376,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A5A87819FE5145D29F9BB333A363BA7B Ref B: BL2AA2010204035 Ref C: 2026-04-20T19:01:58Z' + - 'Ref A: A3ED977FCDF24F1E9EC25C671DE88197 Ref B: SYD281080708031 Ref C: 2026-09-10T06:45:04Z' status: code: 200 message: OK @@ -447,22 +394,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '6375' + - '4041' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:58 GMT + - Thu, 10 Sep 2026 06:45:05 GMT expires: - '-1' pragma: @@ -476,7 +422,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 526726AD67DC4C5DA25757868A0EB9AD Ref B: BL2AA2030101039 Ref C: 2026-04-20T19:01:59Z' + - 'Ref A: 59269563CD3941EA9C584E92D3AEE413 Ref B: SYD281080705036 Ref C: 2026-09-10T06:45:05Z' status: code: 200 message: OK @@ -494,23 +440,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:01:59 GMT + - Thu, 10 Sep 2026 06:45:06 GMT expires: - '-1' pragma: @@ -524,7 +470,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EA9BEF68E46E47399F33DBBFFEC10355 Ref B: BL2AA2010205005 Ref C: 2026-04-20T19:02:00Z' + - 'Ref A: A7330FDE46E8403BA2B89B789523E80E Ref B: SYD281080710023 Ref C: 2026-09-10T06:45:06Z' status: code: 200 message: OK @@ -542,19 +488,19 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:33.1500742+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:33.1500742+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-20T19:01:51.3858095Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}},{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/westus","name":"westus","location":"westus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2026-04-20T19:01:39.0362942+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2026-04-20T19:01:39.0362942+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-20T19:01:38.4328337Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:50.2658749+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:50.2658749+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:45:02.7848059Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}},{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/westus","name":"westus","location":"westus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2026-09-10T06:44:54.1662013+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2026-09-10T06:44:54.1662013+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:44:53.9424282Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}]}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -562,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:01 GMT + - Thu, 10 Sep 2026 06:45:07 GMT expires: - '-1' pragma: @@ -578,7 +524,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 35C0F006F23745F2B9E319440D9F63AD Ref B: BL2AA2010205033 Ref C: 2026-04-20T19:02:01Z' + - 'Ref A: 2697FBDECB5A4BE5829805D6EB0DD4B5 Ref B: SYD281080711023 Ref C: 2026-09-10T06:45:06Z' status: code: 200 message: OK @@ -596,22 +542,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '6375' + - '4041' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:01 GMT + - Thu, 10 Sep 2026 06:45:08 GMT expires: - '-1' pragma: @@ -625,7 +570,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B3E2454C7FB74D2FB661C45DB43719C2 Ref B: BL2AA2010205019 Ref C: 2026-04-20T19:02:02Z' + - 'Ref A: DE6D7A2525FB4687A5F3794503804CFC Ref B: SYD281080707036 Ref C: 2026-09-10T06:45:08Z' status: code: 200 message: OK @@ -643,23 +588,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:08 GMT + - Thu, 10 Sep 2026 06:45:09 GMT expires: - '-1' pragma: @@ -673,7 +618,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FB588009CCE74F418888031C16EA8E9B Ref B: BL2AA2030101035 Ref C: 2026-04-20T19:02:08Z' + - 'Ref A: E12C65A5DD2A4CEBAFC8B0316F3B39CA Ref B: SYD281080709062 Ref C: 2026-09-10T06:45:09Z' status: code: 200 message: OK @@ -691,19 +636,20 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:33.1500742+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:33.1500742+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-20T19:01:51.3858095Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:50.2658749+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:50.2658749+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:45:02.7848059Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -711,7 +657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:09 GMT + - Thu, 10 Sep 2026 06:45:09 GMT expires: - '-1' pragma: @@ -725,7 +671,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 65100990A52C4F01878B10D63656FC73 Ref B: BL2AA2030101049 Ref C: 2026-04-20T19:02:09Z' + - 'Ref A: 3BD3D95131834F38A707C99ACCF87517 Ref B: SYD281080707031 Ref C: 2026-09-10T06:45:10Z' status: code: 200 message: OK @@ -743,22 +689,21 @@ interactions: ParameterSetName: - -n -r --tags --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '6375' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:10 GMT + - Thu, 10 Sep 2026 06:45:11 GMT expires: - '-1' pragma: @@ -772,7 +717,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3AF3C0AC92C2497B92AACE0A151533BC Ref B: BN1AA2051015025 Ref C: 2026-04-20T19:02:10Z' + - 'Ref A: 086DFD3FD3964F5A89931FEBB2417C6F Ref B: SYD281080711060 Ref C: 2026-09-10T06:45:10Z' status: code: 200 message: OK @@ -794,21 +739,22 @@ interactions: ParameterSetName: - -n -r --tags --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:33.1500742+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:02:11.6266639+00:00"},"properties":{"provisioningState":"Updating","status":{"displayStatus":"Ready","timestamp":"2026-04-20T19:01:51.3858095Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:50.2658749+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:12.2265326+00:00"},"properties":{"provisioningState":"Updating","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:45:02.7848059Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-74eeefe1-3ceb-11f1-8f64-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085320486025&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=f9TOxB6d16N734laS-7XHmwGPUphZsjPHMwxnOPUfiziijMx1EH-Aai15RxHUhoOWp_NmBTwgNQIuvbclGpxoVEvy_qUTGqpAReLc81s5SHHQjx3KLTLOYp55y7M7rkIZcr0zY3avmCO_OEZkSEGJtWARBUMdX018qj5hisJp3EAWHNKyn7VxcjaJp6wadGrjrwTdp_hJWNRuwOz6dU-9X1Tzfe29PXScglJrh3MVUDYgeu-HKIdh9gb9WMpC1RRoo2OzC24v6OdzOe8onjkEiOikU48TfeyE0LqO7E-tL3oMugD_HjtEbACpbk-uaVstBlBnqnvgfFcGjjZObjafA&h=bTLEstnTU4lbrNdNvA8UNUEkDKLivhj56cYKhpqgyR0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-2bea138a-ace3-11f1-a9bb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195126015376&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=qdcyZcAZFQN74FoWCF92MT28VsEYE37T2goP8A1Q5GVUiwzUaklwXeYiSEBFJ-rHJ4IAaFaztAAY_W41F0aEmzR25Lpt4UBML6OFY_2-KXRUCPHFJIiNtJoZCLTQPdWioi-HuEHU0ZFD-uabwmi5eYeU349I4ymAwemFz62Ki_wFcCe7ALdidHFBk0jwwQYv0qR9FoO_-klXGbIiBuLAw3mDm8RyO8GlNWdBX8MkiAwaNARuDvD8irCWsZx59kFGQoGB_z_wtuuNR047WcJTgMqBpY9kx6ZkVProxJCnas1Jtb7QYmzfMhu1ZjBgAX3BVX_IQw_bofWuof2RCJVwrA&h=MMJU4KBdZ1ttTXFMJTEIhXLyR-R4p2h7g23fuLTf6jc cache-control: - no-cache content-length: @@ -816,7 +762,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:11 GMT + - Thu, 10 Sep 2026 06:45:11 GMT expires: - '-1' pragma: @@ -828,13 +774,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/74469254-024d-4d20-86e2-b4ffa1e0e69e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fdc6965f-f3f3-4646-b21a-0d4eed0553fa x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5E78E45A27F6448D90E0E90EBE9849D3 Ref B: BN1AA2051014031 Ref C: 2026-04-20T19:02:11Z' + - 'Ref A: B741F6D0175C4DB5A5B0ADF5DA54847A Ref B: SYD281080712025 Ref C: 2026-09-10T06:45:12Z' status: code: 201 message: Created @@ -852,65 +798,9 @@ interactions: ParameterSetName: - -n -r --tags --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-74eeefe1-3ceb-11f1-8f64-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085320486025&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=f9TOxB6d16N734laS-7XHmwGPUphZsjPHMwxnOPUfiziijMx1EH-Aai15RxHUhoOWp_NmBTwgNQIuvbclGpxoVEvy_qUTGqpAReLc81s5SHHQjx3KLTLOYp55y7M7rkIZcr0zY3avmCO_OEZkSEGJtWARBUMdX018qj5hisJp3EAWHNKyn7VxcjaJp6wadGrjrwTdp_hJWNRuwOz6dU-9X1Tzfe29PXScglJrh3MVUDYgeu-HKIdh9gb9WMpC1RRoo2OzC24v6OdzOe8onjkEiOikU48TfeyE0LqO7E-tL3oMugD_HjtEbACpbk-uaVstBlBnqnvgfFcGjjZObjafA&h=bTLEstnTU4lbrNdNvA8UNUEkDKLivhj56cYKhpqgyR0 - response: - body: - string: '{"status":"Updating"}' - headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-74eeefe1-3ceb-11f1-8f64-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085330368167&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=A9Ke96e149IVgFoe_pG0IfNp6zaxbo1T-kdPqToo8L4ojdq6V_oO9gsfcNiH-At5tByBL19AUzGy4K_suZcpMxe91hmahoSFg26_Y99xNKKJIlOKZ9w1vj5Noh4BSPMmELleIkOrzu7NfLC7An7x5w2Ix2hxvW1Pm1L45aut1wE7IRqk6FawIixKbQrY7FK_e04dqLNsR43peGrwR__yQ39fKjDG5AqwR1AqD-Nk6xJCTAXptdz-gTEwZBSjLzeu-XqMK51Zttdfzcqu87wqYxUlpyA1bJbo1ip-LpFLUdQv3ubu4mtmHZQW-5QXRx831n_teVzCbPtAd-gDZTqGCQ&h=gQSn912EWyil3mKDDgg5s4p7szV_KXFk_vIS7mQgoGo - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 20 Apr 2026 19:02:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/fcb71976-e1c2-4f44-b617-1c61082cf19e - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 20C3942293B5418CB917D451736BDBE9 Ref B: BN1AA2051012053 Ref C: 2026-04-20T19:02:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication update - Connection: - - keep-alive - ParameterSetName: - - -n -r --tags --global-endpoint-routing - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-74eeefe1-3ceb-11f1-8f64-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085320486025&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=f9TOxB6d16N734laS-7XHmwGPUphZsjPHMwxnOPUfiziijMx1EH-Aai15RxHUhoOWp_NmBTwgNQIuvbclGpxoVEvy_qUTGqpAReLc81s5SHHQjx3KLTLOYp55y7M7rkIZcr0zY3avmCO_OEZkSEGJtWARBUMdX018qj5hisJp3EAWHNKyn7VxcjaJp6wadGrjrwTdp_hJWNRuwOz6dU-9X1Tzfe29PXScglJrh3MVUDYgeu-HKIdh9gb9WMpC1RRoo2OzC24v6OdzOe8onjkEiOikU48TfeyE0LqO7E-tL3oMugD_HjtEbACpbk-uaVstBlBnqnvgfFcGjjZObjafA&h=bTLEstnTU4lbrNdNvA8UNUEkDKLivhj56cYKhpqgyR0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-2bea138a-ace3-11f1-a9bb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195126015376&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=qdcyZcAZFQN74FoWCF92MT28VsEYE37T2goP8A1Q5GVUiwzUaklwXeYiSEBFJ-rHJ4IAaFaztAAY_W41F0aEmzR25Lpt4UBML6OFY_2-KXRUCPHFJIiNtJoZCLTQPdWioi-HuEHU0ZFD-uabwmi5eYeU349I4ymAwemFz62Ki_wFcCe7ALdidHFBk0jwwQYv0qR9FoO_-klXGbIiBuLAw3mDm8RyO8GlNWdBX8MkiAwaNARuDvD8irCWsZx59kFGQoGB_z_wtuuNR047WcJTgMqBpY9kx6ZkVProxJCnas1Jtb7QYmzfMhu1ZjBgAX3BVX_IQw_bofWuof2RCJVwrA&h=MMJU4KBdZ1ttTXFMJTEIhXLyR-R4p2h7g23fuLTf6jc response: body: string: '{"status":"Succeeded"}' @@ -920,9 +810,10 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-74eeefe1-3ceb-11f1-8f64-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085439995522&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=RQPMAhrAMkIsw0MkCuwZx-YM7xJfUvyf16RHMJMAZQp8GqAd8SM3siSBR5yuIlU83pFSCnRNPigMJ_W-82PSA0v1AaM3beK1EOBL-i159x3ZNtR8fZg-OekOAzCwPdZ7QMnhLBiQxQgSOs6XlvWRMBJCE9sydLJ-AXJFVCSQeFd0qRB6vMctIoJAgzNYJ4oWxeUEwZlokUuTxvoTS-DqMNPnHD444E4ZMgDUFnVdDmC9d3_vv1OXdV0xOa3-PM_qq--jek-iDpKNKPzb45wG5w7pNnnT7GYij7AWSCBOuDL5H1Se_CQTn6_lGj3rcAX_TWF0pzXiJt26XnKS3Upg8Q&h=ZCLQACAoauP9P7u7VUgoYPqXMxBTgoEP79e4fRuKARY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-2bea138a-ace3-11f1-a9bb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195134201255&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=F_zVReeIzNqtwrBWMy8eHKtuqhtfPHrHFgu_3fBEI6As65lQXN2lQ0iaEtjD5xPoSvgNSBYRE19FyW8JDG-kjoxwpEo8SDbXggBIiX9KN1V2KSr9mNxlEiLaQ7BD_TnzeuT9MtO1kflPG5zns0DT6YjR2VlYy-hNGRxmSk3lUlX9JIVQClYYFRlTKzoTlPv2ZQzL-UUTR4SwHMHRDvOfhTncKnARpGvVyL6u5ShjNybTieWS3_MWNLLU-YLirbUGJN0mDpCOEB2zzjscaSuNHhHjie2YZUWampbqcWuwH_N6gBaL-VynIcGSWp0TynEMk7ckgNI2TSJATt92Ljxrew&h=c3xiy5ZxJgQi4Al8ErH8jqm3MyTHRGHEY7JCCtAfGDY cache-control: - no-cache content-length: @@ -930,7 +821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:23 GMT + - Thu, 10 Sep 2026 06:45:13 GMT expires: - '-1' pragma: @@ -942,11 +833,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/95308f27-8e3c-4355-940b-cb1b45e0f716 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f55ee36b-3af1-4bd9-8aaf-a7ec527d2222 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 57A19C4A2DC8451F8AD73B6D7560FF23 Ref B: BN1AA2051015009 Ref C: 2026-04-20T19:02:23Z' + - 'Ref A: 992E563911BC451CA96EFF42F0BF1618 Ref B: SYD281080710054 Ref C: 2026-09-10T06:45:13Z' status: code: 200 message: OK @@ -964,19 +855,20 @@ interactions: ParameterSetName: - -n -r --tags --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:33.1500742+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:02:11.6266639+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-20T19:02:13.0285407Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:50.2658749+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:12.2265326+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:45:12.5106184Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -984,7 +876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:24 GMT + - Thu, 10 Sep 2026 06:45:14 GMT expires: - '-1' pragma: @@ -998,7 +890,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9B4C0D8710074C27993F9524F1246801 Ref B: BL2AA2010204025 Ref C: 2026-04-20T19:02:24Z' + - 'Ref A: 0926EA1CF3D541C88475791ECCFB9658 Ref B: SYD281080711062 Ref C: 2026-09-10T06:45:13Z' status: code: 200 message: OK @@ -1016,22 +908,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '6375' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:25 GMT + - Thu, 10 Sep 2026 06:45:15 GMT expires: - '-1' pragma: @@ -1045,7 +936,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BF7C523477894C15BAC3B85970EC83B4 Ref B: BL2AA2010205035 Ref C: 2026-04-20T19:02:25Z' + - 'Ref A: C0E6E9E66288478CAFE64E778F4D7B17 Ref B: SYD281080706060 Ref C: 2026-09-10T06:45:14Z' status: code: 200 message: OK @@ -1063,23 +954,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:26 GMT + - Thu, 10 Sep 2026 06:45:15 GMT expires: - '-1' pragma: @@ -1093,7 +984,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5B83FF6F6DD1406FB0A42A23E2BDE474 Ref B: BL2AA2010204009 Ref C: 2026-04-20T19:02:26Z' + - 'Ref A: 24D7C62A7EF740A98037AA2A41E2968A Ref B: SYD281080706023 Ref C: 2026-09-10T06:45:15Z' status: code: 200 message: OK @@ -1113,9 +1004,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: string: '' @@ -1125,17 +1016,18 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 20 Apr 2026 19:02:27 GMT + - Thu, 10 Sep 2026 06:45:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-7df3461e-3ceb-11f1-acb2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085479346819&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=JXRsfIThpVbCRNDiRNtULAyZoTx9NZIAjq4vHPPmJDigOHXzfk26fqOMdwfQPmjjHx2kpdH2551YGCQpvZaghGcoQhV67_qmHsYNfB7Eh3JejyLEyD2s0RaSKovpU0stagxHwDCTANo9FRaKYFrCSDQccLF7A5N23gZIJQGv9tZRO-TsvdM-rqzjIfmQuZqoesn8yQFicrH1w2o4qzx9HotLWL_bNbxVo0YwgDqK-2YDBi7449cGp7zxPpbzdTQev4uWKEx8BpucxpPgelAJ0Uv0o_nmBXZmzxea74s7w8113-INX90AtrE8tUG68nBg1y5GO7vg4hQoqy_mEkzvBA&h=1bMUCS349XbGeb6JcuZq5WApzPco1xBswDb67FxKikI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-2e51af35-ace3-11f1-ad0a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195174502569&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Q_Le_535GprAZu8uuZGImobbgw_bD7y_792PFy8GeC9KaimY4iTD1bQdfVJmtccybheKLmaY-PudF5IBOodyjAjZQa2OkINtZr_BDvpm0tnhNA-UHtI6HDu_DOHG-HEAYtcZufsJS88YaZP51vQ_G9BaVC-OXl9xItK1OFQ2YBjhnQe1xY6Li3S6tF8X3S0Ov5YogEvQg3SieYBn3QEiIMkbL-YOQaE8idOxyYZ20zxuYGvsXBBgqlRpFyGXzMMUutCRv5FJ_F0UImvCxrTWGSJYRyIecgLITda5gLw-n4T75yELY7-z6VVKFJzyCKL60oRMC4g3TiJ5A137nWIXxQ&h=qZKsyIEqnxCk5h5bWFKqiCI4F1vVh6whnKiCfLzTohc pragma: - no-cache strict-transport-security: @@ -1145,13 +1037,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/3ea6369f-d755-4bf1-8af1-26b296dfe572 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5d699c5f-4dcc-4d31-a096-e7d2cde38aba x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: ADE6365F4441499DBCD7FEEB4ECFE0D7 Ref B: BL2AA2010204047 Ref C: 2026-04-20T19:02:27Z' + - 'Ref A: 3BE42AFB2F1E4917A87F0F283A874B0F Ref B: SYD281080709029 Ref C: 2026-09-10T06:45:16Z' status: code: 202 message: Accepted @@ -1169,9 +1061,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-7df3461e-3ceb-11f1-acb2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085479346819&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=JXRsfIThpVbCRNDiRNtULAyZoTx9NZIAjq4vHPPmJDigOHXzfk26fqOMdwfQPmjjHx2kpdH2551YGCQpvZaghGcoQhV67_qmHsYNfB7Eh3JejyLEyD2s0RaSKovpU0stagxHwDCTANo9FRaKYFrCSDQccLF7A5N23gZIJQGv9tZRO-TsvdM-rqzjIfmQuZqoesn8yQFicrH1w2o4qzx9HotLWL_bNbxVo0YwgDqK-2YDBi7449cGp7zxPpbzdTQev4uWKEx8BpucxpPgelAJ0Uv0o_nmBXZmzxea74s7w8113-INX90AtrE8tUG68nBg1y5GO7vg4hQoqy_mEkzvBA&h=1bMUCS349XbGeb6JcuZq5WApzPco1xBswDb67FxKikI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-2e51af35-ace3-11f1-ad0a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195174502569&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Q_Le_535GprAZu8uuZGImobbgw_bD7y_792PFy8GeC9KaimY4iTD1bQdfVJmtccybheKLmaY-PudF5IBOodyjAjZQa2OkINtZr_BDvpm0tnhNA-UHtI6HDu_DOHG-HEAYtcZufsJS88YaZP51vQ_G9BaVC-OXl9xItK1OFQ2YBjhnQe1xY6Li3S6tF8X3S0Ov5YogEvQg3SieYBn3QEiIMkbL-YOQaE8idOxyYZ20zxuYGvsXBBgqlRpFyGXzMMUutCRv5FJ_F0UImvCxrTWGSJYRyIecgLITda5gLw-n4T75yELY7-z6VVKFJzyCKL60oRMC4g3TiJ5A137nWIXxQ&h=qZKsyIEqnxCk5h5bWFKqiCI4F1vVh6whnKiCfLzTohc response: body: string: '' @@ -1181,11 +1073,11 @@ interactions: content-length: - '0' date: - - Mon, 20 Apr 2026 19:02:28 GMT + - Thu, 10 Sep 2026 06:45:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-7df3461e-3ceb-11f1-acb2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085488735941&c=MIIHlDCCBnygAwIBAgIQZiYkoV_LM7Hwt06_u_DzJDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQxMDA4MTUzOVoXDTI2MTAwNTE0MTUzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDealc9e2xWlYn0dX5zgxycoyRECfCn-ACb8WxKGmsKAA5yFa8bggPwuauZjSPSntq3xw99b6CFXZ6EM34WjxaWokZKYj8bbRT14WzrQHemPN5KUaI3SFtZidaSdEAzhm7Ha1a74SG8rDZU8qVqbaoCPQk9Iblv0LucrVV5BAMOwvi-5j-7X9vehxsheuxPwrVmGy_WrXI_3Qflmizp5BND_I3p4BIRjEcaQw_EBd3dhAC52EO5bT3FKSdM6N5xgpZvtjHjxRG2WG_8Gh07OrI0Ib0mnTB1_HNhiEw3_VzdnINXV0_Fsm7HMV-qCCkY5pyJIZjVX7L7FFY0PGqcqUKdAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSZIRQPs2If06iDFyiGbMnvIxenBzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQ2L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80Ni9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAxSvsyw-aQGPuLg3sIv-zDLSqhHgP__v9DGyP7D16rJpNG1JcjpiXpbloqD9RW5Gc_hHWn5Kyr1pRABJrFa-jEt89-FiQdkToF-vvwJOXbryAgZYdS03uFzUGqARs3JMMqCHrVkx6hb9oOxh_3JdEemO_dbhApyOVTfloO4kIRsgJnHI_ImFt8xm3xa9ftB0ARfJAdN_1EHgB2NdOgTvaSljVOnQY6R40lh_Wl8-s3GIhHbNwQOECXegBxeVAUVN5nGxlD8TEqKc_mX-22kBMao71zBz3JWtCING4-QzwrWj9pxmanpqYqiVGf40ZbZZihRkte0KI9zvW53Y2Smcy7&s=d4OjZiUzX7gs-xdSRcuKoyHAwK3m8RVkEh7r_YrPl9f0pe7EosxlcxAGORBA9HZzJ6oq2WwCSLfksoPHr-ZCaEnWfb8qJyorLEKP6Kckj63ffjgs0fECDNSxfO1MLumGuxDpCZFO-S_afL2d3PBdbdNSTag5tW_MsvEbmH3T3z_h4CuVO1V_vTrjRODIYaZgqAkd_Z2MJOcORvpmuBRVveE1HkTSxgHkoxuHHW5XT-Ld_sOAYd5IatOSs_G6YDRyD81HolQdynOSSFX3bj7w5bqpP7iVN4EGgYUAp4o2fSC6THtgPLfGnUq5hs2jCPZ2k3j_3DovNsJJkwvWaAlpqA&h=e-OK4cMJ2-MphN1g2-jRoaUFhVIwFeLI4I9Y6V1afog + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-2e51af35-ace3-11f1-ad0a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195186375157&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=Ns41-kGUtKgH2BLjU_ofG4I0KcGrMpJZukybk9-s7Ivyjq19okQfcFp8fRdszfdl4-ZKLEkkh2UxPAlw3usubZpVWW7LGWJJoOfXZKqU8uSDLqkv5YvsofZBVhBgPdf9rwE7d1GtAHmYgFK9KccN0zze5030gFvfSLJ_hW3fQzqPX6UXVUHdi4Rnl_6R2mKYzCMgcK2Uw2yhUeaW3WElheRvF9VfKPXgt4m42gB4QJP5xdvbRHVvpr1_IeDqpx0AODmhtGx6oRiniCBv-6koOWNv63EvBevzc-OtgY67yHXKpR9R286pCjngxydAPqcXUwJCC39Z0WOuQUP8VYwRZw&h=p6m9UBbm-zgSOPVivY36x6AaDvRuauWTEVD8n5SrA-M pragma: - no-cache strict-transport-security: @@ -1195,11 +1087,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/1eea7c75-0efb-4350-8419-c6a5cc2f66d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/fbf42513-88f5-4eef-8e02-755a9eef7691 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6B213E2160CD44A8B9D3B67637C827D7 Ref B: BL2AA2010205033 Ref C: 2026-04-20T19:02:28Z' + - 'Ref A: 402A035875154BDAB9EC47418AAF8AA3 Ref B: SYD281080709036 Ref C: 2026-09-10T06:45:17Z' status: code: 202 message: Accepted @@ -1217,9 +1109,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-7df3461e-3ceb-11f1-acb2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085488735941&c=MIIHlDCCBnygAwIBAgIQZiYkoV_LM7Hwt06_u_DzJDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQxMDA4MTUzOVoXDTI2MTAwNTE0MTUzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDealc9e2xWlYn0dX5zgxycoyRECfCn-ACb8WxKGmsKAA5yFa8bggPwuauZjSPSntq3xw99b6CFXZ6EM34WjxaWokZKYj8bbRT14WzrQHemPN5KUaI3SFtZidaSdEAzhm7Ha1a74SG8rDZU8qVqbaoCPQk9Iblv0LucrVV5BAMOwvi-5j-7X9vehxsheuxPwrVmGy_WrXI_3Qflmizp5BND_I3p4BIRjEcaQw_EBd3dhAC52EO5bT3FKSdM6N5xgpZvtjHjxRG2WG_8Gh07OrI0Ib0mnTB1_HNhiEw3_VzdnINXV0_Fsm7HMV-qCCkY5pyJIZjVX7L7FFY0PGqcqUKdAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSZIRQPs2If06iDFyiGbMnvIxenBzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQ2L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80Ni9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAxSvsyw-aQGPuLg3sIv-zDLSqhHgP__v9DGyP7D16rJpNG1JcjpiXpbloqD9RW5Gc_hHWn5Kyr1pRABJrFa-jEt89-FiQdkToF-vvwJOXbryAgZYdS03uFzUGqARs3JMMqCHrVkx6hb9oOxh_3JdEemO_dbhApyOVTfloO4kIRsgJnHI_ImFt8xm3xa9ftB0ARfJAdN_1EHgB2NdOgTvaSljVOnQY6R40lh_Wl8-s3GIhHbNwQOECXegBxeVAUVN5nGxlD8TEqKc_mX-22kBMao71zBz3JWtCING4-QzwrWj9pxmanpqYqiVGf40ZbZZihRkte0KI9zvW53Y2Smcy7&s=d4OjZiUzX7gs-xdSRcuKoyHAwK3m8RVkEh7r_YrPl9f0pe7EosxlcxAGORBA9HZzJ6oq2WwCSLfksoPHr-ZCaEnWfb8qJyorLEKP6Kckj63ffjgs0fECDNSxfO1MLumGuxDpCZFO-S_afL2d3PBdbdNSTag5tW_MsvEbmH3T3z_h4CuVO1V_vTrjRODIYaZgqAkd_Z2MJOcORvpmuBRVveE1HkTSxgHkoxuHHW5XT-Ld_sOAYd5IatOSs_G6YDRyD81HolQdynOSSFX3bj7w5bqpP7iVN4EGgYUAp4o2fSC6THtgPLfGnUq5hs2jCPZ2k3j_3DovNsJJkwvWaAlpqA&h=e-OK4cMJ2-MphN1g2-jRoaUFhVIwFeLI4I9Y6V1afog + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-2e51af35-ace3-11f1-ad0a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195186375157&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=Ns41-kGUtKgH2BLjU_ofG4I0KcGrMpJZukybk9-s7Ivyjq19okQfcFp8fRdszfdl4-ZKLEkkh2UxPAlw3usubZpVWW7LGWJJoOfXZKqU8uSDLqkv5YvsofZBVhBgPdf9rwE7d1GtAHmYgFK9KccN0zze5030gFvfSLJ_hW3fQzqPX6UXVUHdi4Rnl_6R2mKYzCMgcK2Uw2yhUeaW3WElheRvF9VfKPXgt4m42gB4QJP5xdvbRHVvpr1_IeDqpx0AODmhtGx6oRiniCBv-6koOWNv63EvBevzc-OtgY67yHXKpR9R286pCjngxydAPqcXUwJCC39Z0WOuQUP8VYwRZw&h=p6m9UBbm-zgSOPVivY36x6AaDvRuauWTEVD8n5SrA-M response: body: string: '' @@ -1229,7 +1121,7 @@ interactions: content-length: - '0' date: - - Mon, 20 Apr 2026 19:02:39 GMT + - Thu, 10 Sep 2026 06:45:29 GMT expires: - '-1' pragma: @@ -1241,11 +1133,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/ddab71ae-7b06-4ab5-8da4-16b5ac030c58 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/3d74962d-e519-466f-9107-6bdfdc1bce78 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DDF50F1866434B7CA2B656AEA7F0EB90 Ref B: BN1AA2051012051 Ref C: 2026-04-20T19:02:39Z' + - 'Ref A: 5020508F8CBF41AAB561E62068A89294 Ref B: SYD281080706031 Ref C: 2026-09-10T06:45:29Z' status: code: 200 message: OK @@ -1263,22 +1155,21 @@ interactions: ParameterSetName: - -n -r -l --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '6375' + - '2213' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:40 GMT + - Thu, 10 Sep 2026 06:45:30 GMT expires: - '-1' pragma: @@ -1292,7 +1183,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 74D2DE6B8FE5480C9AAF851C6D692E42 Ref B: BN1AA2051015025 Ref C: 2026-04-20T19:02:40Z' + - 'Ref A: 4701C7E8AB3F483CB307F1CC87BFC698 Ref B: SYD281080709023 Ref C: 2026-09-10T06:45:30Z' status: code: 200 message: OK @@ -1310,23 +1201,23 @@ interactions: ParameterSetName: - -n -r -l --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:41 GMT + - Thu, 10 Sep 2026 06:45:30 GMT expires: - '-1' pragma: @@ -1340,7 +1231,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0838ED7EFE6B4FCBAFB1DD185D207D2A Ref B: BN1AA2051012017 Ref C: 2026-04-20T19:02:41Z' + - 'Ref A: 1CBA7360D2AF476686E1BBDCBFCCB305 Ref B: SYD281080708029 Ref C: 2026-09-10T06:45:31Z' status: code: 200 message: OK @@ -1362,21 +1253,22 @@ interactions: ParameterSetName: - -n -r -l --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:02:42.8375688+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:02:42.8375688+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-04-20T19:02:44.4005655Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:32.4060038+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:32.4060038+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-09-10T06:45:32.9202496Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-378f07ce-ace3-11f1-a160-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195331871933&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AmaTK80ZGAaNLEya251XTBIyW-Bk7JYmy7FjwWXB7MqdT_ag8oWXzM_7mZrR3qZK-GZNnfY9Wg2XH7iRA7KPTzAfJuLuxnabtYvwqxj8ci5TfU32ZBbobU1cTciIAvSVlzk8tmCfS0LqCb9nHFj-rzVxat_csf-17KKB7YHYDkXcZikTlG6C5CqSJMZb27zEYul-fMzCBzApNfU4ShVw2BiSCFERLQyk_k5bCJHOaqMMrAV7g_ib3Ov6ceaCCfN43MyLsCeT12YmnmwVpLfe2J29uW5cqi4XIo1jbc5Aa8eczphvFMXHFI90sx5QS52iXkS3IJZ223vGGNQ9uy_Z9Q&h=k-3Eh7fm2Csaz5gQewvJG14ISbtBlWtUe2jdEsdtlqI cache-control: - no-cache content-length: @@ -1384,7 +1276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:44 GMT + - Thu, 10 Sep 2026 06:45:32 GMT expires: - '-1' pragma: @@ -1396,13 +1288,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ee25085a-4be7-476c-92c2-cd8030e8ce8c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d1016bba-1296-4720-966c-d591284f9d1f x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4045B774BA1C4CF1A5BB2243BB9AD6C9 Ref B: BN1AA2051015019 Ref C: 2026-04-20T19:02:42Z' + - 'Ref A: FD3456AEB5124B0DA51699E182759828 Ref B: SYD281080712036 Ref C: 2026-09-10T06:45:32Z' status: code: 201 message: Created @@ -1420,9 +1312,9 @@ interactions: ParameterSetName: - -n -r -l --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-378f07ce-ace3-11f1-a160-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195331871933&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AmaTK80ZGAaNLEya251XTBIyW-Bk7JYmy7FjwWXB7MqdT_ag8oWXzM_7mZrR3qZK-GZNnfY9Wg2XH7iRA7KPTzAfJuLuxnabtYvwqxj8ci5TfU32ZBbobU1cTciIAvSVlzk8tmCfS0LqCb9nHFj-rzVxat_csf-17KKB7YHYDkXcZikTlG6C5CqSJMZb27zEYul-fMzCBzApNfU4ShVw2BiSCFERLQyk_k5bCJHOaqMMrAV7g_ib3Ov6ceaCCfN43MyLsCeT12YmnmwVpLfe2J29uW5cqi4XIo1jbc5Aa8eczphvFMXHFI90sx5QS52iXkS3IJZ223vGGNQ9uy_Z9Q&h=k-3Eh7fm2Csaz5gQewvJG14ISbtBlWtUe2jdEsdtlqI response: body: string: '{"status":"Creating"}' @@ -1432,9 +1324,10 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085657468894&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=m_0RiTFudMefu3IZHai9p1UWPs29JLwbl_plPqt1r9vcKkDrEqXV6CLqMPEQ-mXtLFfRUVK9BhafBBCk0Evxiqk-f3k02GUEw_32nCnB0aT3OKzqX60TPJIakKAf3aWezSrwD4Kv1OAVUpDgKh1SezEs0VY2f4R0LbVCrQWHGOCUdNVlsiFOhiGb1OLbeJa8ZS3N1XJrfPo3UX0vWfwVG_0tv0uCYRhHU7do16FGn_Pz6xxsGlmOkCcncP_8hpzcvUWuMe-tHcFrIhGhslOFHXV_oQLRiWfEFyhTpioOQmml-srBVsC_INdHCExuV1V8ux-Mupy0GUIggL9ziljqtQ&h=Y7wugWMIGaUHFXYKjgI9WPyj_Yg6ENEq4c6nj5bpmZc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-378f07ce-ace3-11f1-a160-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195341344544&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=p-udOE5CZ63xo5MOwFZ494DouIKBxd5w1uhKaTMggTSL6tPAjVJN1ydsUB_3dCxbsGFShFxQDJv4UNBMwYKO-wCeQIOJI4liVbwMtA6XXe57o818AyQC5kk-vlrgmm1okOkLm-GJhGG-YV9--WzgMFqmiIEGlZhTLgdrjZz9kIeN6tkmvXIfU6gE_6gMZLmRlwNGzzG0zIiVHiVJJrDKuyou0jmDFStgLCxy9bQBkaJGR6cGUuIqmM5qTezmWpkWIu5vU8w0MgWioKkRRx3KvTjg4wqYe1osDRKEzx5LqxUccX9t3C-6hcY3P5VySE9idTCndAgpb4PIU9oO0X_Hrw&h=qZGF50lpdS6l_a2Nk9e3EHPUa7wL1iNsbc9XfMxVqu4 cache-control: - no-cache content-length: @@ -1442,7 +1335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:45 GMT + - Thu, 10 Sep 2026 06:45:33 GMT expires: - '-1' pragma: @@ -1454,11 +1347,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/1ae998f7-f87f-4a13-bc36-0c37955862e3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a4f6575a-9b79-4100-970e-a2c501845d51 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 017165DE1E6E487E97B2436FA512DC6A Ref B: BN1AA2051012027 Ref C: 2026-04-20T19:02:45Z' + - 'Ref A: 8C40BDB3F33E4584A507F51ABBE53DCF Ref B: SYD281080706036 Ref C: 2026-09-10T06:45:33Z' status: code: 200 message: OK @@ -1476,29 +1369,30 @@ interactions: ParameterSetName: - -n -r -l --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-378f07ce-ace3-11f1-a160-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195331871933&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AmaTK80ZGAaNLEya251XTBIyW-Bk7JYmy7FjwWXB7MqdT_ag8oWXzM_7mZrR3qZK-GZNnfY9Wg2XH7iRA7KPTzAfJuLuxnabtYvwqxj8ci5TfU32ZBbobU1cTciIAvSVlzk8tmCfS0LqCb9nHFj-rzVxat_csf-17KKB7YHYDkXcZikTlG6C5CqSJMZb27zEYul-fMzCBzApNfU4ShVw2BiSCFERLQyk_k5bCJHOaqMMrAV7g_ib3Ov6ceaCCfN43MyLsCeT12YmnmwVpLfe2J29uW5cqi4XIo1jbc5Aa8eczphvFMXHFI90sx5QS52iXkS3IJZ223vGGNQ9uy_Z9Q&h=k-3Eh7fm2Csaz5gQewvJG14ISbtBlWtUe2jdEsdtlqI response: body: - string: '{"status":"Creating"}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085768000162&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=qZvDfE5u_88Omtu7J6BLpd5aKviAQW9Q4laRrB5j9HKEP23Vlvpu1zWas9l91k-iwoqodpvPFWp73s-SDghgVn1fBZST-6uAxrTE2hxntL7Y136E2TRYPsHJLIKm7HAqMiKMGdDAW7GhKfrCpKKjMqj0-lKTJDwvpb1sVWTFqw7o-C1Cmy-xC_XlcGODKpn-YI7nhlGcv38xmwLiHxgOaF_gaBi17t7O28c2NyOSUAlHoz5A5I08PQgBrlJgsCKvC9y1U3GcQSJh0BW53Mu3r9KqvxD0R-CJZtKJQaVs4RIGJA1DiTKZ-XUKj7AedJiYBLYAetH267zEWkUKMyoOsg&h=vAfAmcoXwzuXfljBkYkHoX2YxqjOszfiTTOVWmdsYOc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-378f07ce-ace3-11f1-a160-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195452130353&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=K1LYziwkUX9IxGHKVouPjZPbnTCAR6ky0qdZ1FtSs9W23lZgl4P6SHkb198t4B7eJsow0aw0hoiLZwuT2QsJLLLoXwZUqSwjN35fd2bIiOEtXMFlCil8KTUzttIQma1qhE7bBcbb65c2ttevJmoSh_zsbJlonMmqw24U2gMtNJCgYKCBsuHqQUT4AxZSFs-PbEif6MiGxliorF4mvUl75McUtjSj5eAMwhPLUuwS_P-1IhVAChrRYXh1B3JMLAMDzTVwEauw-o-5xdUbWRQcCLLCmVClRgDQN1P3LCZefK39vUrjplET23GyV06cRXLzjATpUlPFkOQJ_lY6u94J1g&h=aAumayXlRjRBBO74AkcGRvYKzjkgmxItf_mgoaPEr48 cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:02:56 GMT + - Thu, 10 Sep 2026 06:45:44 GMT expires: - '-1' pragma: @@ -1510,11 +1404,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a9eab572-efd5-4075-a019-ff58d323e803 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/baa0b390-2d44-4200-b525-e9643bc26a96 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 40554F3AA319437A9939E9E56BEA27F7 Ref B: BN1AA2051013037 Ref C: 2026-04-20T19:02:56Z' + - 'Ref A: 16515222087C4764A17CA5B92B5F542F Ref B: SYD281080709029 Ref C: 2026-09-10T06:45:44Z' status: code: 200 message: OK @@ -1532,29 +1426,28 @@ interactions: ParameterSetName: - -n -r -l --global-endpoint-routing User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:32.4060038+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:32.4060038+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:45:43.1208Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085877751912&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=MGUZ7LlVUiXwFqIEb5RrDNFRlzFKRp_Qm2kxRCZtWxOKZs-ebQXlaYb840XtwXSpkqc8ES8zsoEdLrmYb2_Gs3yNNb4DYHbKRGqI5zWBs4rj7nKCRma59Tb7Pci9oYtcAHm1d__nKihe0pNJdVXTwK9WDl8VuiUs8i_N1LGl4zApEsO6bAWuTuZb25HWoWWCJjTm_aL2ZPUprF3MPsx8nLWl0f86y_QaKiaxnXleGYM9kulEIO0Xx-vW-gx2kNrfGIHbogJgnXaJerJLrsewS7JSjlA64QFqn17RQ3K2ioAfl4h5rRZ6nrZQ3Wxp--Pci19ldhV3RSSD3QkCqHAluw&h=TP-BdMLhn0nq-7HdIYjsrqbwloqUshyihqTDaWkrxiU + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '21' + - '704' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:03:07 GMT + - Thu, 10 Sep 2026 06:45:45 GMT expires: - '-1' pragma: @@ -1565,12 +1458,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5e9b5ca2-303c-495e-a2e4-e9637ddcb9ae x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 89B9E28601CB4471A322987330177027 Ref B: BN1AA2051015029 Ref C: 2026-04-20T19:03:07Z' + - 'Ref A: CA6C9F15E2C34A678646F300A73DFA8C Ref B: SYD281080712040 Ref C: 2026-09-10T06:45:45Z' status: code: 200 message: OK @@ -1578,39 +1469,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr replication create + - acr replication delete Connection: - keep-alive ParameterSetName: - - -n -r -l --global-endpoint-routing + - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"status":"Creating"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg74yxwlelgvgocntdq2p5scchnfxkrl46u2ex6mihbskvefz57kbasm2ku756xzucu/providers/Microsoft.ContainerRegistry/registries/cliregtf5dlwoq3uvjif","name":"cliregtf5dlwoq3uvjif","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:40.0019273Z"}}]}' headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085986751928&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=kKKG5qDTLVqM9wwFhpcesk4a_dDWCyu6VLnqb9gNW1hc_00PUkr7dHkxmQWsoYjfJEx8_RGW83VMusRI5iUrdHJefXPwmXkONzVU8QgWFK1XU6UE1HH_9aVlJlODBgSg4Mr-lRUtG35klet3IiIFP81WDEUu0D12col6Uh8NKWxQcQwgYvBnVH37r5N6kcxFcm9MwlTpOjKxb20IgPYFozF7RyzMF_Yg15VmBAwgquHlAelSp2tylo40zJ5BOT_JajZ7DhdvkmAi2MRORykI7vqp0xyD8UKrF5iEHHr22Nx5UIleWEMTQ2WzFRdaDkVuQugVSL0UEvHu8crP6Jp-Lw&h=XLpD8i7OKAZsxjCRHaUB7vPTiuviHpBShQWF_axOATU cache-control: - no-cache content-length: - - '21' + - '2809' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:03:18 GMT + - Thu, 10 Sep 2026 06:45:46 GMT expires: - '-1' pragma: @@ -1621,12 +1504,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/43fd9a29-3d0e-4837-ab7d-a92765e853b5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9510F7670D2D4DD6B2D05B0CB74F374D Ref B: BN1AA2051012021 Ref C: 2026-04-20T19:03:18Z' + - 'Ref A: 0FE5F3BE001545D9A8CC3B60D31D295B Ref B: SYD281080705031 Ref C: 2026-09-10T06:45:47Z' status: code: 200 message: OK @@ -1634,39 +1515,33 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr replication create + - acr replication delete Connection: - keep-alive ParameterSetName: - - -n -r -l --global-endpoint-routing + - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086097518476&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=j81K7ATa8xAqM4YuZc5Cxlc4kl9zPnMpD0nB3IPSsKHtp8uQRVj8_UPX-m1mRT45Yq-1bX91msYWupL9o_6_LUlI0B34FOLjjZqpoORn0XsDu3iYNo8DA1SoKLAF8YiZSj7oEN03bdO699W_GZu4kultYeht4d_yJTS38plr1WXQYwMgThejc692sEX4Tp4ijS-_86yKMcZzlJjOzCVRdTmWAJhmcOagVVsqiN1R1zqaNsqwpSg5ey6qHIcqduD_pCD7iLpp2h3RpsAXbprUwiomdF5cUUGxo_yEbV7GSR7m0i8A5TiA0qOnv1N5B_Ax8-0ncXeNFBS9CkJWmDr8Gw&h=SvO1_lLqXpx3x6f7hCice4fK80wmnS3tRwGbl114co8 + - 2026-09-01-preview cache-control: - no-cache content-length: - - '21' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:03:28 GMT + - Thu, 10 Sep 2026 06:45:47 GMT expires: - '-1' pragma: @@ -1677,12 +1552,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/7efd9c04-00e2-4740-872e-a73e5bcfdf51 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F79C931F56F043409029FFAAB6331762 Ref B: BN1AA2051014009 Ref C: 2026-04-20T19:03:29Z' + - 'Ref A: 59F276E1D76846D19E52ACE14B2DA3CA Ref B: SYD281080706060 Ref C: 2026-09-10T06:45:47Z' status: code: 200 message: OK @@ -1694,37 +1567,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr replication create + - acr replication delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n -r -l --global-endpoint-routing + - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-09-01-preview response: body: - string: '{"status":"Creating"}' + string: '' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086218184861&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=qxDAX9X0pdoDmRyGno9hEzy1nVq2lLTseklmANAgPWdssLOgbN5niLXAbEDm3YBRlz2k_wuQbtrP1jypQUGeZ4704R1GHjnvmRBXP9U-tsYe0NIHokSRQiPtju5MmWDNmKs5IR55qCtsqCupyFFjwdchb7JwbZxDY9F3IGaYe-Dy5eCShcfCmCHJuKPgpq25iJWyfgh-fwyYXbc8ljTj3dxMV_nYTwIs6SdsGD1ePSoZLPwwKPTulHB_t6DJyc5LVpaK_c1LEVQlzvTTSpy-ZkxKET9X1GCcxS9wVBJEZm4FTeWhJR0Fo5uj83gpjIFcUcn8G5cUGbjOqo9FfsG0fQ&h=WFTxe6zBruZEsWAZvmGs5G-jBblX0PjoJyYzQaSQs_s + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '21' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 20 Apr 2026 19:03:41 GMT + - Thu, 10 Sep 2026 06:45:49 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195495056075&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=U2QaPvZelaTVaXLMLSLUpCPHdKZ62-rRGTKKgls6EJnLOtU8WNgUJFsUR7OTJRiRZHjP7wLgXvVjSGvxZ5stra2af8aJP5Y8meViwxcsOslo5TP-z3FBsgegeuFM529BHkNT1gH9opqfD1L-a-zCGYW0y1epCgrZj8asT-b96O6uvv6I_2kcFnNUxS8PhCxdJYrbdqF0ZoKm-wZ5XXhs9YobUpD0AQpinSlkJlpy9Q-N1t97bZoH9dqjWfHx3VVmZxwXFVFwzB_R6GAWgeP05dvitjIAmrjaCsZ-3o8JgSGqgNfu3El662zc92RD4JnzS4nsQE6cmtgk1zWv4uQ5eQ&h=r9D0ryxm8QVSqoVbjkJIPG9DQOr4BTCPObH8-3_8jOo pragma: - no-cache strict-transport-security: @@ -1734,14 +1608,16 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/520c7729-3593-407d-8b88-1f0709dacbc8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6d48f081-8285-40f7-a2ae-4a4fb9019c8f + x-ms-ratelimit-remaining-subscription-deletes: + - '799' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '11999' x-msedge-ref: - - 'Ref A: 274DE8DE7FA648EFA3B6DF4787A7A6DD Ref B: BN1AA2051012019 Ref C: 2026-04-20T19:03:40Z' + - 'Ref A: 8CF156CA71334BBD881509F442BC350D Ref B: SYD281080708023 Ref C: 2026-09-10T06:45:48Z' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1750,37 +1626,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr replication create + - acr replication delete Connection: - keep-alive ParameterSetName: - - -n -r -l --global-endpoint-routing + - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123085647282071&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ee9BdVayKzstUoPA22HPJtY5l9h4roaDRQ0_cz-xz2WL8FXRPEID-iFd4gcWa0NhS4I5bhjbu98-VRsuefWnoo4k5jEnibV7G_UWAAeIK1jO4Y-UMcORx8x4Yh_LvNiIMcidEIBWCM8JtNx7pvBGGbpgCMGHstc5XPfNlpAL3f8Wllww7fh_4MlLs5jf6IDGRNAS3DUTcv4Faf4CXCA9cXu0ZHreQDuNih-4UWkRPb0JDT4eF29CKcXaozqZ-d4lDRwAKK-2snRfgrdpU5SaDzDvnVIFX4xM5nuNFonoLJY8VDPFe_vOcq3qWK4tXBwLdW62RhUrk3xmZp_51FKg0Q&h=tpyXrSxFCtrfVtuWLcqmlqD8cBxiUVIudIJywAZ4JmM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195495056075&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=U2QaPvZelaTVaXLMLSLUpCPHdKZ62-rRGTKKgls6EJnLOtU8WNgUJFsUR7OTJRiRZHjP7wLgXvVjSGvxZ5stra2af8aJP5Y8meViwxcsOslo5TP-z3FBsgegeuFM529BHkNT1gH9opqfD1L-a-zCGYW0y1epCgrZj8asT-b96O6uvv6I_2kcFnNUxS8PhCxdJYrbdqF0ZoKm-wZ5XXhs9YobUpD0AQpinSlkJlpy9Q-N1t97bZoH9dqjWfHx3VVmZxwXFVFwzB_R6GAWgeP05dvitjIAmrjaCsZ-3o8JgSGqgNfu3El662zc92RD4JnzS4nsQE6cmtgk1zWv4uQ5eQ&h=r9D0ryxm8QVSqoVbjkJIPG9DQOr4BTCPObH8-3_8jOo response: body: - string: '{"status":"Succeeded"}' + string: '' headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-86dbe526-3ceb-11f1-ae2f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086329122371&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=IGZKOauE53Fz0frLderDnN14-Pjyps4M9Z7rUJJVjXiKnNQJ9nlxUfdy13JdoWv12Hi9PTSUxQyfBvrjzHn5z4m_NsFhn3jZSIZOAalo8j6rrFNO377PJT0OnHf8Nu27z4-50ztOZvDOAcekXsgtbZsQR2YyX6_OU6rNNJ3oPC3fWSXQXOBy3nP6HcVuQekODjgr2n2En-bXqD630tT81Mrncrnfz3ju8MNmA4HBvvxIBC-gzacr9sRZqj2HdByw8ov3QJd8wq6KzXlxvdCWsHiw28FrdPy1ay5R33cTnCIgRAx-ZBslO8T5_F7FfpRtqg4HtitK8QPrJ5fYeOtNpA&h=hvID2w2qjJovSiitTNNv7l4Aqe3HFPEsK7fG5p8dNP4 cache-control: - no-cache content-length: - - '22' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 20 Apr 2026 19:03:52 GMT + - Thu, 10 Sep 2026 06:45:50 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195509366971&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=peMi7yO2_2wX-ugBxah3GUjobI2Shd7KksUYa7fEd61_WT-KGT30VPfUxlvn9TDN-Vz_HHYtpE_NIV2VUZj4hcVaZG5yjrrRy9NBxMoQ_Z8AhzV7aUtEenSi3ZQXzEwTZu_cI7IUk5L7iQJVBrCgiDXqKKGDsVuzUU8Dap0RSkuVFjC1Rm6BlokGo5OuIYnxJghwN55zCPJHVMH7ZYUr_xMK9Omb4pV5HehzwCi6JlnGxG4NRBxpclH_Q-kwwUbs-hRFcj_qHi2vNhPX3OnBHKrCCA3nC_L7i9jUHCYY0cY0YrXoIHfDnjuD-pCBJPri5qyaOrofsfYOTqTkklsDcA&h=m6o5rWaGuUEfYjnOQm2iblJweEff5eauazlcNZYoMVY pragma: - no-cache strict-transport-security: @@ -1790,14 +1658,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/53001ec5-1f49-48e9-afbf-4cd8d296d034 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/ee097166-fec2-44e4-9b2d-5adb0fef9d0d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C7A8D6339A8F4B96BD33C0AF33185E3A Ref B: BN1AA2051012021 Ref C: 2026-04-20T19:03:52Z' + - 'Ref A: 2206CF7B8BDD4F7D84A60A83FF03F7C8 Ref B: SYD281080711036 Ref C: 2026-09-10T06:45:50Z' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1806,35 +1674,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr replication create + - acr replication delete Connection: - keep-alive ParameterSetName: - - -n -r -l --global-endpoint-routing + - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195509366971&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=peMi7yO2_2wX-ugBxah3GUjobI2Shd7KksUYa7fEd61_WT-KGT30VPfUxlvn9TDN-Vz_HHYtpE_NIV2VUZj4hcVaZG5yjrrRy9NBxMoQ_Z8AhzV7aUtEenSi3ZQXzEwTZu_cI7IUk5L7iQJVBrCgiDXqKKGDsVuzUU8Dap0RSkuVFjC1Rm6BlokGo5OuIYnxJghwN55zCPJHVMH7ZYUr_xMK9Omb4pV5HehzwCi6JlnGxG4NRBxpclH_Q-kwwUbs-hRFcj_qHi2vNhPX3OnBHKrCCA3nC_L7i9jUHCYY0cY0YrXoIHfDnjuD-pCBJPri5qyaOrofsfYOTqTkklsDcA&h=m6o5rWaGuUEfYjnOQm2iblJweEff5eauazlcNZYoMVY response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:02:42.8375688+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:02:42.8375688+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-20T19:03:53.2624836Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '' headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: - - '707' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 20 Apr 2026 19:03:53 GMT + - Thu, 10 Sep 2026 06:46:01 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195624782803&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=39yH5qwbWB10irtLa2ZXRv4Dt1bMusOdgXI474kxq07f4pQUr1lDcPdoCD_pQAqvjJWGbhYt8EkFB5wWZw3nzDwDtjg2DLr346EVVtToD4lHnH6Z2L3ikMyJQ70H6y6i_gRvlvdsSB7ZOxtJcF4-R4Tb2QpqQRBP66qiB6yeGqj62-STeolqRFUpywW9T9uz2Gi6XTKseDUralPzDBVB9as43cQfCKbdisV4MZFFd9TGSKmgB6anOBmfLvYZh5Ep1OS5fI72_GbWZGS3k-Ao59oWbWpjWCirbIi6k1GzPhmePRmtjKjGDYuhKhykvMJKkAhrWyLveOL2IUcylKsvew&h=l4se7Palo3zNeU4n9r0fYWPBQDyYIrYVMhLc-SJOOVY pragma: - no-cache strict-transport-security: @@ -1843,18 +1705,20 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/8c2f5b03-e6af-467e-bc36-fa81c587a8b4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3B58D92EE02E4359AED9A7D40C176007 Ref B: BN1AA2051015025 Ref C: 2026-04-20T19:03:53Z' + - 'Ref A: 7E85BF45867E470F994F7E7B009D519A Ref B: SYD281080711054 Ref C: 2026-09-10T06:46:01Z' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1864,24 +1728,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195624782803&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=39yH5qwbWB10irtLa2ZXRv4Dt1bMusOdgXI474kxq07f4pQUr1lDcPdoCD_pQAqvjJWGbhYt8EkFB5wWZw3nzDwDtjg2DLr346EVVtToD4lHnH6Z2L3ikMyJQ70H6y6i_gRvlvdsSB7ZOxtJcF4-R4Tb2QpqQRBP66qiB6yeGqj62-STeolqRFUpywW9T9uz2Gi6XTKseDUralPzDBVB9as43cQfCKbdisV4MZFFd9TGSKmgB6anOBmfLvYZh5Ep1OS5fI72_GbWZGS3k-Ao59oWbWpjWCirbIi6k1GzPhmePRmtjKjGDYuhKhykvMJKkAhrWyLveOL2IUcylKsvew&h=l4se7Palo3zNeU4n9r0fYWPBQDyYIrYVMhLc-SJOOVY response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '6375' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 20 Apr 2026 19:03:54 GMT + - Thu, 10 Sep 2026 06:46:13 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195738770586&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=NPT_k9HxopV3gbC8t1h0hBLpUCKP0Z0pq4dZG9FpqXCJj7UYK-sEfWJN9xpIs4srV4RlthJjaPIrPH7xhRvAVLMPJTIiNJJ0570Bm7KTPuq-Yt6LcDOMSfhQsl2oqn8-G7u5YLt4ANnAK32PQ6NzKtwEeVrqPbbmTR9OYWWMDgxBH6O6TO6UIVdGpbbrESlJd6WrC4Yaji5ziXI77xMM55WSiadfm6yCl5rX3v643Z_iat0Hm4HraC4NgUMjB_epyZDk_9sy_MlWpCWkSAMVpM6hnzuVrhHoZRLZUfAIDLOtY6_gC_YX-Gb8MuOJMNZkxpbgtg_4gIu06PGXRPo0Gg&h=XsYhKkKFDLY2E12vVsJyQKWEke7etKj8BgzeIJfEQWM pragma: - no-cache strict-transport-security: @@ -1890,18 +1753,20 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/8782c34b-e966-49d4-ab2e-1b540b93e936 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E37F17C5E9004A8BBF69ABA32757606E Ref B: BN1AA2051014017 Ref C: 2026-04-20T19:03:54Z' + - 'Ref A: 06AB649954A6429DA515654EBE960CA7 Ref B: SYD281080708025 Ref C: 2026-09-10T06:46:13Z' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1911,25 +1776,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195738770586&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=NPT_k9HxopV3gbC8t1h0hBLpUCKP0Z0pq4dZG9FpqXCJj7UYK-sEfWJN9xpIs4srV4RlthJjaPIrPH7xhRvAVLMPJTIiNJJ0570Bm7KTPuq-Yt6LcDOMSfhQsl2oqn8-G7u5YLt4ANnAK32PQ6NzKtwEeVrqPbbmTR9OYWWMDgxBH6O6TO6UIVdGpbbrESlJd6WrC4Yaji5ziXI77xMM55WSiadfm6yCl5rX3v643Z_iat0Hm4HraC4NgUMjB_epyZDk_9sy_MlWpCWkSAMVpM6hnzuVrhHoZRLZUfAIDLOtY6_gC_YX-Gb8MuOJMNZkxpbgtg_4gIu06PGXRPo0Gg&h=XsYhKkKFDLY2E12vVsJyQKWEke7etKj8BgzeIJfEQWM response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1665' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 20 Apr 2026 19:03:55 GMT + - Thu, 10 Sep 2026 06:46:24 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195849884651&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GYEoMdxTgeSsADBawQYy3OvWQyiODOWV9Rr9jf9XLrjm7H58KZBNbdUiCktD8kAGxgm64I6vGnUgxGOi4gc2uuc0pu9XE7PyaCpoAqnW7O5pe045o24zdo2xSA2s4DL4JvGKj3aSHLQF-mUr7u-joUvw3XMxuV7eea9CjGbwCgd9zViqENXBvgnu9diOc74OQHTSoHiEyT13-nvJDnUgdyA6LLkgfDwrOHkh6AbY9jGtK-vfn-_g5Hbf5kkn7tE8tx2dzQJ4JAqDOeCh877fOWUPZFidYyEpciOwF20m26m38b7KPGQsXOq4j5r-mZ59p34QSOCHL0yGbQ2b7DB3Vw&h=0aHLq4SwnRdmjxX5_gtXcyVPfkdsOZb8un7T0NOsNgg pragma: - no-cache strict-transport-security: @@ -1938,13 +1801,15 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/65cba887-b223-454c-8e83-88da25e7fdfe x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 173F2E55E130474087F887F0479AA0D2 Ref B: BN1AA2051014021 Ref C: 2026-04-20T19:03:55Z' + - 'Ref A: D1382C20EC394464AA49548B25669053 Ref B: SYD281080711062 Ref C: 2026-09-10T06:46:24Z' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1956,34 +1821,26 @@ interactions: - acr replication delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2026-03-01-preview + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195849884651&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GYEoMdxTgeSsADBawQYy3OvWQyiODOWV9Rr9jf9XLrjm7H58KZBNbdUiCktD8kAGxgm64I6vGnUgxGOi4gc2uuc0pu9XE7PyaCpoAqnW7O5pe045o24zdo2xSA2s4DL4JvGKj3aSHLQF-mUr7u-joUvw3XMxuV7eea9CjGbwCgd9zViqENXBvgnu9diOc74OQHTSoHiEyT13-nvJDnUgdyA6LLkgfDwrOHkh6AbY9jGtK-vfn-_g5Hbf5kkn7tE8tx2dzQJ4JAqDOeCh877fOWUPZFidYyEpciOwF20m26m38b7KPGQsXOq4j5r-mZ59p34QSOCHL0yGbQ2b7DB3Vw&h=0aHLq4SwnRdmjxX5_gtXcyVPfkdsOZb8un7T0NOsNgg response: body: string: '' headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 20 Apr 2026 19:03:56 GMT + - Thu, 10 Sep 2026 06:46:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-b2f976fa-3ceb-11f1-b81f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086370598433&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=Zj0dq6EASn7NJvQhXRNZNrmknWvgn7JKAllXMk4VpcqUtcFD5iBkwxlv-XMCAIpeHo04MWP5dXh5HVsklE0NUefhL87i1Z6UYbjGCjVqW3ajwCnkZsU4gYBR9TUcnwbpkULCuvECluUDdIvkflI-_b4z8UgAfP7K_ZOMf2eFEu2NA1_abQtTdJObZhcsgcv9vDYn3kgi0aoyA_jJClyxxODEb7zeVYxJkpEfHPoeNq8cNwnCZS3Yqs2XfPYSYhLl_rpjmquc12qfu1Ch0nF31oCyBnFvlGwGbmhG_kAZZIZW8a1sExFhnqDNvmNGhq6nav3Rnp5evTQp0Asvr3lXGw&h=UymQiLgk3rpAF4oDiGvejFMRuTqXKkkaDG7mDb2eep0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195963046712&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Tr_BS1ZW4xn36_pX-Sx7o2GC5ybLrfBqxWzOIFXM5twMch2V9ww2jQ8zQ4GqXuvaSQlpb4bv3-g7ps9EN6qCH9J5l9ER3uzPMZYYMhj1CE_N1dYXZ5LpY0YqsFigza8Bg7qy7VefPSbUe53MoGYrJAIuALP9EE8DPtCzsSnfqKhtpOIe2i47Zfquna7-f7rDqAvQacTBf4E6Uv0dHwgIXZwktGpyVdP0tbFgO-MUubImH74SPudXc2XGHSVZMTa-rnPV_Cg1W0HqLHKyXN7nmBv-TYqPdgbxVcTZ6jxHkLynS71daXR29IUOiXd47SUqcijSdgvCOhTKoER57CuOmQ&h=9Qex3NvMR6nN5S1Xy-Jbo2NBUQfPi6Tufb13fBobZLU pragma: - no-cache strict-transport-security: @@ -1993,13 +1850,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/668ad267-7306-4d1d-8e8b-5920183da22b - x-ms-ratelimit-remaining-subscription-deletes: - - '799' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '11999' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/3d1821d2-0cfc-4708-9176-e92ced479e1a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 94B7D2A2B07E4FAABF3715EABA739F28 Ref B: BN1AA2051014027 Ref C: 2026-04-20T19:03:56Z' + - 'Ref A: 81546ADEB56F472B8728A99153DEC2BA Ref B: SYD281080708031 Ref C: 2026-09-10T06:46:35Z' status: code: 202 message: Accepted @@ -2017,9 +1872,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-b2f976fa-3ceb-11f1-b81f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086370598433&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=Zj0dq6EASn7NJvQhXRNZNrmknWvgn7JKAllXMk4VpcqUtcFD5iBkwxlv-XMCAIpeHo04MWP5dXh5HVsklE0NUefhL87i1Z6UYbjGCjVqW3ajwCnkZsU4gYBR9TUcnwbpkULCuvECluUDdIvkflI-_b4z8UgAfP7K_ZOMf2eFEu2NA1_abQtTdJObZhcsgcv9vDYn3kgi0aoyA_jJClyxxODEb7zeVYxJkpEfHPoeNq8cNwnCZS3Yqs2XfPYSYhLl_rpjmquc12qfu1Ch0nF31oCyBnFvlGwGbmhG_kAZZIZW8a1sExFhnqDNvmNGhq6nav3Rnp5evTQp0Asvr3lXGw&h=UymQiLgk3rpAF4oDiGvejFMRuTqXKkkaDG7mDb2eep0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195963046712&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Tr_BS1ZW4xn36_pX-Sx7o2GC5ybLrfBqxWzOIFXM5twMch2V9ww2jQ8zQ4GqXuvaSQlpb4bv3-g7ps9EN6qCH9J5l9ER3uzPMZYYMhj1CE_N1dYXZ5LpY0YqsFigza8Bg7qy7VefPSbUe53MoGYrJAIuALP9EE8DPtCzsSnfqKhtpOIe2i47Zfquna7-f7rDqAvQacTBf4E6Uv0dHwgIXZwktGpyVdP0tbFgO-MUubImH74SPudXc2XGHSVZMTa-rnPV_Cg1W0HqLHKyXN7nmBv-TYqPdgbxVcTZ6jxHkLynS71daXR29IUOiXd47SUqcijSdgvCOhTKoER57CuOmQ&h=9Qex3NvMR6nN5S1Xy-Jbo2NBUQfPi6Tufb13fBobZLU response: body: string: '' @@ -2029,11 +1884,11 @@ interactions: content-length: - '0' date: - - Mon, 20 Apr 2026 19:03:57 GMT + - Thu, 10 Sep 2026 06:46:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-b2f976fa-3ceb-11f1-b81f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086382511301&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=J_Un1pevwp_KRxJ17Dh1z6GOsUM8Cly4RxCgSPDrLifHTg4ToWyQYbBoHbrbWyn7ZpKfedFaGYegKJHcaYEmGf4aXXWo1kAOhqkqP3y6WLOyxZyNMYL56GehN2MX-okU-P8U9T60ON_puyxpbWwwSz4FcamTieZ2U1pUOEevve7QBq8_MUCgyKtWUCXeciSQJg_x4J-yLetoDiMQcM_vvbKvvjK9xXDd_uVLkKM_XIbLvw9TxAunAQMNZaWKxunU2ptDPD3BxHuh-dlDGiD4oWhA2KOBKAKOMMbLwo1LZ8guXZCHd6A2NaE8fQxsmfeoA3VS9CRrWUBYPqNlnz3HZw&h=KAlvSeWOxkpsg-cwI21WrU6UMDO1jLFU-maRpNAbUps + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196075740025&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=EFEmG_zxv6MToEjIm4bzbLMqxbsAsMxAddwMS3y2kZcJdg0LWZo1G6ReGVCGCSCO45ZN_ObKSWj4_J5OnQVkj4aLL5ppe3gYcq7FNjHixOJyKR_Zlc9YSRajIqQGhLzqiZWvk4Lq8SCHVN4Ac-ApPrSBTUjQfKPZyMvUtd9B5ygOfFOGoqcwwKAsB-1ArxKIZzh8zbMAXDtcEnQ4LIamMRMm8QNehTK0VWCwcCxlxaNYcSKhHYl_tCzFEbxZxsRE4fF1pXqCXRSQlo6tLGhBv5uVA31TNQNYqyIuBCvHbVaH5nY0BtACUfKjPWLrGeBquLNF1aB3KVpzDFIvJQPX0A&h=obNhbJibIGH4KLOFBjPSUoDp9i1f0wUWLeaWNZm7K1E pragma: - no-cache strict-transport-security: @@ -2043,11 +1898,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/0eafe3a1-3e0f-4058-b316-8033f64fdbf2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/80fe33e3-9f52-471a-8a92-415af97b7f03 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59B7ED265FE04B94B40E42DE010AADBD Ref B: BN1AA2051014019 Ref C: 2026-04-20T19:03:58Z' + - 'Ref A: 97E618FB5E9B4009903225B5945F2554 Ref B: SYD281080708054 Ref C: 2026-09-10T06:46:46Z' status: code: 202 message: Accepted @@ -2065,9 +1920,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-b2f976fa-3ceb-11f1-b81f-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086382511301&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=J_Un1pevwp_KRxJ17Dh1z6GOsUM8Cly4RxCgSPDrLifHTg4ToWyQYbBoHbrbWyn7ZpKfedFaGYegKJHcaYEmGf4aXXWo1kAOhqkqP3y6WLOyxZyNMYL56GehN2MX-okU-P8U9T60ON_puyxpbWwwSz4FcamTieZ2U1pUOEevve7QBq8_MUCgyKtWUCXeciSQJg_x4J-yLetoDiMQcM_vvbKvvjK9xXDd_uVLkKM_XIbLvw9TxAunAQMNZaWKxunU2ptDPD3BxHuh-dlDGiD4oWhA2KOBKAKOMMbLwo1LZ8guXZCHd6A2NaE8fQxsmfeoA3VS9CRrWUBYPqNlnz3HZw&h=KAlvSeWOxkpsg-cwI21WrU6UMDO1jLFU-maRpNAbUps + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-41490382-ace3-11f1-b1e1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196075740025&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=EFEmG_zxv6MToEjIm4bzbLMqxbsAsMxAddwMS3y2kZcJdg0LWZo1G6ReGVCGCSCO45ZN_ObKSWj4_J5OnQVkj4aLL5ppe3gYcq7FNjHixOJyKR_Zlc9YSRajIqQGhLzqiZWvk4Lq8SCHVN4Ac-ApPrSBTUjQfKPZyMvUtd9B5ygOfFOGoqcwwKAsB-1ArxKIZzh8zbMAXDtcEnQ4LIamMRMm8QNehTK0VWCwcCxlxaNYcSKhHYl_tCzFEbxZxsRE4fF1pXqCXRSQlo6tLGhBv5uVA31TNQNYqyIuBCvHbVaH5nY0BtACUfKjPWLrGeBquLNF1aB3KVpzDFIvJQPX0A&h=obNhbJibIGH4KLOFBjPSUoDp9i1f0wUWLeaWNZm7K1E response: body: string: '' @@ -2077,7 +1932,7 @@ interactions: content-length: - '0' date: - - Mon, 20 Apr 2026 19:04:08 GMT + - Thu, 10 Sep 2026 06:46:58 GMT expires: - '-1' pragma: @@ -2089,11 +1944,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/0eea373a-beed-4415-9481-391bc5fd86fb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/9530195b-10d2-488b-a121-09ac4a9f0a34 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F2C803A1D1D147FFB54830D0DE7B2577 Ref B: BL2AA2010205047 Ref C: 2026-04-20T19:04:09Z' + - 'Ref A: E2F1256D19324D3A9EEA204F2A63473D Ref B: SYD281080708025 Ref C: 2026-09-10T06:46:58Z' status: code: 200 message: OK @@ -2113,27 +1968,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-20T19:01:17.6547415+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-20T19:01:17.6547415+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-20T19:01:17.6547415Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240392+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-20T19:01:29.9240874+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:40.3977371Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.3095546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Apr 2026 19:04:10 GMT + - Thu, 10 Sep 2026 06:46:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-bc13b485-3ceb-11f1-881e-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086506031936&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=e2fkToEo6dfB6CcvQsSvem8Y8TBLne4kEWpLgbWiUR6CGdgSzuXDqKnYuGK0735wOTvqHaVDH7KmWHHTmJAgitXStVLYBDsoMexOZsoGbkqvcGTqgTukvNk6iX4ff-7ywYrD_NPgJIQxQlHgJa_rR9VHnNE7KIneS7xYa7i1rGsaINNZLNjVMbmuxFByRzNubSr2JF4r2O6LvhMbCZpA4FYTv42VOV0uolj9X1yH4x96fcfCqZjqBq_YULBqnCsPNj6jNf9pfrIc8qjomB2ibqmjQ4q1C3kBUiFQWqt63OXH0QQXdIdmx9Q8GfliZw8fUxwofNipcwZtFpHVtbeFcA&h=OSDJ8oL73Tmpb_nVUkXzXwLyJQ3H7ZHNcgksAtZ30Os + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6cb52989-ace3-11f1-b8c2-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196200343005&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=OYp8kPNpbNqTLN-QvXQJMSO4FBcHjooWYNPSnZPefBLh4sw2mjlkcBsQSC_B-p7HUFBnpwscJX0egpDB4ICF8XPNmaPO7twdgUU3D3cG4v5RbqNAnR0obcfoh19Y0OAgurbx_HS2EBETPVsFbfSNm2KAsrS2-M4vz2mRN31VQVAgaTAEJviYyoa4bVzbI6VofdMNoxuIwEGhSn2ng6dnfhRQOP1voRkV41aAd9XnCeVUkpjeLr_jjG95PyBrp-cLdOlQ3Og7IV4Tff1CWKXUqPl23X5EcOPnRIBe4ouxSKfkO0yuww1vYBjPzvVLLfneV7IgJ11sGSup94QGA9vPLg&h=ekcCRqIzMN5uLyaX4BeIyP0i5ihvWYr11_k9h4aTBnM pragma: - no-cache strict-transport-security: @@ -2143,13 +1998,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ced96e68-6593-488f-9096-83749e98ee72 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/44f8a721-5b1d-463c-b72a-1d840cc16f74 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 716194FF937A49299464A4FCD01BC18A Ref B: BL2AA2010204017 Ref C: 2026-04-20T19:04:10Z' + - 'Ref A: 3B0137F76FE44C29BA10AC76416C2905 Ref B: SYD281080712054 Ref C: 2026-09-10T06:46:59Z' status: code: 202 message: Accepted @@ -2167,9 +2022,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-bc13b485-3ceb-11f1-881e-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086506031936&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=e2fkToEo6dfB6CcvQsSvem8Y8TBLne4kEWpLgbWiUR6CGdgSzuXDqKnYuGK0735wOTvqHaVDH7KmWHHTmJAgitXStVLYBDsoMexOZsoGbkqvcGTqgTukvNk6iX4ff-7ywYrD_NPgJIQxQlHgJa_rR9VHnNE7KIneS7xYa7i1rGsaINNZLNjVMbmuxFByRzNubSr2JF4r2O6LvhMbCZpA4FYTv42VOV0uolj9X1yH4x96fcfCqZjqBq_YULBqnCsPNj6jNf9pfrIc8qjomB2ibqmjQ4q1C3kBUiFQWqt63OXH0QQXdIdmx9Q8GfliZw8fUxwofNipcwZtFpHVtbeFcA&h=OSDJ8oL73Tmpb_nVUkXzXwLyJQ3H7ZHNcgksAtZ30Os + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6cb52989-ace3-11f1-b8c2-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196200343005&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=OYp8kPNpbNqTLN-QvXQJMSO4FBcHjooWYNPSnZPefBLh4sw2mjlkcBsQSC_B-p7HUFBnpwscJX0egpDB4ICF8XPNmaPO7twdgUU3D3cG4v5RbqNAnR0obcfoh19Y0OAgurbx_HS2EBETPVsFbfSNm2KAsrS2-M4vz2mRN31VQVAgaTAEJviYyoa4bVzbI6VofdMNoxuIwEGhSn2ng6dnfhRQOP1voRkV41aAd9XnCeVUkpjeLr_jjG95PyBrp-cLdOlQ3Og7IV4Tff1CWKXUqPl23X5EcOPnRIBe4ouxSKfkO0yuww1vYBjPzvVLLfneV7IgJ11sGSup94QGA9vPLg&h=ekcCRqIzMN5uLyaX4BeIyP0i5ihvWYr11_k9h4aTBnM response: body: string: '' @@ -2179,11 +2034,11 @@ interactions: content-length: - '0' date: - - Mon, 20 Apr 2026 19:04:10 GMT + - Thu, 10 Sep 2026 06:47:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-bc13b485-3ceb-11f1-881e-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086517658431&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=wQJ-i7PhMvJZW59Sf2KBpt15fRMkuEi8O4WjzERQf95-0zt4HJX2Oc5uxfv0F7RUpaCwe5FUA1xaFaQJ4dsz35gNU8joxXTxx76HJtl0pdCrtL_j-0_0gFdzNHc18ksclC9TEn7KGCtA291BQjrG1mBt7AEPY2ZLfrg7duCStk-Se44jXpK8O4FpFFQQUo5vEvpn41gD_5OJ2Kc5Zl-tXv2yv0iGpHGUH7QijntttyDf90EcIcLVls9AyqNaRoIb3OcNLO8MRm1Cp23PJMTH4sUNPWxSrGpULFzRpqXUYfwKXhBHUIt-2L42QtbLbh5tzPBm5lh5yigcjMdvITWMIA&h=oh-HtiKuKsZv-MlnlxZT93wgkN4lrnqIgFsmflRuj6g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6cb52989-ace3-11f1-b8c2-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196212598821&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=J0OGcJleh_3FoIoDWrW5eirrJHD9zOTG3E69FltQmdy6wb1qv1nGuPmoHvIp6EWC_gyxTr4WN6VVPcvEr28CAz-pRW-XlmVjFvaBT46LAZtHnleMew-R4VdLoGEWLokh3dUtJmLNuO8c-QrJ68lv89Ufe_yVW2-gxwmkBIoawAhN0ce7P_We6rpteD8HH06ieZ4THlhL87e7kkMFE9bSBUtwh6B2u06I74UvL_qNbuQtmO8nL038yjDajepe5GwwtjRVnAw2jKc5HHZI--LjarshmptBbb3_yyzlgpHRiH95B-znU9lADV5euWS4Fad-akVtV76VQnovFI_kckLU-w&h=XrBQpVgopruSBWy66lnNff7UnWSfmM-gvHKt0c8SxZY pragma: - no-cache strict-transport-security: @@ -2193,11 +2048,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/ae13c3ff-3e0a-450e-b188-de4cbe88b728 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/da3fff81-7afd-4b0e-adf0-6070b71daad1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1D9F46171D1144F884985784C1CBF24B Ref B: BL2AA2010204049 Ref C: 2026-04-20T19:04:11Z' + - 'Ref A: 4ABDB1312E364909B20B72EA82687E56 Ref B: SYD281080706060 Ref C: 2026-09-10T06:47:00Z' status: code: 202 message: Accepted @@ -2215,9 +2070,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-bc13b485-3ceb-11f1-881e-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639123086517658431&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=wQJ-i7PhMvJZW59Sf2KBpt15fRMkuEi8O4WjzERQf95-0zt4HJX2Oc5uxfv0F7RUpaCwe5FUA1xaFaQJ4dsz35gNU8joxXTxx76HJtl0pdCrtL_j-0_0gFdzNHc18ksclC9TEn7KGCtA291BQjrG1mBt7AEPY2ZLfrg7duCStk-Se44jXpK8O4FpFFQQUo5vEvpn41gD_5OJ2Kc5Zl-tXv2yv0iGpHGUH7QijntttyDf90EcIcLVls9AyqNaRoIb3OcNLO8MRm1Cp23PJMTH4sUNPWxSrGpULFzRpqXUYfwKXhBHUIt-2L42QtbLbh5tzPBm5lh5yigcjMdvITWMIA&h=oh-HtiKuKsZv-MlnlxZT93wgkN4lrnqIgFsmflRuj6g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6cb52989-ace3-11f1-b8c2-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196212598821&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=J0OGcJleh_3FoIoDWrW5eirrJHD9zOTG3E69FltQmdy6wb1qv1nGuPmoHvIp6EWC_gyxTr4WN6VVPcvEr28CAz-pRW-XlmVjFvaBT46LAZtHnleMew-R4VdLoGEWLokh3dUtJmLNuO8c-QrJ68lv89Ufe_yVW2-gxwmkBIoawAhN0ce7P_We6rpteD8HH06ieZ4THlhL87e7kkMFE9bSBUtwh6B2u06I74UvL_qNbuQtmO8nL038yjDajepe5GwwtjRVnAw2jKc5HHZI--LjarshmptBbb3_yyzlgpHRiH95B-znU9lADV5euWS4Fad-akVtV76VQnovFI_kckLU-w&h=XrBQpVgopruSBWy66lnNff7UnWSfmM-gvHKt0c8SxZY response: body: string: '' @@ -2227,7 +2082,7 @@ interactions: content-length: - '0' date: - - Mon, 20 Apr 2026 19:04:22 GMT + - Thu, 10 Sep 2026 06:47:11 GMT expires: - '-1' pragma: @@ -2239,11 +2094,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/9936e884-2313-4486-9c79-9e4ba7cb4280 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/64dce77b-b15d-401c-8109-ca9a718b5793 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 022A64554DB64E38976D9AF852D9820A Ref B: BN1AA2051014021 Ref C: 2026-04-20T19:04:22Z' + - 'Ref A: BCA30ABE6F4C4C56A7017ECF34CFCFC8 Ref B: SYD281080712029 Ref C: 2026-09-10T06:47:11Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml index 24c82e09392..a1be669ec63 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:52 GMT + - Thu, 10 Sep 2026 06:47:28 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/d8f5bf54-e27a-4955-ae28-068c5450c38e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e1fff256-7974-4552-8e05-f68b7e019745 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 66816386C09A40D7BEE25D1600F19134 Ref B: BN1AA2051013035 Ref C: 2026-04-03T02:29:39Z' + - 'Ref A: 995B4C74FF3A4501B84D7EF168BCC3CB Ref B: SYD281080708054 Ref C: 2026-09-10T06:47:17Z' status: code: 200 message: OK @@ -70,22 +70,21 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:57.9619491Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.1288554Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:42.4933257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.5401873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqnvz3ac3ofqtyvifcbuuppnwvnvdohlwrjl33ubg5z2mqgyorwoydviffupgn3fsa/providers/Microsoft.ContainerRegistry/registries/clireg2zytrs6hf7patr","name":"clireg2zytrs6hf7patr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.7454326Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.7454326Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.829285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvdwrmtyfhholjwpreueec5yrwspmiuhwdpxhjystxlzoc32fb2gnvggz3jhegltkw/providers/Microsoft.ContainerRegistry/registries/cliregej7jyzpv4psu52","name":"cliregej7jyzpv4psu52","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:47.5158938Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:47.5158938Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}}]}' headers: cache-control: - no-cache content-length: - - '10585' + - '4977' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:57 GMT + - Thu, 10 Sep 2026 06:47:30 GMT expires: - '-1' pragma: @@ -99,7 +98,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C85179FD3B6E4FA7972CD99BA1AB815D Ref B: BN1AA2051014035 Ref C: 2026-04-03T02:29:58Z' + - 'Ref A: 274A98FEF32B4392ADB78B2306951EAC Ref B: SYD281080711031 Ref C: 2026-09-10T06:47:30Z' status: code: 200 message: OK @@ -117,23 +116,23 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:02 GMT + - Thu, 10 Sep 2026 06:47:31 GMT expires: - '-1' pragma: @@ -147,7 +146,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FCD409CABCCC45A582E92923928432D6 Ref B: BN1AA2051015039 Ref C: 2026-04-03T02:30:03Z' + - 'Ref A: 29D0F7E08BFE4041A82809678E0806F5 Ref B: SYD281080711052 Ref C: 2026-09-10T06:47:31Z' status: code: 200 message: OK @@ -170,19 +169,20 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:08.5655269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:08.5655269+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:34.2102337+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:34.2102337+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: @@ -190,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:08 GMT + - Thu, 10 Sep 2026 06:47:34 GMT expires: - '-1' pragma: @@ -202,13 +202,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/78868f08-edce-496a-924d-d17c3484b581 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/27044930-9206-4bd0-b656-a5647ca3c96d x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3D2AA6765DC94581BF51A492D11A5E64 Ref B: BN1AA2051014029 Ref C: 2026-04-03T02:30:08Z' + - 'Ref A: 1E454595833C43E19D43DF9A88B6F236 Ref B: SYD281080710023 Ref C: 2026-09-10T06:47:32Z' status: code: 200 message: OK @@ -226,22 +226,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:57.9619491Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.1288554Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:01.7335514Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:10.7048569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqnvz3ac3ofqtyvifcbuuppnwvnvdohlwrjl33ubg5z2mqgyorwoydviffupgn3fsa/providers/Microsoft.ContainerRegistry/registries/clireg2zytrs6hf7patr","name":"clireg2zytrs6hf7patr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.7454326Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.7454326Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.829285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvdwrmtyfhholjwpreueec5yrwspmiuhwdpxhjystxlzoc32fb2gnvggz3jhegltkw/providers/Microsoft.ContainerRegistry/registries/cliregej7jyzpv4psu52","name":"cliregej7jyzpv4psu52","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:47.5158938Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:47.5158938Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}}]}' headers: cache-control: - no-cache content-length: - - '11779' + - '4977' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:14 GMT + - Thu, 10 Sep 2026 06:47:35 GMT expires: - '-1' pragma: @@ -255,7 +254,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DE04CD98665741D3A99665360F32D54C Ref B: BN1AA2051013011 Ref C: 2026-04-03T02:30:13Z' + - 'Ref A: 9FCE389801DE45F7BDC1EB4DE5901D13 Ref B: SYD281080709036 Ref C: 2026-09-10T06:47:35Z' status: code: 200 message: OK @@ -273,23 +272,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:19 GMT + - Thu, 10 Sep 2026 06:47:35 GMT expires: - '-1' pragma: @@ -303,7 +302,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B051DCDDF3594FEFA62CA9FB49603192 Ref B: BN1AA2051015037 Ref C: 2026-04-03T02:30:19Z' + - 'Ref A: CC7FB9E2EB454077B31D9D26E1086BC0 Ref B: SYD281080707025 Ref C: 2026-09-10T06:47:36Z' status: code: 200 message: OK @@ -321,19 +320,20 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:08.5655269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:08.5655269+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:34.2102337+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:34.2102337+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:25 GMT + - Thu, 10 Sep 2026 06:47:36 GMT expires: - '-1' pragma: @@ -357,7 +357,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8E49E3607D644870A8D07C3713AA90F8 Ref B: BN1AA2051014039 Ref C: 2026-04-03T02:30:25Z' + - 'Ref A: C781E53099E04D51BD7ACB9F472FD74E Ref B: SYD281080706060 Ref C: 2026-09-10T06:47:36Z' status: code: 200 message: OK @@ -375,22 +375,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:57.9619491Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:01.7335514Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:22.4976462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.829285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvdwrmtyfhholjwpreueec5yrwspmiuhwdpxhjystxlzoc32fb2gnvggz3jhegltkw/providers/Microsoft.ContainerRegistry/registries/cliregej7jyzpv4psu52","name":"cliregej7jyzpv4psu52","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:47.5158938Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:47.5158938Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}}]}' headers: cache-control: - no-cache content-length: - - '11203' + - '4977' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:30 GMT + - Thu, 10 Sep 2026 06:47:38 GMT expires: - '-1' pragma: @@ -404,7 +403,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 37A45BF69E89453CBFE3D999708B5128 Ref B: BN1AA2051014017 Ref C: 2026-04-03T02:30:30Z' + - 'Ref A: FF38C6B4567B4C6693DF71DD4D8A4156 Ref B: SYD281080708023 Ref C: 2026-09-10T06:47:37Z' status: code: 200 message: OK @@ -422,23 +421,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:35 GMT + - Thu, 10 Sep 2026 06:47:38 GMT expires: - '-1' pragma: @@ -452,7 +451,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D7B93DCBB6544CFAA73375231331EFD Ref B: BN1AA2051015037 Ref C: 2026-04-03T02:30:35Z' + - 'Ref A: 7FCE9365943E42279B76212EEA6D1FD7 Ref B: SYD281080705054 Ref C: 2026-09-10T06:47:38Z' status: code: 200 message: OK @@ -470,19 +469,20 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:08.5655269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:08.5655269+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:34.2102337+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:34.2102337+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: @@ -490,7 +490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:40 GMT + - Thu, 10 Sep 2026 06:47:38 GMT expires: - '-1' pragma: @@ -504,7 +504,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FA94AA823F58408F8DBB5548A26E780B Ref B: BN1AA2051015029 Ref C: 2026-04-03T02:30:41Z' + - 'Ref A: 09EA235DF0A8407F9D18FF6D8A4C7E4C Ref B: SYD281080707031 Ref C: 2026-09-10T06:47:39Z' status: code: 200 message: OK @@ -522,23 +522,21 @@ interactions: ParameterSetName: - -n -r --headers --scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityn6fndszynarctkhxxb":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.0893447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvdwrmtyfhholjwpreueec5yrwspmiuhwdpxhjystxlzoc32fb2gnvggz3jhegltkw/providers/Microsoft.ContainerRegistry/registries/cliregej7jyzpv4psu52","name":"cliregej7jyzpv4psu52","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:47.5158938Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:47.5158938Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}}]}' headers: cache-control: - no-cache content-length: - - '12381' + - '4977' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:46 GMT + - Thu, 10 Sep 2026 06:47:40 GMT expires: - '-1' pragma: @@ -552,7 +550,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC6DC6D7C5934F0BA669779875611A51 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:30:46Z' + - 'Ref A: FE7F4AD919C647A1B11B86F573407D00 Ref B: SYD281080706036 Ref C: 2026-09-10T06:47:40Z' status: code: 200 message: OK @@ -574,27 +572,28 @@ interactions: ParameterSetName: - -n -r --headers --scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:08.5655269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:51.5286589+00:00"},"properties":{"status":"enabled","scope":"hello-world","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:34.2102337+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:41.122745+00:00"},"properties":{"status":"enabled","scope":"hello-world","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '628' + - '627' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:51 GMT + - Thu, 10 Sep 2026 06:47:40 GMT expires: - '-1' pragma: @@ -606,13 +605,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/78ec35c1-de35-4db8-8ab3-2315e78c431c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5b46000c-f0b3-43bd-96a2-cddd8064e584 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DB620897B4804447B53415F61AD82807 Ref B: BN1AA2051015025 Ref C: 2026-04-03T02:30:51Z' + - 'Ref A: 9350642EE5464ECF8BCBD6CA9663FBAE Ref B: SYD281080707060 Ref C: 2026-09-10T06:47:40Z' status: code: 200 message: OK @@ -630,23 +629,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testreg2tsb6e7fghlb5","name":"testreg2tsb6e7fghlb5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:42.4384986Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:42.4384986Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityn6fndszynarctkhxxb":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.2435103Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngvq3j2s6go3ca7pdmvcp3uw46m4ckmzjxz676nwqrkl65et6nayfby6ntoihrqrw/providers/Microsoft.ContainerRegistry/registries/cliregh5bnhbcrxi6mej","name":"cliregh5bnhbcrxi6mej","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}}]}' headers: cache-control: - no-cache content-length: - - '12971' + - '4977' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:56 GMT + - Thu, 10 Sep 2026 06:47:41 GMT expires: - '-1' pragma: @@ -660,7 +657,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 68EF7C8BF6024BC593D494D4FC11DAE8 Ref B: BN1AA2051014031 Ref C: 2026-04-03T02:30:56Z' + - 'Ref A: F66BCD96069E441199A5AEE10FBCE42C Ref B: SYD281080707025 Ref C: 2026-09-10T06:47:41Z' status: code: 200 message: OK @@ -678,23 +675,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:01 GMT + - Thu, 10 Sep 2026 06:47:41 GMT expires: - '-1' pragma: @@ -708,7 +705,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC72F820E91E4D3CB71D828F7DADF46F Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:31:01Z' + - 'Ref A: 5FBB114285EA49BEAEEF46C9692F8B3A Ref B: SYD281080711023 Ref C: 2026-09-10T06:47:42Z' status: code: 200 message: OK @@ -728,9 +725,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/getCallbackConfig?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/getCallbackConfig?api-version=2026-09-01-preview response: body: string: '{"serviceUri":"http://www.microsoft.com","customHeaders":{"key":"value"}}' @@ -740,7 +737,8 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: @@ -748,7 +746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:05 GMT + - Thu, 10 Sep 2026 06:47:42 GMT expires: - '-1' pragma: @@ -760,13 +758,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/fd54d2e8-91fb-4da6-9435-41aaf2220a80 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5693f6ef-265d-4f29-931d-9d80aa7f4624 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1CDEB925915C4C98893C6AC0D962B79C Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:31:06Z' + - 'Ref A: 81ACF744780C47C98E4E138BE69C162B Ref B: SYD281080710023 Ref C: 2026-09-10T06:47:42Z' status: code: 200 message: OK @@ -784,23 +782,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testreg2tsb6e7fghlb5","name":"testreg2tsb6e7fghlb5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:42.4384986Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:42.4384986Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityn6fndszynarctkhxxb":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:56.3286837Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngvq3j2s6go3ca7pdmvcp3uw46m4ckmzjxz676nwqrkl65et6nayfby6ntoihrqrw/providers/Microsoft.ContainerRegistry/registries/cliregh5bnhbcrxi6mej","name":"cliregh5bnhbcrxi6mej","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpu3iusdcke4sup5s4ij3h3iinzfa57ymb3x2vmtopjjhiisxrqe4rbmvxv5qui3/providers/Microsoft.ContainerRegistry/registries/clireggo2zf42uu7t7up","name":"clireggo2zf42uu7t7up","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:35.408725Z"}}]}' headers: cache-control: - no-cache content-length: - - '12971' + - '5571' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:10 GMT + - Thu, 10 Sep 2026 06:47:43 GMT expires: - '-1' pragma: @@ -814,7 +810,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 45410E9870F14A7AAED8F6C4BB2B1E94 Ref B: BN1AA2051012027 Ref C: 2026-04-03T02:31:10Z' + - 'Ref A: C91ECFB9DD8547B09A8BC1F5BD8A93D2 Ref B: SYD281080710036 Ref C: 2026-09-10T06:47:43Z' status: code: 200 message: OK @@ -832,23 +828,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:15 GMT + - Thu, 10 Sep 2026 06:47:44 GMT expires: - '-1' pragma: @@ -862,7 +858,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3DB00F46CA6B442E84776232F5487F79 Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:31:16Z' + - 'Ref A: 351E35FD7D3F4E1FA8AD5D282C9F29F5 Ref B: SYD281080708036 Ref C: 2026-09-10T06:47:44Z' status: code: 200 message: OK @@ -882,19 +878,20 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/ping?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/ping?api-version=2026-09-01-preview response: body: - string: '{"id":"569106d7-171b-4ed8-8a5d-8ab1a7132f9c"}' + string: '{"id":"4b367b6d-07f6-42cc-8d62-93cc9314583d"}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: @@ -902,7 +899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:20 GMT + - Thu, 10 Sep 2026 06:47:44 GMT expires: - '-1' pragma: @@ -914,13 +911,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ce9645bd-086a-4901-8423-bcab854fb0dc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7e8fb49a-a5d6-4625-b6ec-54e280d70a7c x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 33BF1ADAF74A46C08FFB9B7C638454D4 Ref B: BN1AA2051013027 Ref C: 2026-04-03T02:31:21Z' + - 'Ref A: E242460104C74AD3AC3D59279C785316 Ref B: SYD281080708029 Ref C: 2026-09-10T06:47:45Z' status: code: 200 message: OK @@ -938,22 +935,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:25.4992735Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngvq3j2s6go3ca7pdmvcp3uw46m4ckmzjxz676nwqrkl65et6nayfby6ntoihrqrw/providers/Microsoft.ContainerRegistry/registries/cliregh5bnhbcrxi6mej","name":"cliregh5bnhbcrxi6mej","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"name":"magic","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}},{"name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"name":"clireggo2zf42uu7t7up","type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpu3iusdcke4sup5s4ij3h3iinzfa57ymb3x2vmtopjjhiisxrqe4rbmvxv5qui3/providers/Microsoft.ContainerRegistry/registries/clireggo2zf42uu7t7up","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:43.8279666Z"}}]}' headers: cache-control: - no-cache content-length: - - '10662' + - '5572' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:26 GMT + - Thu, 10 Sep 2026 06:47:45 GMT expires: - '-1' pragma: @@ -967,7 +963,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6174E5FFD4D04CD19B7614A2422D4E42 Ref B: BN1AA2051013045 Ref C: 2026-04-03T02:31:26Z' + - 'Ref A: F82FB61469794D579D1D029E142D5C1B Ref B: SYD281080710029 Ref C: 2026-09-10T06:47:45Z' status: code: 200 message: OK @@ -985,23 +981,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:30 GMT + - Thu, 10 Sep 2026 06:47:46 GMT expires: - '-1' pragma: @@ -1015,7 +1011,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CC6E72D86CBC44A896348ECC81741631 Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:31:31Z' + - 'Ref A: 909A72F6B0D44D29B0BD1C832FB8F324 Ref B: SYD281080708023 Ref C: 2026-09-10T06:47:46Z' status: code: 200 message: OK @@ -1035,29 +1031,30 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/listEvents?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/listEvents?api-version=2026-09-01-preview response: body: - string: '{"value":[{"eventRequestMessage":{"content":{"id":"569106d7-171b-4ed8-8a5d-8ab1a7132f9c","timestamp":"2026-04-03T02:31:21.2828805Z","action":"ping"},"headers":{"User-Agent":"AzureContainerRegistry/1.0","key":"value","X-Forwarded-For":"true","traceparent":"00-b0078b998c9ca2ae51450305de6d809c-c07c62d534a962e6-01","Content-Type":"application/json; - charset=utf-8","Content-Length":"104"},"method":"POST","requestUri":"http://www.microsoft.com/","version":"1.1"},"eventResponseMessage":{"content":"","headers":{"Server":"envoy","Location":"https://mscom.errorpage.failover.com/403/403.htm?referenceerror=18.cadf3517.1775183481.301b6512","Date":"Fri, - 03 Apr 2026 02:31:21 GMT","x-envoy-upstream-service-time":"12","Content-Length":"0"},"reasonPhrase":"Forbidden","statusCode":"403","version":"1.1"},"id":"569106d7-171b-4ed8-8a5d-8ab1a7132f9c"}]}' + string: '{"value":[{"eventRequestMessage":{"content":{"id":"4b367b6d-07f6-42cc-8d62-93cc9314583d","timestamp":"2026-09-10T06:47:45.3877493Z","action":"ping"},"headers":{"User-Agent":"AzureContainerRegistry/1.0","key":"value","traceparent":"00-f2fe9c6a6ddbb88c4d0870dff395f8f4-6a4c62b1d35cadb7-01","Content-Type":"application/json; + charset=utf-8","Content-Length":"104"},"method":"POST","requestUri":"http://www.microsoft.com/","version":"1.1"},"eventResponseMessage":{"content":"","headers":{"Server":"AkamaiGHost","Location":"https://mscom.errorpage.failover.com/403/403.htm?referenceerror=18.cadf3517.1789022865.2c6c405c","Date":"Thu, + 10 Sep 2026 06:47:45 GMT","Connection":"close","Content-Length":"0"},"reasonPhrase":"Forbidden","statusCode":"403","version":"1.1"},"id":"4b367b6d-07f6-42cc-8d62-93cc9314583d"}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - - '841' + - '806' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:35 GMT + - Thu, 10 Sep 2026 06:47:47 GMT expires: - '-1' pragma: @@ -1069,13 +1066,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/d0b15406-77ff-451f-8152-76c45d6eadbc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/bd5b4f0a-aab6-4e66-97b8-02272fe2d898 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 908CA504D9FE48F6A9DD020D72A6A2D5 Ref B: BN1AA2051012009 Ref C: 2026-04-03T02:31:36Z' + - 'Ref A: 37B0FF378B724CC5BB6B2EDEE8F56690 Ref B: SYD281080710054 Ref C: 2026-09-10T06:47:47Z' status: code: 200 message: OK @@ -1093,23 +1090,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:40 GMT + - Thu, 10 Sep 2026 06:47:48 GMT expires: - '-1' pragma: @@ -1123,7 +1120,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2837BF9FCD394D519803844FC95A032D Ref B: BN1AA2051012027 Ref C: 2026-04-03T02:31:40Z' + - 'Ref A: 0A9B44A23A644AF7A3E792E8D5943395 Ref B: SYD281080708060 Ref C: 2026-09-10T06:47:48Z' status: code: 200 message: OK @@ -1141,15 +1138,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-09-01-preview response: body: string: '{"value":[{"name":"Size","limit":107374182400,"currentValue":0,"unit":"Bytes"},{"name":"MaximumStorageCapacity","limit":43980465111040,"currentValue":0,"unit":"Bytes"},{"name":"Webhooks","limit":10,"currentValue":1,"unit":"Count"},{"name":"ScopeMaps","limit":500,"currentValue":0,"unit":"Count"},{"name":"Tokens","limit":500,"currentValue":0,"unit":"Count"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1157,7 +1154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:44 GMT + - Thu, 10 Sep 2026 06:47:49 GMT expires: - '-1' pragma: @@ -1169,11 +1166,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/649ccce9-e44f-43b7-8dcb-434b1e3e6325 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ab12bc89-059b-4443-b4de-aee39ec7d1d3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FB0EAFEEFA1247C18888AE746603D154 Ref B: BN1AA2051013033 Ref C: 2026-04-03T02:31:44Z' + - 'Ref A: 5455F7B3061745DAA647B719BDE0F2B5 Ref B: SYD281080711025 Ref C: 2026-09-10T06:47:48Z' status: code: 200 message: OK @@ -1191,22 +1188,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:25.4992735Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgycnm3cbfidtkas5krtgdymfvptp3wxu7hke7xub4cybqx5k7ha5smyc4ygtlrhtud/providers/Microsoft.ContainerRegistry/registries/testreghevpvx6rip6so","name":"testreghevpvx6rip6so","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:26.6785239Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpu3iusdcke4sup5s4ij3h3iinzfa57ymb3x2vmtopjjhiisxrqe4rbmvxv5qui3/providers/Microsoft.ContainerRegistry/registries/clireggo2zf42uu7t7up","name":"clireggo2zf42uu7t7up","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:48.6384655Z"}}]}' headers: cache-control: - no-cache content-length: - - '10666' + - '5572' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:49 GMT + - Thu, 10 Sep 2026 06:47:49 GMT expires: - '-1' pragma: @@ -1220,7 +1216,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EDABCCB6C27A404ABFA07EE7B2523309 Ref B: BN1AA2051014009 Ref C: 2026-04-03T02:31:50Z' + - 'Ref A: 94C2FC8224774AD28085FB98DDB6492B Ref B: SYD281080709029 Ref C: 2026-09-10T06:47:49Z' status: code: 200 message: OK @@ -1238,23 +1234,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1643' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:53 GMT + - Thu, 10 Sep 2026 06:47:50 GMT expires: - '-1' pragma: @@ -1268,7 +1264,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D3ABB416E67F403BAB6072BD070FF693 Ref B: BN1AA2051012029 Ref C: 2026-04-03T02:31:53Z' + - 'Ref A: E9327A275E024C93A5C332392F29624D Ref B: SYD281080712040 Ref C: 2026-09-10T06:47:50Z' status: code: 200 message: OK @@ -1288,9 +1284,9 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2026-09-01-preview response: body: string: '' @@ -1300,13 +1296,14 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:31:57 GMT + - Thu, 10 Sep 2026 06:47:51 GMT expires: - '-1' pragma: @@ -1318,13 +1315,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/cbf06eec-b4ad-41d0-83bf-76962f5f17dc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d159c770-54c6-4711-bb49-540d280b2f1d x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: A80C1227432D4DEB91010FB0E1DAA454 Ref B: BN1AA2051015047 Ref C: 2026-04-03T02:31:57Z' + - 'Ref A: 9E1CAD7ECA704082BC23DD676772D0F2 Ref B: SYD281080711025 Ref C: 2026-09-10T06:47:50Z' status: code: 200 message: OK @@ -1344,27 +1341,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:45.9354887Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922264+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:53.0922686+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:17.6730049Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:29.6065886+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:29.6066491+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1610' + - '1642' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:02 GMT + - Thu, 10 Sep 2026 06:47:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4951a7ab-2f05-11f1-b3af-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803223401377&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IsRt31SJWcUCONYH8COsv8Iq6lTTEwF6sK1YoA6XBbL6s4X-VhF0LIpXF4D9bkQoas95aYnFh-kKxtwxTVXGsP4AfS1WEiHRWziPwXCmROUKLUoxoJJnCCXj0_W4ZvhxQZQcOPn1TSyaxesaFz2dzjWS3lazGbcHl7cPyHPkzpkmJHBNTfTYGWNJLvt76NA4Eg2fETrKB2dlk4V7XtIhZxYV52YlHR7Aw4s3gSVXwszqV37lOgrRuxMTWUa2uZ0126lxbUt7m4hatxRgF2BS1fPv1gJeuNmaeeRI-ygCeEsO_aebs7hY1jbN4pgnS68aY-8z7SeQvEYycy2vOLBgzQ&h=AyORW0pYJ9xLQUzeEifEFof0I9r5S16M4VmV6C8lHoQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8bd86242-ace3-11f1-bd51-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196729939182&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mO-ZPKfFD_hDqBo_AQpTmYbT-CDj9hc06CwLkh3mib7uAsOMiVNkd9oHe8FFOIQbqMj6VxMSdswvKbvGZaHKfuSKwIktgcjUSPn2sUxH8otPTNuI0HtZaAaR6Le-ZIsKHzmkm4I1vBr_Tw_C_L6tnbbJmVatrOccHqcT2JPQ3y3cnzpwwhxIjJTcJqQLwlsDM1NQKsOu5OjKlKJw-UpUCudQV1smY6m6uan5zgUSU4pH4GVMDdKWo2_N63JIvkuuGWG3tdDNV1O_uOt2C0v0K2y3aCnmrep4ZNVmyZOHKiArHEhG4Mabd-hOLUzt4ljba4ypfa4G8Fql5Xz8ljL_sQ&h=ZlkHb9udkoc-L38Jr9xYxkQM46ULEPJ074G0qpGbm8M pragma: - no-cache strict-transport-security: @@ -1374,13 +1371,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ed3f8ff1-c173-4e46-89ab-0f4d1330b880 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ffe21dca-438b-404a-b3e5-78b0a5d8daa1 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 2141C2CF0DC847DFA4DD78F24F1FC4AA Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:32:01Z' + - 'Ref A: 57FEE4B6F47C4E18A178DC3EE90EEE12 Ref B: SYD281080707052 Ref C: 2026-09-10T06:47:51Z' status: code: 202 message: Accepted @@ -1398,9 +1395,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4951a7ab-2f05-11f1-b3af-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803223401377&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IsRt31SJWcUCONYH8COsv8Iq6lTTEwF6sK1YoA6XBbL6s4X-VhF0LIpXF4D9bkQoas95aYnFh-kKxtwxTVXGsP4AfS1WEiHRWziPwXCmROUKLUoxoJJnCCXj0_W4ZvhxQZQcOPn1TSyaxesaFz2dzjWS3lazGbcHl7cPyHPkzpkmJHBNTfTYGWNJLvt76NA4Eg2fETrKB2dlk4V7XtIhZxYV52YlHR7Aw4s3gSVXwszqV37lOgrRuxMTWUa2uZ0126lxbUt7m4hatxRgF2BS1fPv1gJeuNmaeeRI-ygCeEsO_aebs7hY1jbN4pgnS68aY-8z7SeQvEYycy2vOLBgzQ&h=AyORW0pYJ9xLQUzeEifEFof0I9r5S16M4VmV6C8lHoQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8bd86242-ace3-11f1-bd51-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196729939182&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=mO-ZPKfFD_hDqBo_AQpTmYbT-CDj9hc06CwLkh3mib7uAsOMiVNkd9oHe8FFOIQbqMj6VxMSdswvKbvGZaHKfuSKwIktgcjUSPn2sUxH8otPTNuI0HtZaAaR6Le-ZIsKHzmkm4I1vBr_Tw_C_L6tnbbJmVatrOccHqcT2JPQ3y3cnzpwwhxIjJTcJqQLwlsDM1NQKsOu5OjKlKJw-UpUCudQV1smY6m6uan5zgUSU4pH4GVMDdKWo2_N63JIvkuuGWG3tdDNV1O_uOt2C0v0K2y3aCnmrep4ZNVmyZOHKiArHEhG4Mabd-hOLUzt4ljba4ypfa4G8Fql5Xz8ljL_sQ&h=ZlkHb9udkoc-L38Jr9xYxkQM46ULEPJ074G0qpGbm8M response: body: string: '' @@ -1410,7 +1407,55 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:32:06 GMT + - Thu, 10 Sep 2026 06:47:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8bd86242-ace3-11f1-bd51-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196739944474&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=qwb1i1cN1OvKV39NPjUIm6Qx9pbE_i9VZYbHdXVcuCpcQL5mrtcTMa38DnfJEDvuefW6jOdEZ-1-Gh3hpDHfPtpwE00K7Rzsi9qFyjjGCFxODk2ULkHxC-P6ikaU9eMr0ucd14HKMCmcpmyBLcC11XAyV52ZtkxES756LVFtNi23xxueObGf6lQt4Vquv_omdd3XpElOqcMwHN1yoFwc4b2tMUJZKxh1xw0NyOf1s-H00xyuI-iXhPS8ctSUlM244fREGsojavKSexLArKbqStiDyEyU3oERSvRNK5qlwshHU9wgXZEIQt0ufiZGJXBmM30tp2ZDKZcsXZQ0jkx-pg&h=gQjnjHQTFiijNuG69MK0smdIRaWGM8nrRJv2YhPlj74 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e7e1da8b-ec99-4e3b-b337-835c75196d8a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 486719002918432994A79A7ED57329DA Ref B: SYD281080708062 Ref C: 2026-09-10T06:47:53Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-8bd86242-ace3-11f1-bd51-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196739944474&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=qwb1i1cN1OvKV39NPjUIm6Qx9pbE_i9VZYbHdXVcuCpcQL5mrtcTMa38DnfJEDvuefW6jOdEZ-1-Gh3hpDHfPtpwE00K7Rzsi9qFyjjGCFxODk2ULkHxC-P6ikaU9eMr0ucd14HKMCmcpmyBLcC11XAyV52ZtkxES756LVFtNi23xxueObGf6lQt4Vquv_omdd3XpElOqcMwHN1yoFwc4b2tMUJZKxh1xw0NyOf1s-H00xyuI-iXhPS8ctSUlM244fREGsojavKSexLArKbqStiDyEyU3oERSvRNK5qlwshHU9wgXZEIQt0ufiZGJXBmM30tp2ZDKZcsXZQ0jkx-pg&h=gQjnjHQTFiijNuG69MK0smdIRaWGM8nrRJv2YhPlj74 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Sep 2026 06:48:04 GMT expires: - '-1' pragma: @@ -1422,11 +1467,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/9f5338ab-1211-4ed8-8df8-c81a57fb521b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/0fc789bb-9a78-48f9-8651-5551752c5049 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5620E48ECAB14CE5A8ACFF4C1859ABD6 Ref B: BN1AA2051015033 Ref C: 2026-04-03T02:32:06Z' + - 'Ref A: A3937575BBDF4282812D6FC90CDDAB72 Ref B: SYD281080708042 Ref C: 2026-09-10T06:48:04Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_audits.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_audits.yaml index 6b026382130..212de8b4f58 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_audits.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_audits.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_create_with_audits","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_create_with_audits","date":"2026-09-10T06:48:07Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:43 GMT + - Thu, 10 Sep 2026 06:48:10 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FD50B849A2674C9F9330B20F5A50EA12 Ref B: BN1AA2051015021 Ref C: 2026-04-03T02:29:44Z' + - 'Ref A: 14D278D8118F4642BD00043D211D99A6 Ref B: SYD281080706054 Ref C: 2026-09-10T06:48:10Z' status: code: 200 message: OK @@ -65,28 +65,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/wprkspace000003?api-version=2025-02-01 response: body: - string: '{"properties":{"customerId":"2aaf81fb-eb78-46bf-a169-7264d8858320","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-04-03T02:29:47.237115Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-04-03T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-04-03T02:29:47.237115Z","modifiedDate":"2026-04-03T02:29:47.237115Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/wprkspace000003","name":"wprkspace000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"01036e78-0000-0100-0000-69cf261b0000\""}' + string: '{"properties":{"customerId":"90021dfb-ed16-4f8d-8cd0-4f90624ccb49","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-09-10T06:48:13.8215572Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-09-11T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-09-10T06:48:13.8215572Z","modifiedDate":"2026-09-10T06:48:13.8215572Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/wprkspace000003","name":"wprkspace000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"ac0382ef-0000-0100-0000-6aa252ad0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, - 2025-07-01 + 2025-07-01, 2026-03-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/91a20664-74d2-4a0f-a611-34e44267265f?api-version=2015-11-01-preview&t=639107801875561287&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=gmDasd3HDgFkUtI1-gETXeGMH4IVo8xwG10qTgozHkhFd0C1CxKefFPjI43j-gBgLahUMNzn1k03t9NMdJFpGgOhQu6OyPzumxPKFp1Sk6-h0aqwMxT_Xp78j8fPx14VTLXZjB8GLBNI8jXyfBfIgnz5AjZrLvv-wHUjmOvyb1gw263o16MnBJlxQlX3n0mx3Xqm7OalcgTnPMoT5155jucbhG3bJx5U9LWuiK_TufH2QHRyw-2muz2QMyYpmuS3-5T5h7eNCIWs2RpacBfa0RiQW9EFmn5iITpO4DEv98esUcT4wzikvQ-700pV7-1tiQDnFP76VH1DlnmP09DBPg&h=edN1Rz_TRSP8KynTlJcO2UtyZWf5U0xcFzwiZfwhKTg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/e88b3945-8d53-454e-9f56-045fb8d7741e?api-version=2015-11-01-preview&t=639246196948705931&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=p3YxjWlcKkHGguq_tvcLMO3ha1ykmcCOOeRHRw3WJ2I1YQy0OJ59ZW0C4SE-ZxcqDzGQFX-RNaJUImLZfrsdl7IRXuXey1m84lpi7WHpWe3I0ejqo1ZSdU_6N3oqK3RFH5a2VsVmiTsiCW_wiAz6xMe2qNGpWHZf9PUTN3md1GqrJuYvWHDsYZNF9giPZS3KqlIq8yN8C4oovfHi6osKsjj5T1zEorw7iet3R3NgoU-U5RA7cARcxzoVlW2OZGhHlPniD54pfgJHgHLa7f70y3om2FsORb1WyaTYOgCplHgvHulJbUg3DttMFfZfioccTcAOwHsP0kbaCD_HWp1bqg&h=lvfZxTokBlfzH5HjSh126UYjPZ7eegrGgvX9OZqezzo cache-control: - no-cache content-length: - - '884' + - '887' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:46 GMT + - Thu, 10 Sep 2026 06:48:14 GMT expires: - '-1' location: @@ -94,7 +94,7 @@ interactions: pragma: - no-cache request-context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + - appId= strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -102,13 +102,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/27702028-2db7-45a9-906a-fa7bce2c8290 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/45d49ccb-97bf-4ca5-881a-189d42a8905c x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '11998' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '798' x-msedge-ref: - - 'Ref A: 08F12CF8BFB44E3CB1A87E1E5A307FFD Ref B: BN1AA2051012025 Ref C: 2026-04-03T02:29:46Z' + - 'Ref A: 1D4246949261486B99510ABA8C68603A Ref B: SYD281080708062 Ref C: 2026-09-10T06:48:11Z' status: code: 201 message: Created @@ -126,12 +126,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/91a20664-74d2-4a0f-a611-34e44267265f?api-version=2015-11-01-preview&t=639107801875561287&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=gmDasd3HDgFkUtI1-gETXeGMH4IVo8xwG10qTgozHkhFd0C1CxKefFPjI43j-gBgLahUMNzn1k03t9NMdJFpGgOhQu6OyPzumxPKFp1Sk6-h0aqwMxT_Xp78j8fPx14VTLXZjB8GLBNI8jXyfBfIgnz5AjZrLvv-wHUjmOvyb1gw263o16MnBJlxQlX3n0mx3Xqm7OalcgTnPMoT5155jucbhG3bJx5U9LWuiK_TufH2QHRyw-2muz2QMyYpmuS3-5T5h7eNCIWs2RpacBfa0RiQW9EFmn5iITpO4DEv98esUcT4wzikvQ-700pV7-1tiQDnFP76VH1DlnmP09DBPg&h=edN1Rz_TRSP8KynTlJcO2UtyZWf5U0xcFzwiZfwhKTg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/e88b3945-8d53-454e-9f56-045fb8d7741e?api-version=2015-11-01-preview&t=639246196948705931&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=p3YxjWlcKkHGguq_tvcLMO3ha1ykmcCOOeRHRw3WJ2I1YQy0OJ59ZW0C4SE-ZxcqDzGQFX-RNaJUImLZfrsdl7IRXuXey1m84lpi7WHpWe3I0ejqo1ZSdU_6N3oqK3RFH5a2VsVmiTsiCW_wiAz6xMe2qNGpWHZf9PUTN3md1GqrJuYvWHDsYZNF9giPZS3KqlIq8yN8C4oovfHi6osKsjj5T1zEorw7iet3R3NgoU-U5RA7cARcxzoVlW2OZGhHlPniD54pfgJHgHLa7f70y3om2FsORb1WyaTYOgCplHgvHulJbUg3DttMFfZfioccTcAOwHsP0kbaCD_HWp1bqg&h=lvfZxTokBlfzH5HjSh126UYjPZ7eegrGgvX9OZqezzo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/91a20664-74d2-4a0f-a611-34e44267265f","name":"91a20664-74d2-4a0f-a611-34e44267265f","status":"InProgress","startTime":"2026-04-03T02:29:47.2471324Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/e88b3945-8d53-454e-9f56-045fb8d7741e","name":"e88b3945-8d53-454e-9f56-045fb8d7741e","status":"InProgress","startTime":"2026-09-10T06:48:13.8351803Z"}' headers: access-control-allow-origin: - '*' @@ -142,13 +142,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:51 GMT + - Thu, 10 Sep 2026 06:48:15 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + - appId= strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -156,11 +156,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/f84a2a04-e251-4858-b911-b562a575e776 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/423c6520-8a1c-4b78-90fa-986576f7da3f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6D588D2D76E14244BFEB1334127B6DCF Ref B: BN1AA2051012033 Ref C: 2026-04-03T02:29:51Z' + - 'Ref A: DE71F684BBD040D39D3574AC181FC4FD Ref B: SYD281080711023 Ref C: 2026-09-10T06:48:15Z' status: code: 200 message: OK @@ -178,12 +178,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/91a20664-74d2-4a0f-a611-34e44267265f?api-version=2015-11-01-preview&t=639107801875561287&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=gmDasd3HDgFkUtI1-gETXeGMH4IVo8xwG10qTgozHkhFd0C1CxKefFPjI43j-gBgLahUMNzn1k03t9NMdJFpGgOhQu6OyPzumxPKFp1Sk6-h0aqwMxT_Xp78j8fPx14VTLXZjB8GLBNI8jXyfBfIgnz5AjZrLvv-wHUjmOvyb1gw263o16MnBJlxQlX3n0mx3Xqm7OalcgTnPMoT5155jucbhG3bJx5U9LWuiK_TufH2QHRyw-2muz2QMyYpmuS3-5T5h7eNCIWs2RpacBfa0RiQW9EFmn5iITpO4DEv98esUcT4wzikvQ-700pV7-1tiQDnFP76VH1DlnmP09DBPg&h=edN1Rz_TRSP8KynTlJcO2UtyZWf5U0xcFzwiZfwhKTg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/e88b3945-8d53-454e-9f56-045fb8d7741e?api-version=2015-11-01-preview&t=639246196948705931&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=p3YxjWlcKkHGguq_tvcLMO3ha1ykmcCOOeRHRw3WJ2I1YQy0OJ59ZW0C4SE-ZxcqDzGQFX-RNaJUImLZfrsdl7IRXuXey1m84lpi7WHpWe3I0ejqo1ZSdU_6N3oqK3RFH5a2VsVmiTsiCW_wiAz6xMe2qNGpWHZf9PUTN3md1GqrJuYvWHDsYZNF9giPZS3KqlIq8yN8C4oovfHi6osKsjj5T1zEorw7iet3R3NgoU-U5RA7cARcxzoVlW2OZGhHlPniD54pfgJHgHLa7f70y3om2FsORb1WyaTYOgCplHgvHulJbUg3DttMFfZfioccTcAOwHsP0kbaCD_HWp1bqg&h=lvfZxTokBlfzH5HjSh126UYjPZ7eegrGgvX9OZqezzo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/91a20664-74d2-4a0f-a611-34e44267265f","name":"91a20664-74d2-4a0f-a611-34e44267265f","status":"Succeeded","startTime":"2026-04-03T02:29:47.2471324Z","endTime":"2026-04-03T02:30:02.4637232Z","properties":{}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/locations/westus/operationstatuses/e88b3945-8d53-454e-9f56-045fb8d7741e","name":"e88b3945-8d53-454e-9f56-045fb8d7741e","status":"Succeeded","startTime":"2026-09-10T06:48:13.8351803Z","endTime":"2026-09-10T06:48:28.8308591Z","properties":{}}' headers: access-control-allow-origin: - '*' @@ -194,13 +194,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:27 GMT + - Thu, 10 Sep 2026 06:48:46 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + - appId= strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -208,11 +208,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/a3484d4b-7e69-41e3-a0b6-33f49d2174ad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/dcb6b035-6a39-4e64-b905-507bd80b0500 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD0A97DC674D4772A04803B13B57392B Ref B: BN1AA2051015053 Ref C: 2026-04-03T02:30:27Z' + - 'Ref A: 5E3B1F6FB40D4626998F8158CF03E560 Ref B: SYD281080707036 Ref C: 2026-09-10T06:48:46Z' status: code: 200 message: OK @@ -230,32 +230,32 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/wprkspace000003?api-version=2025-02-01 response: body: - string: '{"properties":{"customerId":"2aaf81fb-eb78-46bf-a169-7264d8858320","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-04-03T02:29:47.237115Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-04-03T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-04-03T02:29:47.237115Z","modifiedDate":"2026-04-03T02:30:02.3723069Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/wprkspace000003","name":"wprkspace000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0103687b-0000-0100-0000-69cf262a0000\""}' + string: '{"properties":{"customerId":"90021dfb-ed16-4f8d-8cd0-4f90624ccb49","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2026-09-10T06:48:13.8215572Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2026-09-11T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2026-09-10T06:48:13.8215572Z","modifiedDate":"2026-09-10T06:48:28.7425105Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/wprkspace000003","name":"wprkspace000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"ac034ff4-0000-0100-0000-6aa252bc0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01, 2025-02-01, - 2025-07-01 + 2025-07-01, 2026-03-01 cache-control: - no-cache content-length: - - '886' + - '888' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:33 GMT + - Thu, 10 Sep 2026 06:48:47 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + - appId= strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -263,9 +263,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: E93100CE5362488A8E3A1D2DB834EA90 Ref B: BN1AA2051012049 Ref C: 2026-04-03T02:30:34Z' + - 'Ref A: F6B15E3DD198449588EA31C9588B6B84 Ref B: SYD281080709031 Ref C: 2026-09-10T06:48:47Z' status: code: 200 message: OK @@ -283,12 +283,12 @@ interactions: ParameterSetName: - -n -g --sku --workspace User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_create_with_audits","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_create_with_audits","date":"2026-09-10T06:48:07Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:40 GMT + - Thu, 10 Sep 2026 06:48:49 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 539B5E5AA378449DAAA79C199D75BAAA Ref B: BN1AA2051015019 Ref C: 2026-04-03T02:30:40Z' + - 'Ref A: B990C0BD1DA74280ADD83CCFAD3458D3 Ref B: SYD281080705042 Ref C: 2026-09-10T06:48:49Z' status: code: 200 message: OK @@ -334,23 +334,23 @@ interactions: ParameterSetName: - -n -g --sku --workspace User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:30:46.5519334Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:53.4395345+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:53.439606+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:48:50.5314797Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:58.0585275+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:58.0585966+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1604' + - '1637' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:52 GMT + - Thu, 10 Sep 2026 06:48:57 GMT expires: - '-1' pragma: @@ -362,13 +362,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/3f34df07-8fcc-40d5-a39c-55924d85aad6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9690358b-b54f-4ac7-8c4c-91972e963287 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: A9DFA214C664482BA882822E64942092 Ref B: BN1AA2051012049 Ref C: 2026-04-03T02:30:46Z' + - 'Ref A: 8F8AAD5FF08640CE903BF9F9BC986E58 Ref B: SYD281080707029 Ref C: 2026-09-10T06:48:50Z' status: code: 200 message: OK @@ -394,7 +394,7 @@ interactions: ParameterSetName: - -n -g --sku --workspace User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Insights/diagnosticSettings/clireg000002-diagnostic-settings?api-version=2021-05-01-preview response: @@ -408,7 +408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:00 GMT + - Thu, 10 Sep 2026 06:49:00 GMT expires: - '-1' pragma: @@ -420,11 +420,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9b2f6d91-c691-4122-bf66-ea4c21857074 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a1649e8f-806c-4e5a-bc98-8a9bded2b04e x-ms-ratelimit-remaining-subscription-resource-requests: - '99' x-msedge-ref: - - 'Ref A: 00A8E1C9E0524EA9896007FCBF557B2E Ref B: BN1AA2051015037 Ref C: 2026-04-03T02:30:58Z' + - 'Ref A: 39391F7E78AC41869085160FB093F480 Ref B: SYD281080707060 Ref C: 2026-09-10T06:48:58Z' status: code: 200 message: OK @@ -442,7 +442,7 @@ interactions: ParameterSetName: - -g --resource -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Insights/diagnosticSettings/clireg000002-diagnostic-settings?api-version=2021-05-01-preview response: @@ -456,7 +456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:04 GMT + - Thu, 10 Sep 2026 06:49:01 GMT expires: - '-1' pragma: @@ -468,11 +468,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9c163dc9-3364-4597-8854-782a20e050b2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/00d55fda-ebff-4f81-9f90-568ab99ddaed x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 52D3A881BD1C4D26A1F255161B026C79 Ref B: BN1AA2051012051 Ref C: 2026-04-03T02:31:05Z' + - 'Ref A: F782330BA419459B8461380822737590 Ref B: SYD281080708036 Ref C: 2026-09-10T06:49:01Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_data_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_data_endpoint.yaml new file mode 100644 index 00000000000..0b3f44b2da0 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_data_endpoint.yaml @@ -0,0 +1,267 @@ +interactions: +- request: + body: '{"location": "eastus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": + false, "dataEndpointEnabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --sku -l --data-endpoint-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:42:33.1513538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394103+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394415+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1762' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:42:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/04543e42-5436-4cb4-b865-9d89335bebfc + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-msedge-ref: + - 'Ref A: 0FE0D4ED395745E4A7D2FFEEFC7AE7FE Ref B: SYD281080706036 Ref C: 2026-09-10T06:42:31Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --data-endpoint-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:42:33.1513538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394103+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394415+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1762' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:42:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FD02E897A86E4CCDAC68DABD143A69B8 Ref B: SYD281080710029 Ref C: 2026-09-10T06:42:41Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"dataEndpointEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '46' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --data-endpoint-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:43.259921+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:42:33.1513538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394103+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394415+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1724' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:42:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4b69542d-1dc6-4ba5-9079-3621ef933762 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: A85ED77933BA48F3B6344A9B06250910 Ref B: SYD281080706025 Ref C: 2026-09-10T06:42:42Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --data-endpoint-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:43.259921+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:42:33.1513538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394103+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394415+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1724' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:42:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DAD65E4124DF4F9A92783FCDEDC62F52 Ref B: SYD281080710060 Ref C: 2026-09-10T06:42:44Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"dataEndpointEnabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '45' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --data-endpoint-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:45.7551236+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:42:33.1513538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394103+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:40.7394415+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1762' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:42:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1d7ca719-7c9d-457c-87e6-9e691408efd0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 9E5EFA4AD67C415AAA02E2AF993F7189 Ref B: SYD281080706042 Ref C: 2026-09-10T06:42:45Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_name_in_use.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_name_in_use.yaml index 7fe7450cb8a..d830d0eea50 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_name_in_use.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_name_in_use.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - -n -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/randomresourcegroupname?api-version=2024-11-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:37 GMT + - Thu, 10 Sep 2026 06:42:54 GMT expires: - '-1' pragma: @@ -47,10 +47,10 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DA171EC3CDCB44D7891B06C425A8BB2A Ref B: BN1AA2051013027 Ref C: 2026-04-03T02:29:37Z' + - 'Ref A: E3E7063A3D854BB484B3BD3DD17D02FC Ref B: SYD281080712034 Ref C: 2026-09-10T06:42:51Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: '{"location": "westus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": false, "autoGeneratedDomainNameLabelScope": "ResourceGroupReuse"}}' @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -n -g -l --sku --dnl-scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.7454326+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.7454326+00:00"},"properties":{"loginServer":"clireg000002-bcf8dufwe7b4egge.azurecr.io","creationDate":"2026-04-03T02:29:44.7454326Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:56.3605266+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:56.3605617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"ResourceGroupReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389+00:00"},"properties":{"loginServer":"clireg000002-hybrcnbrawh7hkf9.azurecr.io","creationDate":"2026-09-10T06:42:56.9946389Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:09.2917215+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:09.2917688+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"ResourceGroupReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1692' + - '1749' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:56 GMT + - Thu, 10 Sep 2026 06:43:09 GMT expires: - '-1' pragma: @@ -98,13 +98,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2f010e51-cc86-4d53-b5ab-108ee0b82fef + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/c2d9f681-92b0-440e-b620-bd65c69ab853 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: FE9D0CDC2A1842ACA257ED5AA5C59792 Ref B: BN1AA2051012029 Ref C: 2026-04-03T02:29:43Z' + - 'Ref A: E3E85EFC705241A2B892F6BB047BA168 Ref B: SYD281080710062 Ref C: 2026-09-10T06:42:55Z' status: code: 200 message: OK @@ -127,9 +127,9 @@ interactions: ParameterSetName: - -n -g -l --sku --dnl-scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/randomresourcegroupname/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/randomresourcegroupname/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"RegistryNameAlreadyInUse","message":"The registry @@ -137,7 +137,7 @@ interactions: claimed using following API: https://aka.ms/acr/check-name-availability"},"status":"Failed"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -145,7 +145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:02 GMT + - Thu, 10 Sep 2026 06:43:13 GMT expires: - '-1' pragma: @@ -157,13 +157,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/d9f39e68-5078-4f7b-80a6-9367615f2f81 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/134cb290-ec93-49be-b2ac-ba80b54c9289 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E67A08970A9642688CDFC7374A10E8B9 Ref B: BN1AA2051013011 Ref C: 2026-04-03T02:30:01Z' + - 'Ref A: C7F655A0B5194309A88AFB0BABAFCB52 Ref B: SYD281080708029 Ref C: 2026-09-10T06:43:10Z' status: code: 409 message: Conflict diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml index 541d8e5e7a8..08cd5fdb534 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku --dnl-scope User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.2052535+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.7101701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.7102073+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:20.6858425+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081034+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081472+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1685' + - '1742' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:01 GMT + - Thu, 10 Sep 2026 06:43:28 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c9ce27cb-e7e2-40d4-a9ac-7d58bfc937bf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/78052666-0aa6-4949-981d-86459216c894 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 5028D94B50AE4AD5B0B182BCBE6C2519 Ref B: BL2AA2010204025 Ref C: 2026-05-18T19:38:53Z' + - 'Ref A: BC0F796DBE484824A93C45FA4D68BD04 Ref B: SYD281080709042 Ref C: 2026-09-10T06:43:18Z' status: code: 200 message: OK @@ -75,9 +75,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The registry @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:02 GMT + - Thu, 10 Sep 2026 06:43:29 GMT expires: - '-1' pragma: @@ -102,11 +102,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/6d54403a-dfdb-45fe-8e5b-4636f53be66f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/6ef42b88-8681-44a6-a438-3d52cbb5d29d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73ACCF0FB1DE462AAB6F3336F82084F5 Ref B: MNZ221060610011 Ref C: 2026-05-18T19:39:03Z' + - 'Ref A: D63945A63E034F118B75CFFC10FEDC8D Ref B: SYD281080711036 Ref C: 2026-09-10T06:43:29Z' status: code: 200 message: OK @@ -124,23 +124,23 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.2052535+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.7101701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.7102073+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:20.6858425+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081034+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081472+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1697' + - '1754' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:04 GMT + - Thu, 10 Sep 2026 06:43:30 GMT expires: - '-1' pragma: @@ -156,7 +156,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 71F13461F2384B5DBD3A788D6BD1E350 Ref B: BL2AA2010204033 Ref C: 2026-05-18T19:39:04Z' + - 'Ref A: F591344C3F1046469AACA54CE9EE1DB0 Ref B: SYD281080706054 Ref C: 2026-09-10T06:43:30Z' status: code: 200 message: OK @@ -174,23 +174,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.2052535+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.7101701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.7102073+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:20.6858425+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081034+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081472+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1685' + - '1742' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:05 GMT + - Thu, 10 Sep 2026 06:43:31 GMT expires: - '-1' pragma: @@ -204,7 +204,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 436C1CCE4D984048BF276285153B5AA2 Ref B: BL2AA2030101047 Ref C: 2026-05-18T19:39:05Z' + - 'Ref A: F74617A96DAA412C924771B77D232CB2 Ref B: SYD281080709042 Ref C: 2026-09-10T06:43:31Z' status: code: 200 message: OK @@ -222,23 +222,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.2052535+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.7101701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.7102073+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:20.6858425+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081034+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081472+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1685' + - '1742' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:05 GMT + - Thu, 10 Sep 2026 06:43:32 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6037851E898648B4960D9698127B870C Ref B: MNZ221060619031 Ref C: 2026-05-18T19:39:06Z' + - 'Ref A: 244FB071C7C748CCBB610A84F035EB66 Ref B: SYD281080707060 Ref C: 2026-09-10T06:43:32Z' status: code: 200 message: OK @@ -270,15 +270,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-09-01-preview response: body: string: '{"value":[{"name":"Size","limit":536870912000,"currentValue":0,"unit":"Bytes"},{"name":"MaximumStorageCapacity","limit":109951162777600,"currentValue":0,"unit":"Bytes"},{"name":"Webhooks","limit":500,"currentValue":0,"unit":"Count"},{"name":"Geo-replications","limit":-1,"currentValue":0,"unit":"Count"},{"name":"IPRules","limit":200,"currentValue":0,"unit":"Count"},{"name":"VNetRules","limit":100,"currentValue":0,"unit":"Count"},{"name":"PrivateEndpointConnections","limit":400,"currentValue":0,"unit":"Count"},{"name":"ScopeMaps","limit":50000,"currentValue":0,"unit":"Count"},{"name":"Tokens","limit":50000,"currentValue":0,"unit":"Count"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -286,7 +286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:06 GMT + - Thu, 10 Sep 2026 06:43:33 GMT expires: - '-1' pragma: @@ -298,11 +298,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/06ce8eba-e980-4127-af6f-8360447e7497 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c030b248-1ffb-4be5-8389-dc67868a354a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2637BDD0B9E646C59ED78D4E9BD7449D Ref B: BL2AA2030101035 Ref C: 2026-05-18T19:39:07Z' + - 'Ref A: 217135D090504921B30FA617ABBFC75D Ref B: SYD281080710034 Ref C: 2026-09-10T06:43:33Z' status: code: 200 message: OK @@ -320,23 +320,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.2052535+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.7101701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.7102073+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:20.6858425+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081034+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081472+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1685' + - '1742' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:07 GMT + - Thu, 10 Sep 2026 06:43:34 GMT expires: - '-1' pragma: @@ -350,7 +350,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4FB239FFFE7C4FA193E2F52B2DF7633B Ref B: BL2AA2010205023 Ref C: 2026-05-18T19:39:08Z' + - 'Ref A: 9A55C6DA76B646BDB05227035CB88B6C Ref B: SYD281080707029 Ref C: 2026-09-10T06:43:34Z' status: code: 200 message: OK @@ -373,23 +373,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.7101701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.7102073+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081034+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081472+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:09 GMT + - Thu, 10 Sep 2026 06:43:35 GMT expires: - '-1' pragma: @@ -401,13 +401,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/2a27008f-38ce-46d5-bba6-bf9f96846836 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8d286e4f-0a34-4c62-b3a5-bbd3a2b76c3e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D960E9861380456BBFF71CF77CC7AAC2 Ref B: BL2AA2010204037 Ref C: 2026-05-18T19:39:09Z' + - 'Ref A: 0171FEEADD0A4AD5A0ED82ACC3C4990A Ref B: SYD281080710052 Ref C: 2026-09-10T06:43:35Z' status: code: 200 message: OK @@ -425,22 +425,21 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.8156103Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_y2esesfzzb4b47qyvjdy5k4k2if3tkrtu367fwlunxtu7xddrkb5uuz5dx/providers/Microsoft.ContainerRegistry/registries/clitestrbacfqrvg","name":"clitestrbacfqrvg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:13.3896262Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909Z"}}]}' headers: cache-control: - no-cache content-length: - - '10321' + - '3420' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:11 GMT + - Thu, 10 Sep 2026 06:43:36 GMT expires: - '-1' pragma: @@ -454,7 +453,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F6EBE59167144886AE0A3729E65B80CC Ref B: BL2AA2010205033 Ref C: 2026-05-18T19:39:10Z' + - 'Ref A: B3D2D419C7364059822D458FFE7E28B5 Ref B: SYD281080711040 Ref C: 2026-09-10T06:43:36Z' status: code: 200 message: OK @@ -472,23 +471,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.7101701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.7102073+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081034+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:28.4081472+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:12 GMT + - Thu, 10 Sep 2026 06:43:36 GMT expires: - '-1' pragma: @@ -502,7 +501,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BB851AA266C344468AFD41C6726FD4B2 Ref B: BL2AA2030101011 Ref C: 2026-05-18T19:39:12Z' + - 'Ref A: ABEC263552D8436F8ED92A977CBCAA99 Ref B: SYD281080705060 Ref C: 2026-09-10T06:43:37Z' status: code: 200 message: OK @@ -527,23 +526,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:13.5764152+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:13.6130012+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:13.6130895+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:38.8408114+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:38.9052421+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:38.9053043+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:12 GMT + - Thu, 10 Sep 2026 06:43:38 GMT expires: - '-1' pragma: @@ -555,13 +554,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/81da93b5-11d4-49e9-9d4c-6e6f5f7f050a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/539273ea-285d-4264-8065-c43e46a2be4f x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BB2FEFCF635D4BD8A4A7A85AAFB5E3CB Ref B: BL2AA2030101017 Ref C: 2026-05-18T19:39:13Z' + - 'Ref A: 0DE6DE39A07A463BBC7473C5120E11B6 Ref B: SYD281080707054 Ref C: 2026-09-10T06:43:38Z' status: code: 200 message: OK @@ -579,22 +578,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.3839711Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.8156103Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_y2esesfzzb4b47qyvjdy5k4k2if3tkrtu367fwlunxtu7xddrkb5uuz5dx/providers/Microsoft.ContainerRegistry/registries/clitestrbacfqrvg","name":"clitestrbacfqrvg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909Z"}}]}' headers: cache-control: - no-cache content-length: - - '10917' + - '3424' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:14 GMT + - Thu, 10 Sep 2026 06:43:39 GMT expires: - '-1' pragma: @@ -608,7 +606,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5CFE2214BA55455382AB4D39A359BB3F Ref B: MNZ221060608031 Ref C: 2026-05-18T19:39:14Z' + - 'Ref A: 1077710312454C49BF02E1D6B6EEE9B9 Ref B: SYD281080707023 Ref C: 2026-09-10T06:43:39Z' status: code: 200 message: OK @@ -626,23 +624,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:13.5764152+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:13.6130012+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:13.6130895+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:38.8408114+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:38.9052421+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:38.9053043+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:15 GMT + - Thu, 10 Sep 2026 06:43:41 GMT expires: - '-1' pragma: @@ -656,7 +654,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AD353A573F3341938C775694CC21A76E Ref B: BL2AA2010204023 Ref C: 2026-05-18T19:39:15Z' + - 'Ref A: E05EC16F34E04D3BA2A45765346025C9 Ref B: SYD281080711062 Ref C: 2026-09-10T06:43:40Z' status: code: 200 message: OK @@ -674,22 +672,21 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_y2esesfzzb4b47qyvjdy5k4k2if3tkrtu367fwlunxtu7xddrkb5uuz5dx/providers/Microsoft.ContainerRegistry/registries/clitestrbacfqrvg","name":"clitestrbacfqrvg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' headers: cache-control: - no-cache content-length: - - '10936' + - '4022' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:16 GMT + - Thu, 10 Sep 2026 06:43:41 GMT expires: - '-1' pragma: @@ -703,7 +700,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 89C8664381534701B24DF3E90D6FC6A1 Ref B: BL2AA2010205045 Ref C: 2026-05-18T19:39:16Z' + - 'Ref A: C09F506EEE5F4AA195C08E77377E062C Ref B: SYD281080705062 Ref C: 2026-09-10T06:43:42Z' status: code: 200 message: OK @@ -721,23 +718,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:13.5764152+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:13.6130012+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:13.6130895+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:38.8408114+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:38.9052421+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:38.9053043+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:17 GMT + - Thu, 10 Sep 2026 06:43:42 GMT expires: - '-1' pragma: @@ -751,7 +748,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1169120D6B804B7581A77FA1A7FD55F8 Ref B: BL2AA2030101051 Ref C: 2026-05-18T19:39:17Z' + - 'Ref A: E058348D89844C7DA255A81B90EBE6A2 Ref B: SYD281080709023 Ref C: 2026-09-10T06:43:43Z' status: code: 200 message: OK @@ -776,23 +773,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:19.3051265+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:19.3340547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:19.3341131+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:44.5497265+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:44.59578+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:44.5958498+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1759' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:19 GMT + - Thu, 10 Sep 2026 06:43:44 GMT expires: - '-1' pragma: @@ -804,13 +801,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ba46fa21-009e-465c-a10b-04673c2a5c17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/19326bc7-28b3-41e3-b034-99e4513a442a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3D330757A9954185A0BF3EDA60FDC538 Ref B: MNZ221060608019 Ref C: 2026-05-18T19:39:19Z' + - 'Ref A: EBA945DBBC4947128297FF7C17C64946 Ref B: SYD281080707023 Ref C: 2026-09-10T06:43:43Z' status: code: 200 message: OK @@ -828,22 +825,21 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_y2esesfzzb4b47qyvjdy5k4k2if3tkrtu367fwlunxtu7xddrkb5uuz5dx/providers/Microsoft.ContainerRegistry/registries/clitestrbacfqrvg","name":"clitestrbacfqrvg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '4022' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:19 GMT + - Thu, 10 Sep 2026 06:43:45 GMT expires: - '-1' pragma: @@ -857,7 +853,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DA9C1B3835D44FCCB72532DD5D063491 Ref B: MNZ221060608037 Ref C: 2026-05-18T19:39:20Z' + - 'Ref A: 11CB326CF2844866A6C0CAE542043B52 Ref B: SYD281080708023 Ref C: 2026-09-10T06:43:45Z' status: code: 200 message: OK @@ -875,23 +871,23 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:19.3051265+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:19.3340547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:19.3341131+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:44.5497265+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:44.59578+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:44.5958498+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1759' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:21 GMT + - Thu, 10 Sep 2026 06:43:46 GMT expires: - '-1' pragma: @@ -905,7 +901,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23F8680C842C4709A295DBD511B2A477 Ref B: MNZ221060618029 Ref C: 2026-05-18T19:39:21Z' + - 'Ref A: A8F657C525E64900A21B288EA29CEA26 Ref B: SYD281080711062 Ref C: 2026-09-10T06:43:46Z' status: code: 200 message: OK @@ -923,22 +919,21 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_y2esesfzzb4b47qyvjdy5k4k2if3tkrtu367fwlunxtu7xddrkb5uuz5dx/providers/Microsoft.ContainerRegistry/registries/clitestrbacfqrvg","name":"clitestrbacfqrvg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '4022' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:22 GMT + - Thu, 10 Sep 2026 06:43:47 GMT expires: - '-1' pragma: @@ -952,7 +947,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9D001713D5AD49F695D708CF4C1F5A9F Ref B: MNZ221060619021 Ref C: 2026-05-18T19:39:23Z' + - 'Ref A: A4C228EC200A44B4838BAF35C53C429E Ref B: SYD281080712052 Ref C: 2026-09-10T06:43:47Z' status: code: 200 message: OK @@ -970,23 +965,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:19.3051265+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:19.3340547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:19.3341131+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:44.5497265+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:44.59578+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:44.5958498+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1759' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:23 GMT + - Thu, 10 Sep 2026 06:43:48 GMT expires: - '-1' pragma: @@ -1000,7 +995,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44EDB47845464F3EA4DDE8BE7DF390F6 Ref B: BL2AA2010204037 Ref C: 2026-05-18T19:39:24Z' + - 'Ref A: 3B98A429255C44B6A7485F56C23EE780 Ref B: SYD281080711034 Ref C: 2026-09-10T06:43:48Z' status: code: 200 message: OK @@ -1025,23 +1020,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:25.6864555+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:25.727918+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:25.7279789+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:49.4475619+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:49.4894502+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:49.4895364+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1703' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:25 GMT + - Thu, 10 Sep 2026 06:43:48 GMT expires: - '-1' pragma: @@ -1053,13 +1048,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/f93d7a93-2b87-426e-ab35-f902401a14bd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8bdb709a-b07e-4aa0-963c-690ab93bb107 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: B17727C5177C4D1DA5CDDD10A96C29DB Ref B: MNZ221060608053 Ref C: 2026-05-18T19:39:25Z' + - 'Ref A: 1129695729774CEE9CD618E9222003FC Ref B: SYD281080708042 Ref C: 2026-09-10T06:43:49Z' status: code: 200 message: OK @@ -1077,22 +1072,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnoeibbt6tk6vp57imcvx5ijgo4ljjbihhtp7r6p5aiasyazkbzlxodauxoixovv67/providers/Microsoft.ContainerRegistry/registries/cliregzs5fhbar7rvyoq","name":"cliregzs5fhbar7rvyoq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:56.9946389Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:56.9946389Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_y2esesfzzb4b47qyvjdy5k4k2if3tkrtu367fwlunxtu7xddrkb5uuz5dx/providers/Microsoft.ContainerRegistry/registries/clitestrbacfqrvg","name":"clitestrbacfqrvg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:13.3896262Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.9222984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfd5mr4z36awa6hkmkap5ifee5sax2nciadb4nat3qsaeu5isler75tbahshqmxd3o/providers/Microsoft.ContainerRegistry/registries/clireguciidzjixazo33","name":"clireguciidzjixazo33","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '4022' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:26 GMT + - Thu, 10 Sep 2026 06:43:50 GMT expires: - '-1' pragma: @@ -1106,7 +1100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 60534D883151400DBCBFD693D31424E0 Ref B: MNZ221060618031 Ref C: 2026-05-18T19:39:26Z' + - 'Ref A: 28E986738246442B8FCA0ABCBB7FD759 Ref B: SYD281080708054 Ref C: 2026-09-10T06:43:50Z' status: code: 200 message: OK @@ -1124,23 +1118,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:25.6864555+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:25.727918+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:25.7279789+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:49.4475619+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:49.4894502+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:49.4895364+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1703' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:27 GMT + - Thu, 10 Sep 2026 06:43:51 GMT expires: - '-1' pragma: @@ -1154,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8F51AA1CC935423B8FBDA73DEDA9BC61 Ref B: BL2AA2010204025 Ref C: 2026-05-18T19:39:28Z' + - 'Ref A: 08C86FA579844750B90325E9B24ABB9B Ref B: SYD281080707031 Ref C: 2026-09-10T06:43:51Z' status: code: 200 message: OK @@ -1172,23 +1166,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:25.6864555+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:25.727918+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:25.7279789+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:49.4475619+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:49.4894502+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:49.4895364+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1703' + - '1761' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:29 GMT + - Thu, 10 Sep 2026 06:43:52 GMT expires: - '-1' pragma: @@ -1202,7 +1196,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8BFA78987C694459B53B7E0F75003D5A Ref B: BL2AA2010205011 Ref C: 2026-05-18T19:39:29Z' + - 'Ref A: 9A053FFF067245D8B3FDEE56C887E266 Ref B: SYD281080706029 Ref C: 2026-09-10T06:43:52Z' status: code: 200 message: OK @@ -1222,15 +1216,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"C9PlRnNKmB0fWUJNSAxkAJH6yTnhAFElsoXMwV4OXSySOHhfqn1lJQQJ99CIAC4f1cMEqg7NAAACAZCRkr0B"},{"name":"password2","value":"czT1O5Wvz5yrQ7LRowy2MkeMOlVsHBUzZeAkVodhxdVeapnLuS4KJQQJ99CIAC4f1cMEqg7NAAACAZCRQLLg"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1238,7 +1232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:29 GMT + - Thu, 10 Sep 2026 06:43:52 GMT expires: - '-1' pragma: @@ -1250,13 +1244,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/593cf9a7-253d-48b5-92df-5d53c61badd9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/600098c5-6d81-4b60-83af-75cef621b203 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C8340D33DF9A41C78DB5D20DA533927A Ref B: BL2AA2030101027 Ref C: 2026-05-18T19:39:30Z' + - 'Ref A: 996AF2170E82490BA9DDDD448411B8CF Ref B: SYD281080710034 Ref C: 2026-09-10T06:43:53Z' status: code: 200 message: OK @@ -1276,27 +1270,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:25.6864555+00:00"},"properties":{"loginServer":"clireg000002-dtg0c6ebg2eeedh9.azurecr.io","creationDate":"2026-05-18T19:38:54.2052535Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:25.727918+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:25.7279789+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:49.4475619+00:00"},"properties":{"loginServer":"clireg000002-grhrctepgma3g8cb.azurecr.io","creationDate":"2026-09-10T06:43:20.6858425Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:49.4894502+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:49.4895364+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"TenantReuse","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1702' + - '1760' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:32 GMT + - Thu, 10 Sep 2026 06:43:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-49e94ac1-52f1-11f1-9b77-7c1e526b4853?api-version=2026-03-01-preview&t=639147299722616931&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=fRqvvs6Nimaf_6OeDwEYpSajIYpr_WdUHGmNpgQtIwUPls7hNqj6pY-JrotbQtSSq-ieowIxDu7l9FEDdOG6k00ZU8gxLUqntzsUC6TYs6rEVMiJQLA2pYQ3rXzSnb5Rw4wQ9Mj0XaIC4Tp529V_4PUQDNOvVOnVqt0hG_XZBpziXD7-m4ixv9iiyPlsDVkruaNXaRlJJmltX5Jsq2YGzIBqtJjihY0GiIaLUgMx2UqlOyWsAR7czt7g2EO1--ZEjfT3X67rPOS_COZiWJ4fNf6O2Cqrzi_I_YXMXEBN0tusJfyab0SDw8T9raUkn9HZS24GLL6_daI1n10BJfgsmQ&h=VkRipHHjB_e6srKw7079MAlYJXXawkf8_JUlCV0HJ1M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-fe33cb53-ace2-11f1-988b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194348657967&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=N1AtNDEX_Okvu_NkT7SueVcBRMlihoUOPThreTFDTkUL5Om367BiAe4utIwmoVlvk4Krc8xfjhx8Yc6ta_3GYlcCgbMfNzd_7Vf5zWjLIx7__4tZyva7xYrxPhs_9r8heYhzvusW7OqcZ57UJUhb_jwP33dJASBgjJckzFYKVQI4giL4idXCIzfXKg4yptDXE-aliZehHYIv0rc-mYG64OcEcF5Azc7uHnoZFA3eoUWJsRt1F__BpdY0ygSPU_KcGJiVkRYWwVrRWu8mgbn0eZKhsypIRS6ogc4l-p1zneccQvjSodxMUlNFoT3sV-pegqm9p7YsR6vL4Qwuq9G1MA&h=CJ-O6t5g6ySOv3B8k2DeIWTqQ6MLJQ_TUVUHfVK3jac pragma: - no-cache strict-transport-security: @@ -1306,13 +1300,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/fef91ab4-2ce5-4847-9513-de9bd16901d8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5ceb43f3-93af-4b18-a3f5-3ff45f17aea0 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 52D465D7946242298F3E9D8F150D2992 Ref B: MNZ221060608019 Ref C: 2026-05-18T19:39:31Z' + - 'Ref A: 12F59D8D99D8469CBC6D355B9040CB85 Ref B: SYD281080710029 Ref C: 2026-09-10T06:43:54Z' status: code: 202 message: Accepted @@ -1330,9 +1324,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-49e94ac1-52f1-11f1-9b77-7c1e526b4853?api-version=2026-03-01-preview&t=639147299722616931&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=fRqvvs6Nimaf_6OeDwEYpSajIYpr_WdUHGmNpgQtIwUPls7hNqj6pY-JrotbQtSSq-ieowIxDu7l9FEDdOG6k00ZU8gxLUqntzsUC6TYs6rEVMiJQLA2pYQ3rXzSnb5Rw4wQ9Mj0XaIC4Tp529V_4PUQDNOvVOnVqt0hG_XZBpziXD7-m4ixv9iiyPlsDVkruaNXaRlJJmltX5Jsq2YGzIBqtJjihY0GiIaLUgMx2UqlOyWsAR7czt7g2EO1--ZEjfT3X67rPOS_COZiWJ4fNf6O2Cqrzi_I_YXMXEBN0tusJfyab0SDw8T9raUkn9HZS24GLL6_daI1n10BJfgsmQ&h=VkRipHHjB_e6srKw7079MAlYJXXawkf8_JUlCV0HJ1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-fe33cb53-ace2-11f1-988b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194348657967&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=N1AtNDEX_Okvu_NkT7SueVcBRMlihoUOPThreTFDTkUL5Om367BiAe4utIwmoVlvk4Krc8xfjhx8Yc6ta_3GYlcCgbMfNzd_7Vf5zWjLIx7__4tZyva7xYrxPhs_9r8heYhzvusW7OqcZ57UJUhb_jwP33dJASBgjJckzFYKVQI4giL4idXCIzfXKg4yptDXE-aliZehHYIv0rc-mYG64OcEcF5Azc7uHnoZFA3eoUWJsRt1F__BpdY0ygSPU_KcGJiVkRYWwVrRWu8mgbn0eZKhsypIRS6ogc4l-p1zneccQvjSodxMUlNFoT3sV-pegqm9p7YsR6vL4Qwuq9G1MA&h=CJ-O6t5g6ySOv3B8k2DeIWTqQ6MLJQ_TUVUHfVK3jac response: body: string: '' @@ -1342,11 +1336,11 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:32 GMT + - Thu, 10 Sep 2026 06:43:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-49e94ac1-52f1-11f1-9b77-7c1e526b4853?api-version=2026-03-01-preview&t=639147299736750344&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=rubXCO9RJKnBnCMSp8ylxb7-Sb0BrNAitO2FTupgyS8jek-11Yp5p2Cev8nR2tPlVmlHiCnyxJr0Sy6fwU1U36iWP-IqQG6aNsH-sLCy_CfRRgcOPuhYoRGm_1dXv8BCrEhKBD3bvAUAmviR9OQzoml4VmYZUm2_ERT71SJcHc3J2ACvUeAe8A5KC29CuMSzBYbqe_1Q23QQmc-F3uP-8_JbPP_-eDnyg-s0cy5WqlOj5Sw2WfKo-5fShjm1NegVVAfcknbkz2LocOBWSWhvkA89PHULy4lTfLDCVHQYmSr_cnZYXwqylEmnWl3TkS_pDUF825xJWX5DBLGiFkhPng&h=qVhZTGVIqg_NQIlMB_4fGeXKsy6OzjUYrRl15d4CNBA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-fe33cb53-ace2-11f1-988b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194361281599&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Dm4Kvxd9wCbYEVXfoGAnjXPAEQ5Ev_awETREQLUBibmwN9qtRSrddECgIXVWzvla42IEv2EF0TBLcW4wBqoAoYygoHgEk-jkYrqmsEokLI69JkRg-eT4xSmUdx2t63B2Q5q0AdE3PJkyIi022WJ7hKFoJlsz9E6nXmBZf2qvlnpt3uKLjzBaH2MpRLQQMQQbt6u9g6bywfy3_yKJWw3Iul3T7YU90QuA_-C09qb6VNtgFi-7VEd6aDsId4h8XZWCPEZ82dwO0Q08hGYysvK7eXuh5P_isVaW8jWmNRkfEcYo6TW8XgRKUGifn3VOd89rMh-1Q80GUInNlXlR5r87TA&h=ygyzEs3JqqptCagIXz__Z9pBtnMEVtCnnRPiD25OKg0 pragma: - no-cache strict-transport-security: @@ -1356,11 +1350,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/ee353c81-65f8-49b3-a065-49c74b7f9cea + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/40778a7f-3c9b-48bb-b1e8-ec2c37a5c9b0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6825359BC07248759F1C02E8EE15821B Ref B: MNZ221060608035 Ref C: 2026-05-18T19:39:33Z' + - 'Ref A: 2FAD52FC414E4FE58928E1526A208AFD Ref B: SYD281080706031 Ref C: 2026-09-10T06:43:55Z' status: code: 202 message: Accepted @@ -1378,9 +1372,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-49e94ac1-52f1-11f1-9b77-7c1e526b4853?api-version=2026-03-01-preview&t=639147299736750344&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=rubXCO9RJKnBnCMSp8ylxb7-Sb0BrNAitO2FTupgyS8jek-11Yp5p2Cev8nR2tPlVmlHiCnyxJr0Sy6fwU1U36iWP-IqQG6aNsH-sLCy_CfRRgcOPuhYoRGm_1dXv8BCrEhKBD3bvAUAmviR9OQzoml4VmYZUm2_ERT71SJcHc3J2ACvUeAe8A5KC29CuMSzBYbqe_1Q23QQmc-F3uP-8_JbPP_-eDnyg-s0cy5WqlOj5Sw2WfKo-5fShjm1NegVVAfcknbkz2LocOBWSWhvkA89PHULy4lTfLDCVHQYmSr_cnZYXwqylEmnWl3TkS_pDUF825xJWX5DBLGiFkhPng&h=qVhZTGVIqg_NQIlMB_4fGeXKsy6OzjUYrRl15d4CNBA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-fe33cb53-ace2-11f1-988b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194361281599&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Dm4Kvxd9wCbYEVXfoGAnjXPAEQ5Ev_awETREQLUBibmwN9qtRSrddECgIXVWzvla42IEv2EF0TBLcW4wBqoAoYygoHgEk-jkYrqmsEokLI69JkRg-eT4xSmUdx2t63B2Q5q0AdE3PJkyIi022WJ7hKFoJlsz9E6nXmBZf2qvlnpt3uKLjzBaH2MpRLQQMQQbt6u9g6bywfy3_yKJWw3Iul3T7YU90QuA_-C09qb6VNtgFi-7VEd6aDsId4h8XZWCPEZ82dwO0Q08hGYysvK7eXuh5P_isVaW8jWmNRkfEcYo6TW8XgRKUGifn3VOd89rMh-1Q80GUInNlXlR5r87TA&h=ygyzEs3JqqptCagIXz__Z9pBtnMEVtCnnRPiD25OKg0 response: body: string: '' @@ -1390,7 +1384,7 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:44 GMT + - Thu, 10 Sep 2026 06:44:06 GMT expires: - '-1' pragma: @@ -1402,11 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/c4290dd9-5787-44cb-80a0-4a077799b014 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/588f3b99-dda4-4698-ba3a-1cd80decfd53 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 63F4E65AE55F47DA9D799260D9108DC2 Ref B: MNZ221060618039 Ref C: 2026-05-18T19:39:44Z' + - 'Ref A: E841E081FC8043F684FA91744EB7B17C Ref B: SYD281080710034 Ref C: 2026-09-10T06:44:06Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_dual_stack_endpoints.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_dual_stack_endpoints.yaml new file mode 100644 index 00000000000..75c74d19e46 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_dual_stack_endpoints.yaml @@ -0,0 +1,267 @@ +interactions: +- request: + body: '{"location": "eastus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": + false, "dataEndpointEnabled": true, "endpointProtocol": "IPv4AndIPv6"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '157' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --sku -l --data-endpoint-enabled --endpoint-protocol + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:44:12.7730255Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078459+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078819+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4AndIPv6","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1769' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/acc75069-7f26-4b9c-b048-6f5482540016 + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-msedge-ref: + - 'Ref A: 3D019B9314834804A91802ECB9299E88 Ref B: SYD281080707029 Ref C: 2026-09-10T06:44:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --endpoint-protocol + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:44:12.7730255Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078459+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078819+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4AndIPv6","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1769' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F60C215B3DE247888D0FB9193F44852E Ref B: SYD281080705060 Ref C: 2026-09-10T06:44:21Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"endpointProtocol": "IPv4"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '44' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --endpoint-protocol + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:23.0288552+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:44:12.7730255Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078459+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078819+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1762' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4dfa3286-19bb-4f8a-9b61-8a7b6e5b7a53 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: DC73E100A0A64E0EAD3D595770F54FF0 Ref B: SYD281080708052 Ref C: 2026-09-10T06:44:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --endpoint-protocol + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:23.0288552+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:44:12.7730255Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078459+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078819+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1762' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FEE6337D9D144C7FA085C11D0870EECB Ref B: SYD281080708040 Ref C: 2026-09-10T06:44:24Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"endpointProtocol": "IPv4AndIPv6"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --endpoint-protocol + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:27.0645754+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:44:12.7730255Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078459+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:20.4078819+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4AndIPv6","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1769' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/2c8897a0-c74a-487d-b78f-f8fbd48ff002 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 83447CC4D6F241349A040F85F85EA5DD Ref B: SYD281080710060 Ref C: 2026-09-10T06:44:25Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml index adbe4057d5f..cad8a41c853 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.8156103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:06.6231858+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:06.6232329+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:35.8358344+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:37.780892+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:37.7809328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:06 GMT + - Thu, 10 Sep 2026 06:44:37 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/76b1c2cb-7ece-4848-89d3-60d9aa98bd64 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b2cb3fb9-7a90-456c-b176-0b5b4c5ab7db x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: B7AF24FCA54E47CDBBBF355C478DA4DC Ref B: MNZ221060608025 Ref C: 2026-05-18T19:38:53Z' + - 'Ref A: 4930B415AA21427A95CD4154574E6334 Ref B: SYD281080707062 Ref C: 2026-09-10T06:44:35Z' status: code: 200 message: OK @@ -75,9 +75,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The registry @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:07 GMT + - Thu, 10 Sep 2026 06:44:39 GMT expires: - '-1' pragma: @@ -102,11 +102,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/daa1ac4f-619d-4c97-b9db-572ba9e04c99 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/12b6c2e7-a109-4991-adfb-90b5e4ce82d0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 46D8EB72808A461B9DDA888FBD65729B Ref B: BL2AA2010205019 Ref C: 2026-05-18T19:39:07Z' + - 'Ref A: 8E29560093134CEE93FFB41EDD218833 Ref B: SYD281080707042 Ref C: 2026-09-10T06:44:38Z' status: code: 200 message: OK @@ -124,23 +124,23 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.8156103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:06.6231858+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:06.6232329+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:35.8358344+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:37.780892+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:37.7809328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1677' + - '1733' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:08 GMT + - Thu, 10 Sep 2026 06:44:40 GMT expires: - '-1' pragma: @@ -156,7 +156,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B809B1E268664DEDB966DEA37C8AD2FF Ref B: BL2AA2010204053 Ref C: 2026-05-18T19:39:08Z' + - 'Ref A: B63F756B6A67437E856D8F7391F12ABC Ref B: SYD281080710042 Ref C: 2026-09-10T06:44:40Z' status: code: 200 message: OK @@ -174,23 +174,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.8156103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:06.6231858+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:06.6232329+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:35.8358344+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:37.780892+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:37.7809328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:09 GMT + - Thu, 10 Sep 2026 06:44:41 GMT expires: - '-1' pragma: @@ -204,7 +204,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F9D3461D05A407295020C55CBAC29AF Ref B: MNZ221060610029 Ref C: 2026-05-18T19:39:09Z' + - 'Ref A: 865B1A19EF084187A80F1684B52D1EE4 Ref B: SYD281080708062 Ref C: 2026-09-10T06:44:41Z' status: code: 200 message: OK @@ -222,23 +222,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.8156103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:06.6231858+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:06.6232329+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:35.8358344+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:37.780892+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:37.7809328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:10 GMT + - Thu, 10 Sep 2026 06:44:41 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 75FED4669FCA49A388A37C40ECEBBD27 Ref B: MNZ221060609011 Ref C: 2026-05-18T19:39:10Z' + - 'Ref A: 6097674FD9B7412F8BB0CFAE05EBF594 Ref B: SYD281080710034 Ref C: 2026-09-10T06:44:42Z' status: code: 200 message: OK @@ -270,15 +270,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-09-01-preview response: body: string: '{"value":[{"name":"Size","limit":536870912000,"currentValue":0,"unit":"Bytes"},{"name":"MaximumStorageCapacity","limit":109951162777600,"currentValue":0,"unit":"Bytes"},{"name":"Webhooks","limit":500,"currentValue":0,"unit":"Count"},{"name":"Geo-replications","limit":-1,"currentValue":0,"unit":"Count"},{"name":"IPRules","limit":200,"currentValue":0,"unit":"Count"},{"name":"VNetRules","limit":100,"currentValue":0,"unit":"Count"},{"name":"PrivateEndpointConnections","limit":400,"currentValue":0,"unit":"Count"},{"name":"ScopeMaps","limit":50000,"currentValue":0,"unit":"Count"},{"name":"Tokens","limit":50000,"currentValue":0,"unit":"Count"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -286,7 +286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:11 GMT + - Thu, 10 Sep 2026 06:44:42 GMT expires: - '-1' pragma: @@ -298,11 +298,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/625821e5-37fa-4579-a1c1-b9aed1374ad6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/06214b30-732a-4ac2-90c4-8addf7a9503f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 89D7D86E0C554D38A76328EEF48CFB67 Ref B: BL2AA2030101027 Ref C: 2026-05-18T19:39:12Z' + - 'Ref A: 07FC7E19DFA94098ABF99AA17579840A Ref B: SYD281080712042 Ref C: 2026-09-10T06:44:42Z' status: code: 200 message: OK @@ -320,23 +320,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.8156103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:06.6231858+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:06.6232329+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:35.8358344+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:37.780892+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:37.7809328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:13 GMT + - Thu, 10 Sep 2026 06:44:44 GMT expires: - '-1' pragma: @@ -350,7 +350,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D681542C1294656B68BE29ABCE8C679 Ref B: MNZ221060609009 Ref C: 2026-05-18T19:39:13Z' + - 'Ref A: 2D2D090A01C84669B625F0038D55D62D Ref B: SYD281080706052 Ref C: 2026-09-10T06:44:43Z' status: code: 200 message: OK @@ -373,23 +373,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:06.6231858+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:06.6232329+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:37.780892+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:37.7809328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:16 GMT + - Thu, 10 Sep 2026 06:44:45 GMT expires: - '-1' pragma: @@ -401,13 +401,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e086d754-51c1-451b-8922-f1c32d30b077 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3d5a3259-0b99-4df9-bcf2-da57b4228102 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 771779ACD7AA4915B745F3AD912348C6 Ref B: MNZ221060618039 Ref C: 2026-05-18T19:39:14Z' + - 'Ref A: 657CD4646E21402480DC5196A428B2CD Ref B: SYD281080709029 Ref C: 2026-09-10T06:44:44Z' status: code: 200 message: OK @@ -425,22 +425,21 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_rfg4nbcwqcmsnfjopk2mwdic5ttw4lhg5jxkitxxgoexynkw67i6726uc3/providers/Microsoft.ContainerRegistry/registries/clitestrbacidrlh","name":"clitestrbacidrlh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:00.3314344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:00.3314344Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:32.0100072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '4016' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:17 GMT + - Thu, 10 Sep 2026 06:44:45 GMT expires: - '-1' pragma: @@ -454,7 +453,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6209291B3AF945BA8B4780B21A7C7A0A Ref B: MNZ221060619033 Ref C: 2026-05-18T19:39:17Z' + - 'Ref A: 9522A15AA1D0499AA4171EC3E091D317 Ref B: SYD281080709062 Ref C: 2026-09-10T06:44:46Z' status: code: 200 message: OK @@ -472,23 +471,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:06.6231858+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:06.6232329+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:37.780892+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:37.7809328+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:18 GMT + - Thu, 10 Sep 2026 06:44:46 GMT expires: - '-1' pragma: @@ -502,7 +501,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B9AEED7D08C34C10977AC89983DECF5F Ref B: BL2AA2010204017 Ref C: 2026-05-18T19:39:18Z' + - 'Ref A: C136D069E3094D76B1756B4C9037F9A8 Ref B: SYD281080709054 Ref C: 2026-09-10T06:44:47Z' status: code: 200 message: OK @@ -527,23 +526,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:20.105005+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:20.1771114+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:20.1771673+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:47.8405695+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:47.921743+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.9217893+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:19 GMT + - Thu, 10 Sep 2026 06:44:47 GMT expires: - '-1' pragma: @@ -555,13 +554,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/0d884501-f1da-4a9b-a36c-a47dc6d0b2b4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d11bbe63-2b57-4f5e-8eaa-f5a840d8baa1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FE78E296380F4437891994DC354AED22 Ref B: MNZ221060618023 Ref C: 2026-05-18T19:39:19Z' + - 'Ref A: B59EA728E21C4359856FC0A20D578A84 Ref B: SYD281080711060 Ref C: 2026-09-10T06:44:47Z' status: code: 200 message: OK @@ -579,22 +578,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:32.0100072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '4021' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:21 GMT + - Thu, 10 Sep 2026 06:44:48 GMT expires: - '-1' pragma: @@ -608,7 +606,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 111E3F6C4E6740B7951215C1377BDC2D Ref B: MNZ221060610037 Ref C: 2026-05-18T19:39:21Z' + - 'Ref A: E650D92065DF4285A0A7E722DE7EAD13 Ref B: SYD281080705060 Ref C: 2026-09-10T06:44:48Z' status: code: 200 message: OK @@ -626,23 +624,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:20.105005+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:20.1771114+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:20.1771673+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:47.8405695+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:47.921743+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.9217893+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:22 GMT + - Thu, 10 Sep 2026 06:44:48 GMT expires: - '-1' pragma: @@ -656,7 +654,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 339A8AF679A9459289791FB94DC5AAF8 Ref B: BL2AA2030101051 Ref C: 2026-05-18T19:39:22Z' + - 'Ref A: C7AD286291974F58B5F9AF8440742AC4 Ref B: SYD281080707054 Ref C: 2026-09-10T06:44:49Z' status: code: 200 message: OK @@ -674,22 +672,21 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:32.0100072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '4021' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:22 GMT + - Thu, 10 Sep 2026 06:44:50 GMT expires: - '-1' pragma: @@ -703,7 +700,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6CDDA064C01F4BE4B5F0B1945796A16C Ref B: BL2AA2010205023 Ref C: 2026-05-18T19:39:23Z' + - 'Ref A: 08B66599A1A24100845CB2DA93268A3A Ref B: SYD281080708052 Ref C: 2026-09-10T06:44:50Z' status: code: 200 message: OK @@ -721,23 +718,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:20.105005+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:20.1771114+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:20.1771673+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:47.8405695+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:47.921743+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:47.9217893+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:23 GMT + - Thu, 10 Sep 2026 06:44:51 GMT expires: - '-1' pragma: @@ -751,7 +748,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 465C68C1E4A943E9BF19E236814D58F7 Ref B: BL2AA2030101049 Ref C: 2026-05-18T19:39:24Z' + - 'Ref A: 8626DB35D0E843EDAA1A7D9BB6797039 Ref B: SYD281080706036 Ref C: 2026-09-10T06:44:51Z' status: code: 200 message: OK @@ -776,23 +773,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:25.9061984+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:25.9791604+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:25.9792105+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:52.0129009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:52.0576334+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:52.0576792+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1684' + - '1741' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:25 GMT + - Thu, 10 Sep 2026 06:44:51 GMT expires: - '-1' pragma: @@ -804,13 +801,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/e3509ec2-70be-4ea6-98c7-e87bf60e9966 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/389c1684-e743-44a0-85f8-5ce26aac1f75 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 111846B1F177453C94ED0FF1841F9DC3 Ref B: BL2AA2030101031 Ref C: 2026-05-18T19:39:25Z' + - 'Ref A: F5E788B94A0B4E6099D778461491598A Ref B: SYD281080710029 Ref C: 2026-09-10T06:44:51Z' status: code: 200 message: OK @@ -828,22 +825,21 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '4041' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:26 GMT + - Thu, 10 Sep 2026 06:44:52 GMT expires: - '-1' pragma: @@ -857,7 +853,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B9BD6F024DF8454D99D52D9195B23216 Ref B: MNZ221060618033 Ref C: 2026-05-18T19:39:27Z' + - 'Ref A: ED098B492238493685F32E2DCAFE8FB9 Ref B: SYD281080712062 Ref C: 2026-09-10T06:44:52Z' status: code: 200 message: OK @@ -875,23 +871,23 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:25.9061984+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:25.9791604+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:25.9792105+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:52.0129009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:52.0576334+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:52.0576792+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1684' + - '1741' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:27 GMT + - Thu, 10 Sep 2026 06:44:53 GMT expires: - '-1' pragma: @@ -905,7 +901,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 53CBBE2E4C8243EC8569E683A1E0C9DA Ref B: BL2AA2030101049 Ref C: 2026-05-18T19:39:28Z' + - 'Ref A: 6632D711E08B4E38B450EE656A1AC851 Ref B: SYD281080706036 Ref C: 2026-09-10T06:44:53Z' status: code: 200 message: OK @@ -923,22 +919,21 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '4041' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:28 GMT + - Thu, 10 Sep 2026 06:44:53 GMT expires: - '-1' pragma: @@ -952,7 +947,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC475B59A1CC41AEAF127695FA59A55B Ref B: MNZ221060610033 Ref C: 2026-05-18T19:39:29Z' + - 'Ref A: CC83936B1F0C41C6BC89D6D714048B4E Ref B: SYD281080708025 Ref C: 2026-09-10T06:44:54Z' status: code: 200 message: OK @@ -970,23 +965,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:25.9061984+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:25.9791604+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:25.9792105+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:52.0129009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:52.0576334+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:52.0576792+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1684' + - '1741' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:29 GMT + - Thu, 10 Sep 2026 06:44:54 GMT expires: - '-1' pragma: @@ -998,9 +993,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: FF67B346BF054C01BBC0C892F07C81C2 Ref B: BL2AA2010204035 Ref C: 2026-05-18T19:39:30Z' + - 'Ref A: E9A186930B34413B9697709E38113720 Ref B: SYD281080710054 Ref C: 2026-09-10T06:44:54Z' status: code: 200 message: OK @@ -1025,23 +1020,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:31.9152216+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:31.9784728+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:31.9785488+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:55.8499994+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898383+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898916+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1684' + - '1741' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:31 GMT + - Thu, 10 Sep 2026 06:44:55 GMT expires: - '-1' pragma: @@ -1053,13 +1048,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/69397488-2162-4566-adaf-3b937e8427cd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e9f22eb9-21f8-4217-b31f-baa11d65e236 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 971D30A4D4CE433BA90C1FFB4956880D Ref B: BL2AA2010204033 Ref C: 2026-05-18T19:39:31Z' + - 'Ref A: 68487171F16D4C1F90904F06F618AB51 Ref B: SYD281080710036 Ref C: 2026-09-10T06:44:55Z' status: code: 200 message: OK @@ -1077,22 +1072,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqrg2vnaulqi4tdrut6mgl3sngyeaiadle64dduhlvxcawsityfvhg3onvgttc62ci/providers/Microsoft.ContainerRegistry/registries/cliregw56bh3g7ii3tig","name":"cliregw56bh3g7ii3tig","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '4041' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:33 GMT + - Thu, 10 Sep 2026 06:44:56 GMT expires: - '-1' pragma: @@ -1106,7 +1100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5DE8C07F88314984AC955F7533FDE7E5 Ref B: MNZ221060609053 Ref C: 2026-05-18T19:39:33Z' + - 'Ref A: 485D376DBB304B60863EE5459D3A1F3E Ref B: SYD281080707060 Ref C: 2026-09-10T06:44:56Z' status: code: 200 message: OK @@ -1124,23 +1118,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:31.9152216+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:31.9784728+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:31.9785488+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:55.8499994+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898383+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898916+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1684' + - '1741' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:34 GMT + - Thu, 10 Sep 2026 06:44:56 GMT expires: - '-1' pragma: @@ -1154,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B81958E868AC43A09F3C84EC61E8945E Ref B: MNZ221060610029 Ref C: 2026-05-18T19:39:35Z' + - 'Ref A: 112F98F1C2DE4F9B8BB53AB3AFE38F34 Ref B: SYD281080708054 Ref C: 2026-09-10T06:44:57Z' status: code: 200 message: OK @@ -1172,23 +1166,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:31.9152216+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:31.9784728+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:31.9785488+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:55.8499994+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898383+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898916+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1684' + - '1741' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:36 GMT + - Thu, 10 Sep 2026 06:44:57 GMT expires: - '-1' pragma: @@ -1202,7 +1196,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 148973105BD44581B6CE761B8356EC49 Ref B: BL2AA2010205027 Ref C: 2026-05-18T19:39:36Z' + - 'Ref A: A5D2D0E41DC5437DA5102029F0E171AD Ref B: SYD281080708060 Ref C: 2026-09-10T06:44:57Z' status: code: 200 message: OK @@ -1222,15 +1216,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"CD66v98u19EuYQ2CbEXz8maelGlsHQ80CoHg5djsbZnGOEUzueyaJQQJ99CIAC4f1cMEqg7NAAACAZCRRI4x"},{"name":"password2","value":"5HY47J72BaDA7LxeKEHgNd64m1tSBxlz7QIuDN7omyULz5hCqvVrJQQJ99CIAC4f1cMEqg7NAAACAZCRbHqz"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1238,7 +1232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:37 GMT + - Thu, 10 Sep 2026 06:44:57 GMT expires: - '-1' pragma: @@ -1250,13 +1244,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/73b8a78c-bf1a-4a40-8f43-9b348e43d945 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/79566de4-d0c6-4723-82ea-dce88db5a574 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 58CCE1B102C04DB7970BCC49B29E4402 Ref B: BL2AA2030101035 Ref C: 2026-05-18T19:39:37Z' + - 'Ref A: 55375BCCFDF0428190569FCD443BC02F Ref B: SYD281080705054 Ref C: 2026-09-10T06:44:58Z' status: code: 200 message: OK @@ -1276,27 +1270,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:31.9152216+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.8156103Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:31.9784728+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:31.9785488+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:55.8499994+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:35.8358344Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898383+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:55.8898916+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:38 GMT + - Thu, 10 Sep 2026 06:44:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4e3cb485-52f1-11f1-9fe7-7c1e526b4853?api-version=2026-03-01-preview&t=639147299789822458&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ibCFjV_cgLukUx2svbaBXLdFudqV738K0tiEsTbUa_e_hDE0bNv2XUic8XA8eZpVtkF-qagks1iLsgXLb2Z2MQiAWDIoaD1zaKKK5AW9Sh8qtdB55SXBk9nXImGinDrW2LprlWc8w6XpcVGGjZ6JGnUk9ar0cKCbB489A2myUAFINWBKSWfckYrJkUWGBmng9mZFtIk0zdZrzpAeocezVmEs0-54ico5veHAKc2B4FLkaWslm0FXWXKjwDkWbjFvf9G9Z6AkksleML26WfUhhKj9uwa1neFHRInYOvICLh6wBgXHptglspFY7kkD3zZiuR_ZF_U9476aimLUlquTVg&h=EOnEc-4O18m5blY7bgR0KYmb0YsRtMrwicMf-vPzYng + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-24d97da1-ace3-11f1-a8fb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194996811856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LmZoiAIaylJCdWuRBkiHONK9Y3gMRIIYej8EKK40rIhv4CRjBud95QxyxG2XADV42Nu2DeSl4mWFVwXOcXSySsTSNj3FwfxCtftyTXCOffPMJiYpD6QDmsIYBPF128J7IzcjXZMDwXj4W8C0CSOyeiG9cga3lR8VCgvddbFqs0UIk6CWqo370Vo1TNVXQZhXly_Vz1Mv3MvqEvzqwQri-BfpCw9g7YityF0tqjjX6Cf7y6LhBBPIPLVTVgo1hIbkfskRVjtw79m1AMNMeMX0W5ge2Wgox9brp46qQMVf5Z1a1vcDJbF6k_RGERP7iZ0LBEpAlDlpHCFnD9DHhwYoBg&h=G2DEZ_WX8da9a291GJP7QByGD0HUpcN75CoeT6Zno1k pragma: - no-cache strict-transport-security: @@ -1306,13 +1300,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/fdf4c1ac-4cff-426a-87f1-f7464504178a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b186e091-c7df-4575-94ef-92b538345c15 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 9076D28D9B9E4726BAECD970D4F95253 Ref B: MNZ221060609045 Ref C: 2026-05-18T19:39:38Z' + - 'Ref A: 067AA9C75EC249508461DF6FBA11AE8E Ref B: SYD281080710023 Ref C: 2026-09-10T06:44:59Z' status: code: 202 message: Accepted @@ -1330,9 +1324,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4e3cb485-52f1-11f1-9fe7-7c1e526b4853?api-version=2026-03-01-preview&t=639147299789822458&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ibCFjV_cgLukUx2svbaBXLdFudqV738K0tiEsTbUa_e_hDE0bNv2XUic8XA8eZpVtkF-qagks1iLsgXLb2Z2MQiAWDIoaD1zaKKK5AW9Sh8qtdB55SXBk9nXImGinDrW2LprlWc8w6XpcVGGjZ6JGnUk9ar0cKCbB489A2myUAFINWBKSWfckYrJkUWGBmng9mZFtIk0zdZrzpAeocezVmEs0-54ico5veHAKc2B4FLkaWslm0FXWXKjwDkWbjFvf9G9Z6AkksleML26WfUhhKj9uwa1neFHRInYOvICLh6wBgXHptglspFY7kkD3zZiuR_ZF_U9476aimLUlquTVg&h=EOnEc-4O18m5blY7bgR0KYmb0YsRtMrwicMf-vPzYng + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-24d97da1-ace3-11f1-a8fb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194996811856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LmZoiAIaylJCdWuRBkiHONK9Y3gMRIIYej8EKK40rIhv4CRjBud95QxyxG2XADV42Nu2DeSl4mWFVwXOcXSySsTSNj3FwfxCtftyTXCOffPMJiYpD6QDmsIYBPF128J7IzcjXZMDwXj4W8C0CSOyeiG9cga3lR8VCgvddbFqs0UIk6CWqo370Vo1TNVXQZhXly_Vz1Mv3MvqEvzqwQri-BfpCw9g7YityF0tqjjX6Cf7y6LhBBPIPLVTVgo1hIbkfskRVjtw79m1AMNMeMX0W5ge2Wgox9brp46qQMVf5Z1a1vcDJbF6k_RGERP7iZ0LBEpAlDlpHCFnD9DHhwYoBg&h=G2DEZ_WX8da9a291GJP7QByGD0HUpcN75CoeT6Zno1k response: body: string: '' @@ -1342,11 +1336,11 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:39 GMT + - Thu, 10 Sep 2026 06:45:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4e3cb485-52f1-11f1-9fe7-7c1e526b4853?api-version=2026-03-01-preview&t=639147299800127031&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=qfAqdPufBm_lw5MlnhFpvWOxVzDXBHKUjyIUxph-rPsvupnBjQCXrMkThPaNenvNFs8wL48LiqbQhNsIsoVVDnzLftwxJE1zU1rT2SAt8ihyIT4IOfoVbnczp6GtfTHN98S6On_xViZ42EoS40Qdk8olblbHPM2wUtbdVwgp9PgTcHbhDq0emopR97KtSUbUM1NVEa1BHjju5bJMXNVkzsUi-cwrxmQfQ25-1TanX7P6ZIqYcWFcq9roMv1sAakPTdaV7Eh5YrrS0JYjMb_-dEu2ifSWMQB87ajhYpkcvzMUEnVdIqYTTMXNFkoGplXpZDRbC0YIHa-xfokZ3RQQSw&h=BVudKgLkEy9pDXZvwJgoQPsjp8tOIydqAXNFpxrf39E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-24d97da1-ace3-11f1-a8fb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195007870439&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=VYlhYVjUGlI39d0yl_MpfMB35pL2cz5mW5OeDYFdM6wuzdbKFHc4dToHwP6lkp8O4de4n-wu3fmySo4k1f6NCgQ9UWV2XhFpfkVOs48WtaLvd_Ukuqrnav0SfpGKKQb8AkjbC4Fz9TvtkOHSxiE4rH0Vi3vPx64kOkEdSVTN0IQ5p6GADH2386gSVreGXMQIqXIhGuGqZ_eQlNh6bfFDs0bQQ2LRqQDxDfmggRcwBv9iv0JNIJRnITWNzQ9x7BhiRU1hoZ2TOUncxvQAODFyHszKDDBaXXYawzCm6KrwYKAeAJz1tXC8O3kIvzsH0cLU2NvI9JE6hu8XaQrFML9hhw&h=mwVCyB9taebBoBHvHnhjrsTukp6BfYXKciEIylEDX6E pragma: - no-cache strict-transport-security: @@ -1356,11 +1350,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1eb25fec-d9c6-40ff-9528-b9ce67ff4ea5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c4e8dbce-ed60-43c6-a160-0e175974cd1c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59716954DC4E4214BC254374A1FCBB02 Ref B: MNZ221060618009 Ref C: 2026-05-18T19:39:39Z' + - 'Ref A: B3878EAD0BC042978B669852BFA789D9 Ref B: SYD281080710060 Ref C: 2026-09-10T06:45:00Z' status: code: 202 message: Accepted @@ -1378,9 +1372,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4e3cb485-52f1-11f1-9fe7-7c1e526b4853?api-version=2026-03-01-preview&t=639147299800127031&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=qfAqdPufBm_lw5MlnhFpvWOxVzDXBHKUjyIUxph-rPsvupnBjQCXrMkThPaNenvNFs8wL48LiqbQhNsIsoVVDnzLftwxJE1zU1rT2SAt8ihyIT4IOfoVbnczp6GtfTHN98S6On_xViZ42EoS40Qdk8olblbHPM2wUtbdVwgp9PgTcHbhDq0emopR97KtSUbUM1NVEa1BHjju5bJMXNVkzsUi-cwrxmQfQ25-1TanX7P6ZIqYcWFcq9roMv1sAakPTdaV7Eh5YrrS0JYjMb_-dEu2ifSWMQB87ajhYpkcvzMUEnVdIqYTTMXNFkoGplXpZDRbC0YIHa-xfokZ3RQQSw&h=BVudKgLkEy9pDXZvwJgoQPsjp8tOIydqAXNFpxrf39E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-24d97da1-ace3-11f1-a8fb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195007870439&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=VYlhYVjUGlI39d0yl_MpfMB35pL2cz5mW5OeDYFdM6wuzdbKFHc4dToHwP6lkp8O4de4n-wu3fmySo4k1f6NCgQ9UWV2XhFpfkVOs48WtaLvd_Ukuqrnav0SfpGKKQb8AkjbC4Fz9TvtkOHSxiE4rH0Vi3vPx64kOkEdSVTN0IQ5p6GADH2386gSVreGXMQIqXIhGuGqZ_eQlNh6bfFDs0bQQ2LRqQDxDfmggRcwBv9iv0JNIJRnITWNzQ9x7BhiRU1hoZ2TOUncxvQAODFyHszKDDBaXXYawzCm6KrwYKAeAJz1tXC8O3kIvzsH0cLU2NvI9JE6hu8XaQrFML9hhw&h=mwVCyB9taebBoBHvHnhjrsTukp6BfYXKciEIylEDX6E response: body: string: '' @@ -1390,7 +1384,7 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:50 GMT + - Thu, 10 Sep 2026 06:45:11 GMT expires: - '-1' pragma: @@ -1402,11 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/3e236342-46be-4eb5-8df7-1dee9ed0b47c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/22e957ab-8363-498f-9725-20d885880968 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D26EC552BC04DEEA7912B6129D5502F Ref B: BL2AA2010205027 Ref C: 2026-05-18T19:39:50Z' + - 'Ref A: CAFE9A96DD7F45CDA5B46BA541080067 Ref B: SYD281080712054 Ref C: 2026-09-10T06:45:11Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml index c9c2b91c8a7..6222be59524 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.3839711+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:19.4245849+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:11 GMT + - Thu, 10 Sep 2026 06:45:37 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b39bb583-6436-41eb-a9d7-51531ddb2158 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/8fb520d2-ecaa-4c7e-a103-88c661b6fd7d x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 96E9B9B2E88A478D984C5CD67082046A Ref B: BL2AA2030101033 Ref C: 2026-05-18T19:38:53Z' + - 'Ref A: E8B415C2DD4248A4A11E7D1DBCC3B7F0 Ref B: SYD281080711062 Ref C: 2026-09-10T06:45:16Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.3839711+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:19.4245849+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:12 GMT + - Thu, 10 Sep 2026 06:45:38 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 93BB5BD335C94AC79F9BA8D53259AB53 Ref B: BL2AA2010205029 Ref C: 2026-05-18T19:39:13Z' + - 'Ref A: CBB170B1596747F39B228BFC4809F7CE Ref B: SYD281080708042 Ref C: 2026-09-10T06:45:38Z' status: code: 200 message: OK @@ -122,23 +122,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:40.0019273+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1720' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:15 GMT + - Thu, 10 Sep 2026 06:45:39 GMT expires: - '-1' pragma: @@ -150,13 +150,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/7ce9c5b9-baa9-45d4-b1ad-f08f6fc4382c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9b3e0533-28f9-4420-981f-fec47eb8167b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D55C35A47110497F840110637E20E37D Ref B: MNZ221060619035 Ref C: 2026-05-18T19:39:14Z' + - 'Ref A: 3F673DDA137245219093D74558EC3E40 Ref B: SYD281080709031 Ref C: 2026-09-10T06:45:39Z' status: code: 200 message: OK @@ -179,9 +179,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The registry @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:16 GMT + - Thu, 10 Sep 2026 06:45:42 GMT expires: - '-1' pragma: @@ -206,11 +206,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/24c61c62-b453-48f7-8592-b3035ed425b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/194e07b6-1690-4102-9c93-fb1598b3779c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 15A1D9DE27DF467EB855E89650DA3A75 Ref B: BL2AA2010205027 Ref C: 2026-05-18T19:39:16Z' + - 'Ref A: A5E126B44FC4487883A9A7DA247418BF Ref B: SYD281080709025 Ref C: 2026-09-10T06:45:40Z' status: code: 200 message: OK @@ -228,23 +228,23 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:40.0019273+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1676' + - '1732' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:17 GMT + - Thu, 10 Sep 2026 06:45:43 GMT expires: - '-1' pragma: @@ -260,7 +260,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A605CDA33BB34FE8A23D60BF5693A55D Ref B: BL2AA2010204039 Ref C: 2026-05-18T19:39:17Z' + - 'Ref A: 21C20300F4494DB4BBF7A4ED0E25CFA1 Ref B: SYD281080712054 Ref C: 2026-09-10T06:45:43Z' status: code: 200 message: OK @@ -278,23 +278,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:40.0019273+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1720' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:19 GMT + - Thu, 10 Sep 2026 06:45:44 GMT expires: - '-1' pragma: @@ -308,7 +308,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E440D3BEA92A44E28BB953E1E1B01B50 Ref B: MNZ221060619011 Ref C: 2026-05-18T19:39:19Z' + - 'Ref A: 92A0C24372584C29805C4F4074C4FA69 Ref B: SYD281080708023 Ref C: 2026-09-10T06:45:44Z' status: code: 200 message: OK @@ -326,23 +326,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:40.0019273+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1720' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:20 GMT + - Thu, 10 Sep 2026 06:45:45 GMT expires: - '-1' pragma: @@ -356,7 +356,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D40EC791C79F4BAE903D08CEB92C5969 Ref B: BL2AA2010204025 Ref C: 2026-05-18T19:39:20Z' + - 'Ref A: 6D56B8CE7F024878B0B3100CA851EFD3 Ref B: SYD281080712025 Ref C: 2026-09-10T06:45:44Z' status: code: 200 message: OK @@ -374,15 +374,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-09-01-preview response: body: string: '{"value":[{"name":"Size","limit":536870912000,"currentValue":0,"unit":"Bytes"},{"name":"MaximumStorageCapacity","limit":109951162777600,"currentValue":0,"unit":"Bytes"},{"name":"Webhooks","limit":500,"currentValue":0,"unit":"Count"},{"name":"Geo-replications","limit":-1,"currentValue":0,"unit":"Count"},{"name":"IPRules","limit":200,"currentValue":0,"unit":"Count"},{"name":"VNetRules","limit":100,"currentValue":0,"unit":"Count"},{"name":"PrivateEndpointConnections","limit":400,"currentValue":0,"unit":"Count"},{"name":"ScopeMaps","limit":50000,"currentValue":0,"unit":"Count"},{"name":"Tokens","limit":50000,"currentValue":0,"unit":"Count"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -390,7 +390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:21 GMT + - Thu, 10 Sep 2026 06:45:45 GMT expires: - '-1' pragma: @@ -402,11 +402,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/4ff908df-dc7d-4eb7-adfb-35b3443a31b5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/43eec4c7-be66-4b82-8c92-671b08eab104 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B9A33FBDE2F747F98DD6A67CACC2A89A Ref B: BL2AA2010204017 Ref C: 2026-05-18T19:39:21Z' + - 'Ref A: 144492DD6BD44582B068166C808F3FCC Ref B: SYD281080705034 Ref C: 2026-09-10T06:45:45Z' status: code: 200 message: OK @@ -424,23 +424,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:40.0019273+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1720' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:22 GMT + - Thu, 10 Sep 2026 06:45:46 GMT expires: - '-1' pragma: @@ -454,7 +454,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44811C9B4BC34DA6A4720149007F6345 Ref B: BL2AA2010205019 Ref C: 2026-05-18T19:39:22Z' + - 'Ref A: 21B4F5D26CB14F9C92AAEB3FF3274734 Ref B: SYD281080706060 Ref C: 2026-09-10T06:45:46Z' status: code: 200 message: OK @@ -477,23 +477,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:23 GMT + - Thu, 10 Sep 2026 06:45:48 GMT expires: - '-1' pragma: @@ -505,13 +505,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/66af3dcd-77a3-4303-b61d-70380dfff5e2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/cbb77cae-8bd3-49dd-a083-dc631c69c5ce x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 296D3332A698469BA8CCB0C5870C06C1 Ref B: BL2AA2030101053 Ref C: 2026-05-18T19:39:23Z' + - 'Ref A: ED5316B8AFFA4298B62C30B6726D27A9 Ref B: SYD281080710023 Ref C: 2026-09-10T06:45:48Z' status: code: 200 message: OK @@ -529,22 +529,21 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:25 GMT + - Thu, 10 Sep 2026 06:45:49 GMT expires: - '-1' pragma: @@ -558,7 +557,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 20D6EFA8BD14492FA93581E18DF6842F Ref B: MNZ221060609033 Ref C: 2026-05-18T19:39:25Z' + - 'Ref A: AEBC8AF02A4741D2B633760F7572D590 Ref B: SYD281080706034 Ref C: 2026-09-10T06:45:49Z' status: code: 200 message: OK @@ -576,23 +575,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:12.0825617+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:12.0826181+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:45:37.7823443+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:37.782394+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:26 GMT + - Thu, 10 Sep 2026 06:45:49 GMT expires: - '-1' pragma: @@ -606,7 +605,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CBD198A98B2A4D5EB66CA99A580047B5 Ref B: MNZ221060618033 Ref C: 2026-05-18T19:39:26Z' + - 'Ref A: E97819EF09F046A983BC21CB65932E22 Ref B: SYD281080707034 Ref C: 2026-09-10T06:45:50Z' status: code: 200 message: OK @@ -631,23 +630,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:28.5271679+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:28.5879547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:28.5880185+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:51.2611995+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:51.2860384+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:51.2860937+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:27 GMT + - Thu, 10 Sep 2026 06:45:50 GMT expires: - '-1' pragma: @@ -659,13 +658,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/ec6d0a68-15a3-40aa-a238-bf72e7030f24 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/64430572-47a2-45b0-9497-b7fe01cef967 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: AF620121E82C47679318219A662D1BE1 Ref B: MNZ221060610053 Ref C: 2026-05-18T19:39:27Z' + - 'Ref A: DA59B5F1AFED4ED1A3D05075BB4E77C2 Ref B: SYD281080711023 Ref C: 2026-09-10T06:45:51Z' status: code: 200 message: OK @@ -683,22 +682,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:29 GMT + - Thu, 10 Sep 2026 06:45:51 GMT expires: - '-1' pragma: @@ -712,7 +710,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 750F6D7CBD0E4591B7DF5E80AE79C1EA Ref B: MNZ221060608027 Ref C: 2026-05-18T19:39:29Z' + - 'Ref A: 53CB5BC08A4B4832A45B925F74FD3CE5 Ref B: SYD281080709029 Ref C: 2026-09-10T06:45:51Z' status: code: 200 message: OK @@ -730,23 +728,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:28.5271679+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:28.5879547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:28.5880185+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:51.2611995+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:51.2860384+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:51.2860937+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:30 GMT + - Thu, 10 Sep 2026 06:45:52 GMT expires: - '-1' pragma: @@ -760,7 +758,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9D2561BEEE5E469696B7641D908F75C5 Ref B: MNZ221060618021 Ref C: 2026-05-18T19:39:30Z' + - 'Ref A: 13F507E6C4BC454CB12825D6C678522A Ref B: SYD281080711023 Ref C: 2026-09-10T06:45:52Z' status: code: 200 message: OK @@ -778,22 +776,21 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:31 GMT + - Thu, 10 Sep 2026 06:45:54 GMT expires: - '-1' pragma: @@ -807,7 +804,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A92A105A601B4985ABA391D52A37A760 Ref B: MNZ221060619021 Ref C: 2026-05-18T19:39:31Z' + - 'Ref A: 2AA433545DD84523BAC290383BFF8873 Ref B: SYD281080712023 Ref C: 2026-09-10T06:45:53Z' status: code: 200 message: OK @@ -825,23 +822,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:28.5271679+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:28.5879547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:28.5880185+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:51.2611995+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:51.2860384+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:51.2860937+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:32 GMT + - Thu, 10 Sep 2026 06:45:55 GMT expires: - '-1' pragma: @@ -855,7 +852,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 741D7F4D675043DC8F362B19ABF179F2 Ref B: BL2AA2010205045 Ref C: 2026-05-18T19:39:32Z' + - 'Ref A: 2DF6C8E87E98414BABC1CC8B1439059D Ref B: SYD281080709042 Ref C: 2026-09-10T06:45:54Z' status: code: 200 message: OK @@ -880,23 +877,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:34.0388195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:34.0844154+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:34.0844832+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:56.019001+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:56.0551387+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:56.0552014+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:33 GMT + - Thu, 10 Sep 2026 06:45:55 GMT expires: - '-1' pragma: @@ -908,13 +905,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/04ceefc9-68e8-459d-8b92-1dfb72935385 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/18f22151-3adb-4c43-abd0-22bb18ee2254 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1AA3C110EBD14C9FB0527AD40F1EB73C Ref B: BL2AA2010204017 Ref C: 2026-05-18T19:39:33Z' + - 'Ref A: 7F08B8A4F6D04501BBC191ADBE593314 Ref B: SYD281080705036 Ref C: 2026-09-10T06:45:55Z' status: code: 200 message: OK @@ -932,22 +929,21 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:35 GMT + - Thu, 10 Sep 2026 06:45:56 GMT expires: - '-1' pragma: @@ -961,7 +957,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 883C98387D21460C8B637B769123810B Ref B: MNZ221060619029 Ref C: 2026-05-18T19:39:35Z' + - 'Ref A: C2360ACD49774B0A854462AF873C076C Ref B: SYD281080708025 Ref C: 2026-09-10T06:45:56Z' status: code: 200 message: OK @@ -979,23 +975,23 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:34.0388195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:34.0844154+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:34.0844832+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:56.019001+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:56.0551387+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:56.0552014+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:36 GMT + - Thu, 10 Sep 2026 06:45:57 GMT expires: - '-1' pragma: @@ -1009,7 +1005,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9ACBA753FEF34FF488744D4614B28D04 Ref B: BL2AA2030101039 Ref C: 2026-05-18T19:39:36Z' + - 'Ref A: 817EA4CD7CE84BE18552903E4ED91C88 Ref B: SYD281080709052 Ref C: 2026-09-10T06:45:57Z' status: code: 200 message: OK @@ -1027,22 +1023,21 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:37 GMT + - Thu, 10 Sep 2026 06:45:58 GMT expires: - '-1' pragma: @@ -1056,7 +1051,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 63E70998255641B9B9AC7BED798B1A47 Ref B: MNZ221060608017 Ref C: 2026-05-18T19:39:37Z' + - 'Ref A: F8B7372DFAA2411286D954F747560674 Ref B: SYD281080705036 Ref C: 2026-09-10T06:45:58Z' status: code: 200 message: OK @@ -1074,23 +1069,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:34.0388195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:34.0844154+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:34.0844832+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:56.019001+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:56.0551387+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:45:56.0552014+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:37 GMT + - Thu, 10 Sep 2026 06:45:59 GMT expires: - '-1' pragma: @@ -1104,7 +1099,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 12FF35B67C0E49DEBA4B5DDAB0DB02EE Ref B: BL2AA2010204007 Ref C: 2026-05-18T19:39:38Z' + - 'Ref A: 82E2A37D268A4E5D8BA0F99B10DD7E04 Ref B: SYD281080711062 Ref C: 2026-09-10T06:45:59Z' status: code: 200 message: OK @@ -1129,23 +1124,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:39.5964621+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800121+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800654+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:01.0023601+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392125+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392801+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:39 GMT + - Thu, 10 Sep 2026 06:46:00 GMT expires: - '-1' pragma: @@ -1157,13 +1152,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/81982d26-db9f-413e-a1b8-c62886347c64 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/49870079-7df0-4d3f-a695-cb5c44132a66 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 47B10E2857FE4693913C37A55640F439 Ref B: BL2AA2010205047 Ref C: 2026-05-18T19:39:39Z' + - 'Ref A: 190A486DB255446BA241C63EA9525BC4 Ref B: SYD281080712040 Ref C: 2026-09-10T06:46:00Z' status: code: 200 message: OK @@ -1181,22 +1176,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdtsbclpvb3wvh62xa3lszp3pljcfebvxiw3ujrkcrewveck7aidbhtgxehgdmmmwq/providers/Microsoft.ContainerRegistry/registries/cliregry4ohzz7vkqalx","name":"cliregry4ohzz7vkqalx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:48.4481855Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '2829' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:40 GMT + - Thu, 10 Sep 2026 06:46:01 GMT expires: - '-1' pragma: @@ -1210,7 +1204,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E869B0A53F5643DBB6D7D07C5890E78B Ref B: BL2AA2010205039 Ref C: 2026-05-18T19:39:40Z' + - 'Ref A: DBBB772813FB415CA27C1819462A6273 Ref B: SYD281080709052 Ref C: 2026-09-10T06:46:01Z' status: code: 200 message: OK @@ -1228,23 +1222,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:39.5964621+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800121+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800654+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:01.0023601+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392125+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392801+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:41 GMT + - Thu, 10 Sep 2026 06:46:02 GMT expires: - '-1' pragma: @@ -1258,7 +1252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C35F3B79FFB04A47BD3FFB3530357E62 Ref B: BL2AA2010204005 Ref C: 2026-05-18T19:39:41Z' + - 'Ref A: 84FD4FEA97CD42A290B9FA4DA0E1214A Ref B: SYD281080712042 Ref C: 2026-09-10T06:46:02Z' status: code: 200 message: OK @@ -1276,23 +1270,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:39.5964621+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800121+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800654+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:01.0023601+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392125+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392801+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1683' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:41 GMT + - Thu, 10 Sep 2026 06:46:03 GMT expires: - '-1' pragma: @@ -1306,7 +1300,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6FD1B2D844CD48158E8FFA5DE6D3E6B4 Ref B: MNZ221060610033 Ref C: 2026-05-18T19:39:42Z' + - 'Ref A: 12A0797149814C2D82ED1C039CF7EAC2 Ref B: SYD281080707062 Ref C: 2026-09-10T06:46:03Z' status: code: 200 message: OK @@ -1326,15 +1320,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"RDZH8GD7LRboEXwWBEWuUs4EVasfPoygdfLfXdUtY5mMSgS1ldOBJQQJ99CIAC4f1cMEqg7NAAACAZCR62EX"},{"name":"password2","value":"2nb4uLVX6IWEJ7ap2tLsMftopqLGqLYx1PJQtJUjOSLsxvEyeyzOJQQJ99CIAC4f1cMEqg7NAAACAZCRMQRF"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1342,7 +1336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:42 GMT + - Thu, 10 Sep 2026 06:46:04 GMT expires: - '-1' pragma: @@ -1354,13 +1348,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b3f305e5-c4b1-4003-808a-f5b4b26dd1ac + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/874c7e00-b7a4-4314-9503-2160dbe3d528 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 29E8509614414FC29DB43767708056C3 Ref B: MNZ221060610029 Ref C: 2026-05-18T19:39:42Z' + - 'Ref A: 6615BD19BB5D42D18E6313F2D650F701 Ref B: SYD281080706029 Ref C: 2026-09-10T06:46:04Z' status: code: 200 message: OK @@ -1380,27 +1374,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:39.5964621+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.3839711Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800121+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:39.6800654+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:45:19.4245849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:01.0023601+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:45:19.4245849Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392125+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:46:01.0392801+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1682' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:43 GMT + - Thu, 10 Sep 2026 06:46:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-5154aa36-52f1-11f1-aa20-7c1e526b4853?api-version=2026-03-01-preview&t=639147299840482699&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ALrXGew3IrWAycOnFGpsHcdH9e-o37GP3FZ9Nw9fs2kCycwrORGN78AC_VzYsv1L_Gqa2ml230kwJh7NjRA0KtNuzGM6jzErT-XYy8Lqm1BrijgaA8WrdLtCS9OXrbeIZw_Zh9IHyGR86GPKbFN6iLoafDr3pi6L-qj4nS4_XRo2GwWpoesa4Gpc5PtPwkCGkexmL-hXNvQX6U3_y9eh6yYs1UglIU7nFZArSoliMvUgl22fRArmSlMbQXgUrkbDWj0P0nY6OU5Jo3P5BNZhOMfm7Lbs-H-r0VjyzF4WwL0l7mKwfzR7cSdX72VRGzx9nCoZclMJ2NNoLgkcqXKNlw&h=gp2AoVIkxnB9czMneShS6EIQGtLAkM3a7Uh9ix6QIKc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4c7e80e7-ace3-11f1-92fc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195663090475&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=XxrM8tKNPPyZ86VyJi-Cjqs0NIscFkdhyot1kbm881SD3ttds4aTGjUs_bwK5HPaz8Dpw48amK5NZeH1i3c0wTyM_jzzhZUmZyS2dvgMe4bFOujA92_o4jlFhTaV8jZd3ikJ338qiC9cQSaNaoqSmSdwVrzFK06BJXlzktvtKT255u15ho95iooEPkkktQjqAZCBw1b9BmJuIyNX7cETBaX0jIu-wG-o13xkba4BE1IZE2Sj4mVlPwD8YbSMU-_kBDWkyhMDL2QCbLHqd8FzljgrId6wr_NWclc5c9S2SjZzukNH-kbVTzXEqBMbMgihkS4sDVkW9yueaOWDRNjdHA&h=FDUWFZWsyr_UWYUUAFazJNyBNHCr8G61a22V9PNVBkk pragma: - no-cache strict-transport-security: @@ -1410,13 +1404,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/3beb7a04-11cc-46c7-bca3-9c2ec4001107 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/241f223b-119a-4564-8226-f9b4e9143c48 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 4FE60BAA16744830A70AD8B7A6D409E0 Ref B: MNZ221060619053 Ref C: 2026-05-18T19:39:43Z' + - 'Ref A: 3C0B73A3587546E9A82CCAA93DB535B8 Ref B: SYD281080707031 Ref C: 2026-09-10T06:46:05Z' status: code: 202 message: Accepted @@ -1434,9 +1428,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-5154aa36-52f1-11f1-aa20-7c1e526b4853?api-version=2026-03-01-preview&t=639147299840482699&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=ALrXGew3IrWAycOnFGpsHcdH9e-o37GP3FZ9Nw9fs2kCycwrORGN78AC_VzYsv1L_Gqa2ml230kwJh7NjRA0KtNuzGM6jzErT-XYy8Lqm1BrijgaA8WrdLtCS9OXrbeIZw_Zh9IHyGR86GPKbFN6iLoafDr3pi6L-qj4nS4_XRo2GwWpoesa4Gpc5PtPwkCGkexmL-hXNvQX6U3_y9eh6yYs1UglIU7nFZArSoliMvUgl22fRArmSlMbQXgUrkbDWj0P0nY6OU5Jo3P5BNZhOMfm7Lbs-H-r0VjyzF4WwL0l7mKwfzR7cSdX72VRGzx9nCoZclMJ2NNoLgkcqXKNlw&h=gp2AoVIkxnB9czMneShS6EIQGtLAkM3a7Uh9ix6QIKc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4c7e80e7-ace3-11f1-92fc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195663090475&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=XxrM8tKNPPyZ86VyJi-Cjqs0NIscFkdhyot1kbm881SD3ttds4aTGjUs_bwK5HPaz8Dpw48amK5NZeH1i3c0wTyM_jzzhZUmZyS2dvgMe4bFOujA92_o4jlFhTaV8jZd3ikJ338qiC9cQSaNaoqSmSdwVrzFK06BJXlzktvtKT255u15ho95iooEPkkktQjqAZCBw1b9BmJuIyNX7cETBaX0jIu-wG-o13xkba4BE1IZE2Sj4mVlPwD8YbSMU-_kBDWkyhMDL2QCbLHqd8FzljgrId6wr_NWclc5c9S2SjZzukNH-kbVTzXEqBMbMgihkS4sDVkW9yueaOWDRNjdHA&h=FDUWFZWsyr_UWYUUAFazJNyBNHCr8G61a22V9PNVBkk response: body: string: '' @@ -1446,11 +1440,11 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:44 GMT + - Thu, 10 Sep 2026 06:46:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-5154aa36-52f1-11f1-aa20-7c1e526b4853?api-version=2026-03-01-preview&t=639147299851867489&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=P0oz26b9U4iGph-9UYTSRWc4uODOjghmgtV1RLCv8TwkzANkMqngxPdmFfZWtqiQEgfvpobWKwWKGcVCpHg67o9WiS_3sv-_DnMim7bxuR4suTi3XesamIlRzEWbSwoLWrUKCKQMe2HL0WajFHWXhoBr-9mVh7fKqRvt3N_qalCLZ5ccOtlcu7O7oz7uhLBlb2Bb4e3BPVS_NdRAeQ7-HGY9cuH9ko6UGok7LL2Xw7_uslu12fbfTcF7PDqdL55HPenjBTLtkg4RkDAptGYAZFTCWLJz5pveuoGaPlA48E2h4KXltXiRclXGP_Kxkf3GzzExwSo3Wm5dExWEHSkpiw&h=TC_9iFYeXt7t9Q_l2uSauhEjE3pcvlEe4N4J_jYNTUQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4c7e80e7-ace3-11f1-92fc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195675014564&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Iu6h-_ECXpn_e7Dvtw4X7R7YXvw1t_Z6vtgWQGIRVRSqllJzrqR_G9zCA-3Pfgm2ZI2B2OsraPZMJQCzHYz3OnX5bVt7Tv9ZZ3PFAVK9laGfppPMNm6WRYYdJaZiK0o02JXndM1M8I4RTyRG4Sv2RV3HFRRYkU9AZfk7Mephu7eTQy4fjYy15OqAIdu7ocDmlC1v48jolb4jY5f2Do4X7UgHaQ0FS11X44zeYZZblUlBLnifBZOMd18SE3v-k4ibDU14HHiL_pSXPVZDoZ5TbAzvyJqeWROcTS61oItUWKALSMeV9BEl9mVn8ZUc4rEpHQrSRq7u49SV6hn-dn714A&h=TwUPGtvd4EtLJqGkmgVxz-zdG1IkSztVvn7aG4BJ4H8 pragma: - no-cache strict-transport-security: @@ -1460,11 +1454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/f648ef81-de55-4114-8fd7-918f2b6d5a6e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c5c81f8e-3477-489a-9abd-54a5bd29a33e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4932C7C8A647468AA9492780266148E3 Ref B: MNZ221060609039 Ref C: 2026-05-18T19:39:44Z' + - 'Ref A: E0FC1EB78EE145EEA613235F911BC9C3 Ref B: SYD281080709029 Ref C: 2026-09-10T06:46:07Z' status: code: 202 message: Accepted @@ -1482,9 +1476,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-5154aa36-52f1-11f1-aa20-7c1e526b4853?api-version=2026-03-01-preview&t=639147299851867489&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=P0oz26b9U4iGph-9UYTSRWc4uODOjghmgtV1RLCv8TwkzANkMqngxPdmFfZWtqiQEgfvpobWKwWKGcVCpHg67o9WiS_3sv-_DnMim7bxuR4suTi3XesamIlRzEWbSwoLWrUKCKQMe2HL0WajFHWXhoBr-9mVh7fKqRvt3N_qalCLZ5ccOtlcu7O7oz7uhLBlb2Bb4e3BPVS_NdRAeQ7-HGY9cuH9ko6UGok7LL2Xw7_uslu12fbfTcF7PDqdL55HPenjBTLtkg4RkDAptGYAZFTCWLJz5pveuoGaPlA48E2h4KXltXiRclXGP_Kxkf3GzzExwSo3Wm5dExWEHSkpiw&h=TC_9iFYeXt7t9Q_l2uSauhEjE3pcvlEe4N4J_jYNTUQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4c7e80e7-ace3-11f1-92fc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195675014564&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Iu6h-_ECXpn_e7Dvtw4X7R7YXvw1t_Z6vtgWQGIRVRSqllJzrqR_G9zCA-3Pfgm2ZI2B2OsraPZMJQCzHYz3OnX5bVt7Tv9ZZ3PFAVK9laGfppPMNm6WRYYdJaZiK0o02JXndM1M8I4RTyRG4Sv2RV3HFRRYkU9AZfk7Mephu7eTQy4fjYy15OqAIdu7ocDmlC1v48jolb4jY5f2Do4X7UgHaQ0FS11X44zeYZZblUlBLnifBZOMd18SE3v-k4ibDU14HHiL_pSXPVZDoZ5TbAzvyJqeWROcTS61oItUWKALSMeV9BEl9mVn8ZUc4rEpHQrSRq7u49SV6hn-dn714A&h=TwUPGtvd4EtLJqGkmgVxz-zdG1IkSztVvn7aG4BJ4H8 response: body: string: '' @@ -1494,7 +1488,7 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:55 GMT + - Thu, 10 Sep 2026 06:46:17 GMT expires: - '-1' pragma: @@ -1506,11 +1500,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/094c70de-1a18-4947-8679-61f6ad72a109 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/5745bd06-fbed-42f6-8b57-95b3514ba2d9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FC89D0D2B4784BE8A42A0F87BC4B4A74 Ref B: MNZ221060610039 Ref C: 2026-05-18T19:39:55Z' + - 'Ref A: EB94AF06D06A42B7BACCAE968518F4C1 Ref B: SYD281080711040 Ref C: 2026-09-10T06:46:18Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml index 62bfd127424..95cba9d438e 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku --allow-metadata-search User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.2691+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.8397885+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1655' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:01 GMT + - Thu, 10 Sep 2026 06:42:38 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b4ecb2e4-9ce4-42bd-b2c6-d67706c96f9b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/bda4800b-1511-435b-a5a4-d9f09d50b2cd x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: CF47AD23E8D342B49FD53B0A591FF522 Ref B: BL2AA2030101051 Ref C: 2026-05-18T19:38:53Z' + - 'Ref A: 9B38CA9081904C1F8D6FDB670C7C9784 Ref B: SYD281080706054 Ref C: 2026-09-10T06:42:31Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:38:54.2691+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.8397885+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1655' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:03 GMT + - Thu, 10 Sep 2026 06:42:39 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 326C4543184E4227A8718EC7248FA83D Ref B: BL2AA2010204025 Ref C: 2026-05-18T19:39:03Z' + - 'Ref A: FE04A2AC17F142879396BCE2AA42F7DF Ref B: SYD281080707029 Ref C: 2026-09-10T06:42:39Z' status: code: 200 message: OK @@ -122,23 +122,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:04.8905558+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:40.6757352+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1659' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:04 GMT + - Thu, 10 Sep 2026 06:42:40 GMT expires: - '-1' pragma: @@ -150,13 +150,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/94223852-1a04-4886-a968-bdaa461e85d8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6d1043bf-de73-45f8-91d2-cae61c90492d x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E5A12AB094E04C4EA15AAEE892F4EA1B Ref B: BL2AA2030101017 Ref C: 2026-05-18T19:39:04Z' + - 'Ref A: 233E07A0FE4D4808AB13D1C995768798 Ref B: SYD281080706034 Ref C: 2026-09-10T06:42:40Z' status: code: 200 message: OK @@ -174,23 +174,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:04.8905558+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:40.6757352+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1659' + - '1722' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:05 GMT + - Thu, 10 Sep 2026 06:42:41 GMT expires: - '-1' pragma: @@ -204,7 +204,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CBE7D4B62DD74F69B4B97099F2842F9C Ref B: BL2AA2030101031 Ref C: 2026-05-18T19:39:05Z' + - 'Ref A: 9B41F95077C242EDB692623266DDB1C4 Ref B: SYD281080710034 Ref C: 2026-09-10T06:42:41Z' status: code: 200 message: OK @@ -226,23 +226,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:44.3416047+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1658' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:07 GMT + - Thu, 10 Sep 2026 06:42:44 GMT expires: - '-1' pragma: @@ -254,13 +254,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/50257e2c-4a1e-4082-9498-782c6a41a2ef + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/8975de3c-f209-429d-b4ef-53fddc5b6654 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3E9EE5822A5144BDBF8296AF5FF47222 Ref B: MNZ221060609029 Ref C: 2026-05-18T19:39:07Z' + - 'Ref A: 4CAAAC906F084465AA3CA3D3B0A36C18 Ref B: SYD281080712042 Ref C: 2026-09-10T06:42:42Z' status: code: 200 message: OK @@ -283,9 +283,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The registry @@ -298,7 +298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:08 GMT + - Thu, 10 Sep 2026 06:42:46 GMT expires: - '-1' pragma: @@ -310,11 +310,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/3ba0ddea-9a43-4222-ba4e-ce3f9256fee6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ffef7244-b294-48f6-8813-07655ab63072 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4CF6598149104AD787B605D605C33188 Ref B: MNZ221060608025 Ref C: 2026-05-18T19:39:08Z' + - 'Ref A: E5EDB702392E4B889A17300CFE49718D Ref B: SYD281080708052 Ref C: 2026-09-10T06:42:45Z' status: code: 200 message: OK @@ -332,23 +332,23 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:44.3416047+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1670' + - '1733' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:09 GMT + - Thu, 10 Sep 2026 06:42:46 GMT expires: - '-1' pragma: @@ -364,7 +364,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EF3DF939BA0746B0B8A1B3ACA299D8A5 Ref B: BL2AA2030101025 Ref C: 2026-05-18T19:39:09Z' + - 'Ref A: 935DA8BDFD7C4AA8A2EFF4E0D52E9BEB Ref B: SYD281080708031 Ref C: 2026-09-10T06:42:47Z' status: code: 200 message: OK @@ -382,23 +382,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:44.3416047+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1658' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:10 GMT + - Thu, 10 Sep 2026 06:42:47 GMT expires: - '-1' pragma: @@ -412,7 +412,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 427456D75CC94183B0F251F007E9C473 Ref B: MNZ221060608047 Ref C: 2026-05-18T19:39:10Z' + - 'Ref A: C2DD46381BC14AF5BBDDCFC062D10901 Ref B: SYD281080707029 Ref C: 2026-09-10T06:42:47Z' status: code: 200 message: OK @@ -430,23 +430,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:44.3416047+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1658' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:11 GMT + - Thu, 10 Sep 2026 06:42:48 GMT expires: - '-1' pragma: @@ -460,7 +460,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C8EC7EC51A6F45B6844ABACE3D022AF9 Ref B: BL2AA2010204003 Ref C: 2026-05-18T19:39:11Z' + - 'Ref A: A87C67B1E66B4E45BBF52CDBAC97B173 Ref B: SYD281080710036 Ref C: 2026-09-10T06:42:48Z' status: code: 200 message: OK @@ -478,15 +478,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-09-01-preview response: body: string: '{"value":[{"name":"Size","limit":536870912000,"currentValue":0,"unit":"Bytes"},{"name":"MaximumStorageCapacity","limit":109951162777600,"currentValue":0,"unit":"Bytes"},{"name":"Webhooks","limit":500,"currentValue":0,"unit":"Count"},{"name":"Geo-replications","limit":-1,"currentValue":0,"unit":"Count"},{"name":"IPRules","limit":200,"currentValue":0,"unit":"Count"},{"name":"VNetRules","limit":100,"currentValue":0,"unit":"Count"},{"name":"PrivateEndpointConnections","limit":400,"currentValue":0,"unit":"Count"},{"name":"ScopeMaps","limit":50000,"currentValue":0,"unit":"Count"},{"name":"Tokens","limit":50000,"currentValue":0,"unit":"Count"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -494,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:13 GMT + - Thu, 10 Sep 2026 06:42:48 GMT expires: - '-1' pragma: @@ -506,11 +506,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/3bb7dc90-e6be-4e51-b5e1-3dac89cda60d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/35f88748-d746-45b8-ac1b-c53fed419894 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 243A2866FA024741B9F6A13843BBF047 Ref B: MNZ221060618021 Ref C: 2026-05-18T19:39:13Z' + - 'Ref A: 5B18313CD8FF4A9EB5A1FA0E17F8A1AA Ref B: SYD281080712036 Ref C: 2026-09-10T06:42:49Z' status: code: 200 message: OK @@ -528,23 +528,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:07.4763505+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:44.3416047+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1658' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:14 GMT + - Thu, 10 Sep 2026 06:42:49 GMT expires: - '-1' pragma: @@ -558,7 +558,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 004963FEDD7A42788F1DA26B5FF87263 Ref B: MNZ221060610035 Ref C: 2026-05-18T19:39:14Z' + - 'Ref A: 9249D0964A1C45A68B62F7DC27ED4912 Ref B: SYD281080712031 Ref C: 2026-09-10T06:42:49Z' status: code: 200 message: OK @@ -581,23 +581,23 @@ interactions: ParameterSetName: - -n -g --tags --admin-enabled User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1677' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:16 GMT + - Thu, 10 Sep 2026 06:42:50 GMT expires: - '-1' pragma: @@ -609,13 +609,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/40054ecf-9520-497d-a69f-0144f2290685 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b892938f-f1cb-4319-99d5-c61bec969813 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E81B5BA5AAAA4AEE865936F67E56127C Ref B: BL2AA2030101019 Ref C: 2026-05-18T19:39:16Z' + - 'Ref A: 8E11D3F53BC84FB691C439535CC5E49B Ref B: SYD281080709052 Ref C: 2026-09-10T06:42:50Z' status: code: 200 message: OK @@ -633,22 +633,21 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjxlxkludfstaljgghgvrlx7lav7ww3idk46cijh3kvegroz6ufa7l3xrxe4qt7r3/providers/Microsoft.ContainerRegistry/registries/cliregblr3kdt6bwc34n","name":"cliregblr3kdt6bwc34n","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '3420' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:17 GMT + - Thu, 10 Sep 2026 06:42:51 GMT expires: - '-1' pragma: @@ -662,7 +661,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B4821432F3A44ADE88A3E21527A9062B Ref B: BL2AA2010204037 Ref C: 2026-05-18T19:39:17Z' + - 'Ref A: 85CA94E38E024C49A4ECA5FBED5C5C1A Ref B: SYD281080710052 Ref C: 2026-09-10T06:42:51Z' status: code: 200 message: OK @@ -680,23 +679,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516301+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:01.8516769+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:38.7400675+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:38.7401099+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1677' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:18 GMT + - Thu, 10 Sep 2026 06:42:52 GMT expires: - '-1' pragma: @@ -710,7 +709,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5797BCAA1EF7467583C3B43B8EC9E875 Ref B: MNZ221060610033 Ref C: 2026-05-18T19:39:19Z' + - 'Ref A: D389D8DDC6C34DA6BF53393ABE2C797A Ref B: SYD281080707060 Ref C: 2026-09-10T06:42:52Z' status: code: 200 message: OK @@ -735,23 +734,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:20.6192451+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:20.685869+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:20.6859212+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:53.864464+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:42:53.9177595+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:53.9179215+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1676' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:19 GMT + - Thu, 10 Sep 2026 06:42:53 GMT expires: - '-1' pragma: @@ -763,13 +762,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5512c2d4-748e-4784-9537-508e4aa1ba79 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/36d558c5-7c89-45e9-8f93-995cdcf51ba9 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 615D51F54F2B48B5800D616741B47322 Ref B: BL2AA2010205005 Ref C: 2026-05-18T19:39:20Z' + - 'Ref A: 45FE280104844106AB1C4AEC3BB1AC92 Ref B: SYD281080708042 Ref C: 2026-09-10T06:42:53Z' status: code: 200 message: OK @@ -787,22 +786,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjxlxkludfstaljgghgvrlx7lav7ww3idk46cijh3kvegroz6ufa7l3xrxe4qt7r3/providers/Microsoft.ContainerRegistry/registries/cliregblr3kdt6bwc34n","name":"cliregblr3kdt6bwc34n","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '3420' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:21 GMT + - Thu, 10 Sep 2026 06:42:54 GMT expires: - '-1' pragma: @@ -816,7 +814,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 296DE525B0F548E3AA03A199B9421CCF Ref B: MNZ221060609027 Ref C: 2026-05-18T19:39:21Z' + - 'Ref A: 7CD7F3806286401DA09850165E838799 Ref B: SYD281080711034 Ref C: 2026-09-10T06:42:54Z' status: code: 200 message: OK @@ -834,23 +832,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:20.6192451+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:20.685869+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:20.6859212+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:53.864464+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:42:53.9177595+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:53.9179215+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1676' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:22 GMT + - Thu, 10 Sep 2026 06:42:55 GMT expires: - '-1' pragma: @@ -864,7 +862,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CDB5C53227C74316BAE8C31C08A70D8D Ref B: BL2AA2010205047 Ref C: 2026-05-18T19:39:23Z' + - 'Ref A: DFEB118A669C4669B7489A929B066CB7 Ref B: SYD281080712042 Ref C: 2026-09-10T06:42:55Z' status: code: 200 message: OK @@ -882,22 +880,21 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:14.9761585Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjxlxkludfstaljgghgvrlx7lav7ww3idk46cijh3kvegroz6ufa7l3xrxe4qt7r3/providers/Microsoft.ContainerRegistry/registries/cliregblr3kdt6bwc34n","name":"cliregblr3kdt6bwc34n","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '10956' + - '3420' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:24 GMT + - Thu, 10 Sep 2026 06:42:56 GMT expires: - '-1' pragma: @@ -911,7 +908,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A9CFEAC039CC486D8DAC522A509FB036 Ref B: MNZ221060608049 Ref C: 2026-05-18T19:39:24Z' + - 'Ref A: BF50729BEABE440F91BB0A560693AD7D Ref B: SYD281080707025 Ref C: 2026-09-10T06:42:56Z' status: code: 200 message: OK @@ -929,23 +926,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:20.6192451+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:20.685869+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:20.6859212+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:53.864464+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:42:53.9177595+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:53.9179215+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1676' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:25 GMT + - Thu, 10 Sep 2026 06:42:57 GMT expires: - '-1' pragma: @@ -959,7 +956,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 92D95F1908174549898D60D05B18CBE9 Ref B: MNZ221060619047 Ref C: 2026-05-18T19:39:25Z' + - 'Ref A: A62CD70A4DA34A8EBC53AF68EBD56576 Ref B: SYD281080705052 Ref C: 2026-09-10T06:42:57Z' status: code: 200 message: OK @@ -984,23 +981,23 @@ interactions: ParameterSetName: - -n --status --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:26.6603319+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:26.7384668+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:26.7385272+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:58.864826+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:42:58.8861547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:58.8862217+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1677' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:26 GMT + - Thu, 10 Sep 2026 06:42:58 GMT expires: - '-1' pragma: @@ -1012,13 +1009,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/828d06bf-9498-4097-8de6-825376dbd681 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/48da61e9-68c4-4c3c-9bd5-a6978e2460ae x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: B6AC76AC15B44BDA97091D248C561DDF Ref B: BL2AA2030101035 Ref C: 2026-05-18T19:39:26Z' + - 'Ref A: 01A1496F5BF44E8A8D045B0E10880958 Ref B: SYD281080707029 Ref C: 2026-09-10T06:42:58Z' status: code: 200 message: OK @@ -1036,22 +1033,21 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjxlxkludfstaljgghgvrlx7lav7ww3idk46cijh3kvegroz6ufa7l3xrxe4qt7r3/providers/Microsoft.ContainerRegistry/registries/cliregblr3kdt6bwc34n","name":"cliregblr3kdt6bwc34n","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '3420' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:27 GMT + - Thu, 10 Sep 2026 06:43:00 GMT expires: - '-1' pragma: @@ -1065,7 +1061,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 477AE006E2F3497A813F2D76865A9F4C Ref B: MNZ221060619027 Ref C: 2026-05-18T19:39:27Z' + - 'Ref A: EBEC7ADDB18A4828B5567B83C5636294 Ref B: SYD281080710062 Ref C: 2026-09-10T06:42:59Z' status: code: 200 message: OK @@ -1083,23 +1079,23 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:26.6603319+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:26.7384668+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:26.7385272+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:58.864826+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:42:58.8861547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:58.8862217+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1677' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:29 GMT + - Thu, 10 Sep 2026 06:43:00 GMT expires: - '-1' pragma: @@ -1113,7 +1109,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 099354D729A84A70A2AB81186BEC8C95 Ref B: BL2AA2010204045 Ref C: 2026-05-18T19:39:29Z' + - 'Ref A: 0D8CC48898F74445BF0355610E169B7A Ref B: SYD281080706025 Ref C: 2026-09-10T06:43:00Z' status: code: 200 message: OK @@ -1131,22 +1127,21 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjxlxkludfstaljgghgvrlx7lav7ww3idk46cijh3kvegroz6ufa7l3xrxe4qt7r3/providers/Microsoft.ContainerRegistry/registries/cliregblr3kdt6bwc34n","name":"cliregblr3kdt6bwc34n","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_pjngazbjh5jniimii3a3darvu2esi3y4gega7ukm74evzn3qbl3lpu42mp/providers/Microsoft.ContainerRegistry/registries/clitestabacujo5w","name":"clitestabacujo5w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '3420' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:29 GMT + - Thu, 10 Sep 2026 06:43:01 GMT expires: - '-1' pragma: @@ -1160,7 +1155,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 08F62AE8C55045CDB47B47B68AE5082C Ref B: BL2AA2010204029 Ref C: 2026-05-18T19:39:30Z' + - 'Ref A: 6D0CD841BAF14BD796945CF8317FEDAF Ref B: SYD281080712052 Ref C: 2026-09-10T06:43:01Z' status: code: 200 message: OK @@ -1178,23 +1173,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:26.6603319+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:26.7384668+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-18T19:39:26.7385272+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:58.864826+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:42:58.8861547+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:58.8862217+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1677' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:30 GMT + - Thu, 10 Sep 2026 06:43:02 GMT expires: - '-1' pragma: @@ -1208,7 +1203,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2635F6DC003F411B9E38FC46B6FC1A4B Ref B: BL2AA2010204039 Ref C: 2026-05-18T19:39:31Z' + - 'Ref A: 6D668F7F44B34DE0A72CAAF5E4C91BD7 Ref B: SYD281080707054 Ref C: 2026-09-10T06:43:02Z' status: code: 200 message: OK @@ -1233,23 +1228,23 @@ interactions: ParameterSetName: - -r --status --days --yes User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:32.4694328+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:32.575726+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:32.5757873+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:03.8646193+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:03.8929777+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:03.8930396+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1676' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:31 GMT + - Thu, 10 Sep 2026 06:43:03 GMT expires: - '-1' pragma: @@ -1261,13 +1256,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/3bcfc2ef-730c-4063-a59d-a3ae512d3f94 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7df214ea-7add-4df5-8e86-4f1eacb0e917 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 48C1F999A3BB4E12920869683C464983 Ref B: MNZ221060610053 Ref C: 2026-05-18T19:39:32Z' + - 'Ref A: C23EB34C26144AAD8BC3D6BD74723D48 Ref B: SYD281080712040 Ref C: 2026-09-10T06:43:03Z' status: code: 200 message: OK @@ -1285,22 +1280,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeycustomdomaindemo","name":"zoeycustomdomaindemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"principalId":"740ad42b-33fc-4621-8c78-a137560139ed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-06T17:01:22.5282036Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-06T17:48:03.2514173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0513","name":"zoeytestacr0513","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-13T20:29:51.8604491Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-13T20:30:51.9745054Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytesteus0514","name":"zoeytesteus0514","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-14T17:33:43.7072616Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-14T17:41:53.9577607Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test1","name":"zoey0423test1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:51:59.9445034Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:51:59.9445034Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoey0423test2","name":"zoey0423test2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-23T20:53:35.2714058Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-23T20:54:15.1237041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu5slk7oerd4hbusr3by2t6mikpwnod5k435a3t4jdwjz4u27mfrl52wbnznkebb2c/providers/Microsoft.ContainerRegistry/registries/cliregkdbrwbpucjrbqx","name":"cliregkdbrwbpucjrbqx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2052535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:09.6569375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:16.4556243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpa7uspao7lnenht3f55hpwroe3q552cngyr3rfkutytnxflabokddq2jwj3szibav/providers/Microsoft.ContainerRegistry/registries/clireggmk2xdvx4e6btv","name":"clireggmk2xdvx4e6btv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.3839711Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:24.3521251Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrug6taar4sdyewgifjfctx2c5n3tl3rkhtiupozzafduriuyzd4bsheiaaiww7roa/providers/Microsoft.ContainerRegistry/registries/cliregb6bdb6lqaveigt","name":"cliregb6bdb6lqaveigt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.8156103Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:15.737844Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjxlxkludfstaljgghgvrlx7lav7ww3idk46cijh3kvegroz6ufa7l3xrxe4qt7r3/providers/Microsoft.ContainerRegistry/registries/cliregblr3kdt6bwc34n","name":"cliregblr3kdt6bwc34n","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.4953872Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:31.4953872Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:50.7797196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2fszs42cv7xzswzetlyra67j4cogil55gxzkavtemaugzjay4zo6rtx6tdvbgg574/providers/Microsoft.ContainerRegistry/registries/testreg4yxkubakkbru7","name":"testreg4yxkubakkbru7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:33.1513538Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:33.1513538Z"}}]}' headers: cache-control: - no-cache content-length: - - '10976' + - '2831' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:33 GMT + - Thu, 10 Sep 2026 06:43:04 GMT expires: - '-1' pragma: @@ -1314,7 +1308,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DAC2BAE1294044D79F8FC9190B617E03 Ref B: BL2AA2030101021 Ref C: 2026-05-18T19:39:33Z' + - 'Ref A: 6BEABE77285148BE828AB69A849F0633 Ref B: SYD281080712031 Ref C: 2026-09-10T06:43:04Z' status: code: 200 message: OK @@ -1332,23 +1326,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:32.4694328+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:32.575726+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:32.5757873+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:03.8646193+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:03.8929777+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:03.8930396+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1676' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:34 GMT + - Thu, 10 Sep 2026 06:43:05 GMT expires: - '-1' pragma: @@ -1362,7 +1356,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7B21A8E2E85D4AFDAEBADE96C12D949B Ref B: BL2AA2010205025 Ref C: 2026-05-18T19:39:34Z' + - 'Ref A: FCB983CED5A840D4B399056DCF7DF1A1 Ref B: SYD281080707036 Ref C: 2026-09-10T06:43:05Z' status: code: 200 message: OK @@ -1380,23 +1374,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:32.4694328+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:32.575726+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:32.5757873+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:03.8646193+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:03.8929777+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:03.8930396+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1676' + - '1740' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:35 GMT + - Thu, 10 Sep 2026 06:43:06 GMT expires: - '-1' pragma: @@ -1410,7 +1404,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E57552605CAD4643A408C64CBDA91B01 Ref B: MNZ221060609029 Ref C: 2026-05-18T19:39:35Z' + - 'Ref A: 609020777CD0417696EE668D4F234E39 Ref B: SYD281080709036 Ref C: 2026-09-10T06:43:06Z' status: code: 200 message: OK @@ -1430,15 +1424,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"EVd7SBDVMGVQt1BdqyAecHyItzDz04hrV0dFfYAKdzKMvltlA7ltJQQJ99CIAC4f1cMEqg7NAAACAZCRgO1Y"},{"name":"password2","value":"5ZLVbNRy7finmDDAmn5MWRSzNGyM4ZZdIHVhp6aeWezGu2bpqLLpJQQJ99CIAC4f1cMEqg7NAAACAZCRK9wj"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1446,7 +1440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:36 GMT + - Thu, 10 Sep 2026 06:43:07 GMT expires: - '-1' pragma: @@ -1458,13 +1452,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/6dbcc56e-8216-46df-ad9e-01b6219113d5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ecd1dc7d-ba2b-460d-85d1-085c32e2f631 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C6B591F6219245CAB6E475D0B79127F4 Ref B: MNZ221060609019 Ref C: 2026-05-18T19:39:36Z' + - 'Ref A: F12C25D429764AC08A799B9111046A38 Ref B: SYD281080712052 Ref C: 2026-09-10T06:43:07Z' status: code: 200 message: OK @@ -1484,27 +1478,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-18T19:38:54.2691+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-18T19:39:32.4694328+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-05-18T19:38:54.2691Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-05-18T19:39:32.575726+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-05-18T19:39:32.5757873+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:31.8397885+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:03.8646193+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:42:31.8397885Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:03.8929777+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:43:03.8930396+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Enabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1675' + - '1739' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2026 19:39:37 GMT + - Thu, 10 Sep 2026 06:43:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4d8447b4-52f1-11f1-a327-7c1e526b4853?api-version=2026-03-01-preview&t=639147299781730643&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=q-EK49L2-zAsQcmj4CGTViigbWL-Tfb4zHGez7146r9eiymn4Se-H6jRrdXzRhuwaFxzDkzNdEN5MBR-kJkJ0phmoP_3in1PMUcs7fVOu6a6C-BOuMBfafAap_5KjW1rKeeFoxznO5InMMkGieA8YoZkK4pDEy3lK9KnAx6GKeWPrYqs0gJ-qv6ZQwBFl9J6vZSr_i316EEom5tCfi0TZTI3Owa2WGUJz-HkzZ_cple-ge1mMdkUI-RxJnt3Rlfl8ss6H89nVMUXEZbgHywkXyA-jtXGCoSZyTzMLXzsOScQ-_wdQwFyt6urN4mRm9NbUSFIEkJC4b5WWpCXeHCzbg&h=T5K8yyvq3iPkpWGkCay9QLKgrBkiQETQPY-BS9s9yu4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e2ac7921-ace2-11f1-b151-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193887130365&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=qAYqXh0NHSqxhnKH9C-e6hUrPH3egwwIAE934xlaWyMoFtM8RkbCNNknmxTGAT6wyoKaswSvg-cxVc9cSTnfeJ5TYetU_DNoVxwUsa_2kWsLKRWnIV0rQwb2RkQJsQE113rZ1y3RuJdQucCfDwtI0e5bnA3DnQRDaq6oF6odz_SrANJI_LOJjtiKEg1rgE5A57n5K1V3CwqC2tXwDCJGyhBI-qV4RWmS0PZjtKkOPgC32mzIhPRCdxvVqhJFcx1qESr58osIGDMIAWbdNPXxNuQXn6PnAy86SgOKllcQvYKijRtItFPfNC3HcWsIM_0rO9_S2f1-O9HGJ89AWzXzPQ&h=a6DBZKREmSvqFTtWae4mBDx-A4WpXaoz1s7g8YOCTHA pragma: - no-cache strict-transport-security: @@ -1514,13 +1508,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/78c81d3f-2f69-404f-8ba0-2ebaacf27aeb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/cf60cd22-b32a-47a8-ac68-e72e07509175 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: F9C834B616E44AA99DB8C83B7232DF5D Ref B: BL2AA2010204027 Ref C: 2026-05-18T19:39:37Z' + - 'Ref A: F8E149BF58554158B05A3126C3407EAB Ref B: SYD281080712031 Ref C: 2026-09-10T06:43:08Z' status: code: 202 message: Accepted @@ -1538,9 +1532,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4d8447b4-52f1-11f1-a327-7c1e526b4853?api-version=2026-03-01-preview&t=639147299781730643&c=MIIHlDCCBnygAwIBAgIQezb8rseFMm1IRs195n9vVzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQwNzIzNDE1NFoXDTI2MTAwMzA1NDE1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyN0RC1toIy0MUjNqRPJLB51RUbtwBvAu6pgWK5gw2lmci7lE7U6jMxMh_8ljqwlXFY90FwPHzKHdcfHD4M0Ma3DRUVgE-v0S1aUDhKodisph39p7biWkApcSmxbkzmQMB2D0u2Zm0IhszNnwquCfvJuftV7em4_XCA_NbUt5EYUpfjv1sYzkLLAA8_2geRJLmDRfZGZvSHhgN-bsErNiX7v-BdmAyt_5jYpEcuAWuKp_6DUtXPY_mbwCm-qkLcoXGR39z9dHcyaldZUrJJ6JYcAEG5QNboi3gR2R7bY7pVtxUqbJ9Gx2tDy1qzosxOu0hXflZnevb68ylv7B68Wu9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQNw-Elcx5N6tZ9jh67WrWJYZxlnzAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzM0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMzQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8zNC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBOslPK0kujtTlyxe5WOtpNbQRYZ8iSxYHILxKtavGf63w2nf7l5nX07MzYQqUYkw1ZLV81KZUWrAqmYoK0fTLgq7S_ePVqJ0Bi0EefpAOxc4Q7FtrTXk-2n80mtrwbcDH_jHtUGHd5gGv7MEFSu5Wa2iI3mNDsNSZrscWUqrBhKiZ2zF0slf8YMpHWflHomPT5wBh2LQC9ub-GLJKfkVDFxokxP2roGR1np3ATyRygILitspiTUM4Bcia0TOmYoYUqpLZTBiVNI-ehKyCyQXxR9eeBX0xmiPRji8kPKfC97Q_8KsB0icYO2jpcYUsIggTmm6Rz61nAEqF34O6kWVt8&s=q-EK49L2-zAsQcmj4CGTViigbWL-Tfb4zHGez7146r9eiymn4Se-H6jRrdXzRhuwaFxzDkzNdEN5MBR-kJkJ0phmoP_3in1PMUcs7fVOu6a6C-BOuMBfafAap_5KjW1rKeeFoxznO5InMMkGieA8YoZkK4pDEy3lK9KnAx6GKeWPrYqs0gJ-qv6ZQwBFl9J6vZSr_i316EEom5tCfi0TZTI3Owa2WGUJz-HkzZ_cple-ge1mMdkUI-RxJnt3Rlfl8ss6H89nVMUXEZbgHywkXyA-jtXGCoSZyTzMLXzsOScQ-_wdQwFyt6urN4mRm9NbUSFIEkJC4b5WWpCXeHCzbg&h=T5K8yyvq3iPkpWGkCay9QLKgrBkiQETQPY-BS9s9yu4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e2ac7921-ace2-11f1-b151-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193887130365&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=qAYqXh0NHSqxhnKH9C-e6hUrPH3egwwIAE934xlaWyMoFtM8RkbCNNknmxTGAT6wyoKaswSvg-cxVc9cSTnfeJ5TYetU_DNoVxwUsa_2kWsLKRWnIV0rQwb2RkQJsQE113rZ1y3RuJdQucCfDwtI0e5bnA3DnQRDaq6oF6odz_SrANJI_LOJjtiKEg1rgE5A57n5K1V3CwqC2tXwDCJGyhBI-qV4RWmS0PZjtKkOPgC32mzIhPRCdxvVqhJFcx1qESr58osIGDMIAWbdNPXxNuQXn6PnAy86SgOKllcQvYKijRtItFPfNC3HcWsIM_0rO9_S2f1-O9HGJ89AWzXzPQ&h=a6DBZKREmSvqFTtWae4mBDx-A4WpXaoz1s7g8YOCTHA response: body: string: '' @@ -1550,11 +1544,11 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:38 GMT + - Thu, 10 Sep 2026 06:43:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4d8447b4-52f1-11f1-a327-7c1e526b4853?api-version=2026-03-01-preview&t=639147299794827468&c=MIIHlDCCBnygAwIBAgIQZiYkoV_LM7Hwt06_u_DzJDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQxMDA4MTUzOVoXDTI2MTAwNTE0MTUzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDealc9e2xWlYn0dX5zgxycoyRECfCn-ACb8WxKGmsKAA5yFa8bggPwuauZjSPSntq3xw99b6CFXZ6EM34WjxaWokZKYj8bbRT14WzrQHemPN5KUaI3SFtZidaSdEAzhm7Ha1a74SG8rDZU8qVqbaoCPQk9Iblv0LucrVV5BAMOwvi-5j-7X9vehxsheuxPwrVmGy_WrXI_3Qflmizp5BND_I3p4BIRjEcaQw_EBd3dhAC52EO5bT3FKSdM6N5xgpZvtjHjxRG2WG_8Gh07OrI0Ib0mnTB1_HNhiEw3_VzdnINXV0_Fsm7HMV-qCCkY5pyJIZjVX7L7FFY0PGqcqUKdAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSZIRQPs2If06iDFyiGbMnvIxenBzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQ2L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80Ni9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAxSvsyw-aQGPuLg3sIv-zDLSqhHgP__v9DGyP7D16rJpNG1JcjpiXpbloqD9RW5Gc_hHWn5Kyr1pRABJrFa-jEt89-FiQdkToF-vvwJOXbryAgZYdS03uFzUGqARs3JMMqCHrVkx6hb9oOxh_3JdEemO_dbhApyOVTfloO4kIRsgJnHI_ImFt8xm3xa9ftB0ARfJAdN_1EHgB2NdOgTvaSljVOnQY6R40lh_Wl8-s3GIhHbNwQOECXegBxeVAUVN5nGxlD8TEqKc_mX-22kBMao71zBz3JWtCING4-QzwrWj9pxmanpqYqiVGf40ZbZZihRkte0KI9zvW53Y2Smcy7&s=ulkbqPBL-xmnP2RRQ3lvAso5yUCIuR_GP4ehwtPzCebkhCy6dKKxCmqX1z7dFfRqzdz2WCU0Bwir1wEgRFI1VlNLdKME-ECjCKHrPClMH9OyOEhasPgP7TCyoz8Ycz7T8nWqtUZB52DWV65Qg49_Y_YovzLfoe8uxDkl1bqnJhVrRZFFrI3gdqSTaBoRMCijUKQjvcYEM7a0OJfYgN3tHY5ijm6MFecRvh5MJnxsBrKe6FMYxznQc_HmAU6Hx5ycW00Rn0W8dj-X_UGRUW1__0TJBfEOZPyIt_4XGaKU2SMEw8Dnkbm_SfDW2q23y1-ocX6SENrQ_1OMATa1L0eNSg&h=KuyYWbIrz03sFiUojOIZKe6j447qsTEo31V-wW2Cl4g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e2ac7921-ace2-11f1-b151-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193900155996&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=Z82m4US2s4oifSco2kiptkxNi5W4BwKTDG5UOT6XUKr3hPPqIO1ZThIPZixFNTtCIzDsy_uEkHoS7dGnSieEQAXJ7g_YfH0-zryiK91NN1lJZ3MYpAlDK9bHIajRUto_loBGtpUKlS-RnmTmztBezUYphX0Lw3RQgoWmUpZaxr8dph6d0xdHyQehjfin-1aplvPTTUqnqS-thtD8BJ4_vGGnNRZIylHVJNrH3Of3orrPpL_xwHREr88KHSNM8HdIH5GNZDT55r_Pq0zTiGMHsRqUaTiQzYmyXzpVCv0PdAEEW_t66xMLD6lticr8Ub5qHqYYATurVjqMgvvXl8IeKw&h=JNpWas-M46Qjf0ibyhmumwfXJBrImJsMK5P88LsFISE pragma: - no-cache strict-transport-security: @@ -1564,11 +1558,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/914c924f-fa6f-4e33-9510-f86591505608 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/a272e342-d303-48bc-86c3-f9926a58e9d1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 589CC717FEE74F90B28A289FCA22A018 Ref B: MNZ221060619017 Ref C: 2026-05-18T19:39:39Z' + - 'Ref A: 7B9B0B54EF524A5081467DF484712DB3 Ref B: SYD281080708034 Ref C: 2026-09-10T06:43:09Z' status: code: 202 message: Accepted @@ -1586,9 +1580,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.13.13 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-4d8447b4-52f1-11f1-a327-7c1e526b4853?api-version=2026-03-01-preview&t=639147299794827468&c=MIIHlDCCBnygAwIBAgIQZiYkoV_LM7Hwt06_u_DzJDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDQxMDA4MTUzOVoXDTI2MTAwNTE0MTUzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDealc9e2xWlYn0dX5zgxycoyRECfCn-ACb8WxKGmsKAA5yFa8bggPwuauZjSPSntq3xw99b6CFXZ6EM34WjxaWokZKYj8bbRT14WzrQHemPN5KUaI3SFtZidaSdEAzhm7Ha1a74SG8rDZU8qVqbaoCPQk9Iblv0LucrVV5BAMOwvi-5j-7X9vehxsheuxPwrVmGy_WrXI_3Qflmizp5BND_I3p4BIRjEcaQw_EBd3dhAC52EO5bT3FKSdM6N5xgpZvtjHjxRG2WG_8Gh07OrI0Ib0mnTB1_HNhiEw3_VzdnINXV0_Fsm7HMV-qCCkY5pyJIZjVX7L7FFY0PGqcqUKdAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSZIRQPs2If06iDFyiGbMnvIxenBzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQ2L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDYvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80Ni9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAxSvsyw-aQGPuLg3sIv-zDLSqhHgP__v9DGyP7D16rJpNG1JcjpiXpbloqD9RW5Gc_hHWn5Kyr1pRABJrFa-jEt89-FiQdkToF-vvwJOXbryAgZYdS03uFzUGqARs3JMMqCHrVkx6hb9oOxh_3JdEemO_dbhApyOVTfloO4kIRsgJnHI_ImFt8xm3xa9ftB0ARfJAdN_1EHgB2NdOgTvaSljVOnQY6R40lh_Wl8-s3GIhHbNwQOECXegBxeVAUVN5nGxlD8TEqKc_mX-22kBMao71zBz3JWtCING4-QzwrWj9pxmanpqYqiVGf40ZbZZihRkte0KI9zvW53Y2Smcy7&s=ulkbqPBL-xmnP2RRQ3lvAso5yUCIuR_GP4ehwtPzCebkhCy6dKKxCmqX1z7dFfRqzdz2WCU0Bwir1wEgRFI1VlNLdKME-ECjCKHrPClMH9OyOEhasPgP7TCyoz8Ycz7T8nWqtUZB52DWV65Qg49_Y_YovzLfoe8uxDkl1bqnJhVrRZFFrI3gdqSTaBoRMCijUKQjvcYEM7a0OJfYgN3tHY5ijm6MFecRvh5MJnxsBrKe6FMYxznQc_HmAU6Hx5ycW00Rn0W8dj-X_UGRUW1__0TJBfEOZPyIt_4XGaKU2SMEw8Dnkbm_SfDW2q23y1-ocX6SENrQ_1OMATa1L0eNSg&h=KuyYWbIrz03sFiUojOIZKe6j447qsTEo31V-wW2Cl4g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-e2ac7921-ace2-11f1-b151-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193900155996&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=Z82m4US2s4oifSco2kiptkxNi5W4BwKTDG5UOT6XUKr3hPPqIO1ZThIPZixFNTtCIzDsy_uEkHoS7dGnSieEQAXJ7g_YfH0-zryiK91NN1lJZ3MYpAlDK9bHIajRUto_loBGtpUKlS-RnmTmztBezUYphX0Lw3RQgoWmUpZaxr8dph6d0xdHyQehjfin-1aplvPTTUqnqS-thtD8BJ4_vGGnNRZIylHVJNrH3Of3orrPpL_xwHREr88KHSNM8HdIH5GNZDT55r_Pq0zTiGMHsRqUaTiQzYmyXzpVCv0PdAEEW_t66xMLD6lticr8Ub5qHqYYATurVjqMgvvXl8IeKw&h=JNpWas-M46Qjf0ibyhmumwfXJBrImJsMK5P88LsFISE response: body: string: '' @@ -1598,7 +1592,7 @@ interactions: content-length: - '0' date: - - Mon, 18 May 2026 19:39:49 GMT + - Thu, 10 Sep 2026 06:43:21 GMT expires: - '-1' pragma: @@ -1610,11 +1604,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/5f10a52b-a172-407e-ac30-81559b7c91f4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/176a54dc-cef0-4593-8e51-79611aaecaf7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 01F15132A9BE4E6993C38D7F5126C8AD Ref B: BL2AA2030101049 Ref C: 2026-05-18T19:39:50Z' + - 'Ref A: E745BDFD2734484C9B0F19FAEF0F7E44 Ref B: SYD281080712023 Ref C: 2026-09-10T06:43:20Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_disabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_disabled.yaml index d30e25f04ac..7c28bf7cd44 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_disabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_disabled.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -g -n --sku --location --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.5772161+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.5772161+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:22:59.5772161Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:16.884248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:16.8843086+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:06.9600532+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:06.9600532+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:06.9600532Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741185+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741548+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1678' + - '1736' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:16 GMT + - Thu, 10 Sep 2026 06:53:18 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b4ea2de3-dbd4-4940-8128-f76466a5f73f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/7a7cdbff-2506-440e-8a2c-f4f5f36ab987 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 9E386FC3A02D421AB08ADA95E88D3EA1 Ref B: BN1AA2051012027 Ref C: 2026-04-03T02:22:58Z' + - 'Ref A: 5E062D962A634151A692D9E5E3C653E2 Ref B: SYD281080706042 Ref C: 2026-09-10T06:53:05Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.5772161+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.5772161+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:22:59.5772161Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:16.884248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:16.8843086+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:06.9600532+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:06.9600532+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:06.9600532Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741185+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741548+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1678' + - '1736' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:18 GMT + - Thu, 10 Sep 2026 06:53:19 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 056B239CF8764FC2BE25A7BA81C327BB Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:23:18Z' + - 'Ref A: 6B89DEF1963749DA8F854455C6C7B0AE Ref B: SYD281080705031 Ref C: 2026-09-10T06:53:19Z' status: code: 200 message: OK @@ -118,23 +118,23 @@ interactions: ParameterSetName: - -g -n --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.5772161+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.5772161+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:22:59.5772161Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:16.884248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:16.8843086+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:06.9600532+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:06.9600532+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:06.9600532Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741185+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741548+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1678' + - '1736' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:19 GMT + - Thu, 10 Sep 2026 06:53:20 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F85A1A4D49D4DC0B4A1D3AA2E58E5EB Ref B: BN1AA2051014039 Ref C: 2026-04-03T02:23:20Z' + - 'Ref A: 9BC86C7929EB460BA8509289C7614E07 Ref B: SYD281080710054 Ref C: 2026-09-10T06:53:20Z' status: code: 200 message: OK @@ -170,23 +170,23 @@ interactions: ParameterSetName: - -g -n --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.5772161+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:22.31881+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:22:59.5772161Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:16.884248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:16.8843086+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:06.9600532+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:21.3414234+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:06.9600532Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741185+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741548+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1714' + - '1774' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:23 GMT + - Thu, 10 Sep 2026 06:53:22 GMT expires: - '-1' pragma: @@ -198,13 +198,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/d44279be-ee2c-486d-9d53-4bf6e2eaeba8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9f9d8f51-ca6a-4a42-a9b1-eca0833004e3 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 039F635DE8AF4CB39369354802B825D7 Ref B: BN1AA2051012045 Ref C: 2026-04-03T02:23:21Z' + - 'Ref A: 2AD153DEEFC640289ADB585D62BDCBF1 Ref B: SYD281080710029 Ref C: 2026-09-10T06:53:21Z' status: code: 200 message: OK @@ -224,27 +224,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.5772161+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:22.31881+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:22:59.5772161Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:16.884248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:16.8843086+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:06.9600532+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:21.3414234+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:06.9600532Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741185+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:19.0741548+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1713' + - '1773' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:24 GMT + - Thu, 10 Sep 2026 06:53:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-16ca8cf8-2f04-11f1-9403-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798052817687&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=QstJ7Z2_HSJtw2dvpP2f_y4F3Tzqjx3Q-V0lube4igJWQa3FveQB8g9EEnoxl7W1uy3pvr51gKY8b0PDbpEALfnT2tJdudLKxlVCao6EpnWRSBEDnIxvOFBGlozBJ4EGk_jPGYJHZr-JL5sRfFA9GBZqPgll_D-4uzXU94O7kOJJP0VQ-uFN0F6y87KX-JYcpq7EI6o4V-jLP68cmTaS1HGET-361K4PD524GF7FYB2svfbmGWIvhKwrI1Uy0YEGcSCfKemF0uL0AdQeLr3GHH2UmQKEET_eqt1Sl4LtoSbmcsHizaODLwGh2E2hjFwMHwuWO3_Pu112ceAGxmrcCQ&h=lppkzWRado-Twra_L2DIF2X1Fx8eTMOpbN_kzcADaNc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-50f56df4-ace4-11f1-bab8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200028606914&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=aRHkfCwk-HNBlmUqa11PvOo6ZmnykGEmr5sGVpIC42Y_lE4bT2rwq5au3N2YfYcNGCwIY625ndubr_VTYjiLSCkR_8jRvvKrXfPDBjc-7mDIFCtAbdGn37GULPkwzVWlbeNqE1Bt27fQzJnkgZiDzq2Uu5YYaZHZ442AtIIbidghYpGirSMWP8wIVAckz8cuoHVrPyl2rn1UVRBXZge2Aom8UqkNtCIdFnddPEmU95Vqcnmsaj2Vns_toR50UWn6oUd4gF6oZoKv8EFTiZKGx7jIvWNcdGeBEcxm2066BI8o-WUdv6snzUMWysf3sKNRX40fZPicefYtPsA9i6ISkQ&h=bQtHzz7r2xPFISCCNAcu4egpzmAS3yUTHHiozlkkGFo pragma: - no-cache strict-transport-security: @@ -254,13 +254,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/87050a89-dcfd-4dec-9ded-ee2536c049f3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a232aa82-3f26-4e8f-8e99-00fde4c9e729 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 81FDA6D8704A4171B41A6250F6E33F85 Ref B: BN1AA2051013011 Ref C: 2026-04-03T02:23:24Z' + - 'Ref A: 083C7852A964436BB9E3C91164D7F730 Ref B: SYD281080710023 Ref C: 2026-09-10T06:53:22Z' status: code: 202 message: Accepted @@ -278,9 +278,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-16ca8cf8-2f04-11f1-9403-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798052817687&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=QstJ7Z2_HSJtw2dvpP2f_y4F3Tzqjx3Q-V0lube4igJWQa3FveQB8g9EEnoxl7W1uy3pvr51gKY8b0PDbpEALfnT2tJdudLKxlVCao6EpnWRSBEDnIxvOFBGlozBJ4EGk_jPGYJHZr-JL5sRfFA9GBZqPgll_D-4uzXU94O7kOJJP0VQ-uFN0F6y87KX-JYcpq7EI6o4V-jLP68cmTaS1HGET-361K4PD524GF7FYB2svfbmGWIvhKwrI1Uy0YEGcSCfKemF0uL0AdQeLr3GHH2UmQKEET_eqt1Sl4LtoSbmcsHizaODLwGh2E2hjFwMHwuWO3_Pu112ceAGxmrcCQ&h=lppkzWRado-Twra_L2DIF2X1Fx8eTMOpbN_kzcADaNc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-50f56df4-ace4-11f1-bab8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200028606914&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=aRHkfCwk-HNBlmUqa11PvOo6ZmnykGEmr5sGVpIC42Y_lE4bT2rwq5au3N2YfYcNGCwIY625ndubr_VTYjiLSCkR_8jRvvKrXfPDBjc-7mDIFCtAbdGn37GULPkwzVWlbeNqE1Bt27fQzJnkgZiDzq2Uu5YYaZHZ442AtIIbidghYpGirSMWP8wIVAckz8cuoHVrPyl2rn1UVRBXZge2Aom8UqkNtCIdFnddPEmU95Vqcnmsaj2Vns_toR50UWn6oUd4gF6oZoKv8EFTiZKGx7jIvWNcdGeBEcxm2066BI8o-WUdv6snzUMWysf3sKNRX40fZPicefYtPsA9i6ISkQ&h=bQtHzz7r2xPFISCCNAcu4egpzmAS3yUTHHiozlkkGFo response: body: string: '' @@ -290,11 +290,11 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:27 GMT + - Thu, 10 Sep 2026 06:53:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-16ca8cf8-2f04-11f1-9403-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798071657327&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Omh67O0m4KoPwff4oVb0KpIqfnQ71ohczO8hSr6tNY8YVQSE5F--lJCw2KnHp1Y3W4QlYoEbFe8T00NRDyXzl5M0GvCRfQj9zoZGtQ3r5nELluA25qUxI-fiNBwcQrk8vnF9bnPgyDTrXAwXal9yRZcFDVHIu0inHrJ0Gv-20DLyTQEJQ5SzZYufQCDXijSKO4D_BSP3pZJt1ZWE0kC_4z64GW8Zz15yQcwkXEQR--8AHhhAs8urPMICxByI5BxnE9tIrsDqTAhib70y787R0r_b5KjrW-UYcfmgqZd5I8q3LwsGVOCNMqbrL0lVbsl5kcR4lzGN4qY0mUQgd6-QQA&h=PQNY3EOCE0etOX0sAMg0By-DBjLgtOeFPEyyJjd5ndQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-50f56df4-ace4-11f1-bab8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200042288227&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=o6ra2Ra7fG84cKkMXX-2CUEKHetyLH2bDT3OsebB6Mt5CXyW3VFm-6nMViX3VcVrhpOg8Omm-2oBNaNJEbd43f7N175WAC2JMyp5KSoF_uSVZuYnt5uEn6gb_glkWhpKMMZ7U2GR_BGL8eG2gipN_zNLQFb8LFy3wBWzqG5SwL3dRNyM_fYyivEvDAeeYMuaHqO3vGKvquBJzzZz-U6r7bAvCsTGdve9Mlkcc3kuL4DC_Dzg0fqeRJfl1VNpOahRn-6tqr2mw5zKcam3OXsWZgm7u5iOSiwFxtfXoa967YcVFd1xH2ll-JnWmunI888047HYzM1nm_5JXMTyjGYWvw&h=z-mBnE1HJo0Oxw41AI61TultQialElWC-PYwOUpZbyQ pragma: - no-cache strict-transport-security: @@ -304,11 +304,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/5c8ced82-ff98-4899-8f0c-c248ac1a1f51 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/61132763-2738-4a50-a0a9-384c4b3648c4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5E97567B39C3451F917F8A5FB71FC34F Ref B: BN1AA2051015009 Ref C: 2026-04-03T02:23:26Z' + - 'Ref A: 882C9898E14D4FAE948D4DE8B70ABA9F Ref B: SYD281080712023 Ref C: 2026-09-10T06:53:23Z' status: code: 202 message: Accepted @@ -326,9 +326,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-16ca8cf8-2f04-11f1-9403-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798071657327&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Omh67O0m4KoPwff4oVb0KpIqfnQ71ohczO8hSr6tNY8YVQSE5F--lJCw2KnHp1Y3W4QlYoEbFe8T00NRDyXzl5M0GvCRfQj9zoZGtQ3r5nELluA25qUxI-fiNBwcQrk8vnF9bnPgyDTrXAwXal9yRZcFDVHIu0inHrJ0Gv-20DLyTQEJQ5SzZYufQCDXijSKO4D_BSP3pZJt1ZWE0kC_4z64GW8Zz15yQcwkXEQR--8AHhhAs8urPMICxByI5BxnE9tIrsDqTAhib70y787R0r_b5KjrW-UYcfmgqZd5I8q3LwsGVOCNMqbrL0lVbsl5kcR4lzGN4qY0mUQgd6-QQA&h=PQNY3EOCE0etOX0sAMg0By-DBjLgtOeFPEyyJjd5ndQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-50f56df4-ace4-11f1-bab8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200042288227&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=o6ra2Ra7fG84cKkMXX-2CUEKHetyLH2bDT3OsebB6Mt5CXyW3VFm-6nMViX3VcVrhpOg8Omm-2oBNaNJEbd43f7N175WAC2JMyp5KSoF_uSVZuYnt5uEn6gb_glkWhpKMMZ7U2GR_BGL8eG2gipN_zNLQFb8LFy3wBWzqG5SwL3dRNyM_fYyivEvDAeeYMuaHqO3vGKvquBJzzZz-U6r7bAvCsTGdve9Mlkcc3kuL4DC_Dzg0fqeRJfl1VNpOahRn-6tqr2mw5zKcam3OXsWZgm7u5iOSiwFxtfXoa967YcVFd1xH2ll-JnWmunI888047HYzM1nm_5JXMTyjGYWvw&h=z-mBnE1HJo0Oxw41AI61TultQialElWC-PYwOUpZbyQ response: body: string: '' @@ -338,7 +338,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:38 GMT + - Thu, 10 Sep 2026 06:53:34 GMT expires: - '-1' pragma: @@ -350,11 +350,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/5dda8573-99af-4ecf-9077-6ecd9615c2b2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/671c312e-11ff-40a2-8257-3827d104185c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4657DC9021AE41F5898043DC19BDF9F7 Ref B: BN1AA2051012029 Ref C: 2026-04-03T02:23:38Z' + - 'Ref A: DAE06CEDEB8B43EF963976EF0ABB28A2 Ref B: SYD281080709040 Ref C: 2026-09-10T06:53:34Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_enabled.yaml index cee0632ce38..a69a1163652 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_regional_endpoints_enabled.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -g -n --sku --location --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:00.1856717+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:23:00.1856717Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976168+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976632+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:46.8678689+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:46.8678689Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349561+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1717' + - '1774' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:02 GMT + - Thu, 10 Sep 2026 06:53:55 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/933c2127-64b5-42b0-a4da-757b4390785a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0a23add7-8dab-4be2-9063-fb3c8d7877e3 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: FE17DAC9EDFB4F50B0706998C03F1F28 Ref B: BN1AA2051015029 Ref C: 2026-04-03T02:22:58Z' + - 'Ref A: 51C15B51C5BD44F084B3ECB074734DC8 Ref B: SYD281080712062 Ref C: 2026-09-10T06:53:41Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:00.1856717+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:23:00.1856717Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976168+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976632+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:46.8678689+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:46.8678689Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349561+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1717' + - '1774' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:04 GMT + - Thu, 10 Sep 2026 06:53:55 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F3DCECBA99C4F578AE58FE6EF3479E0 Ref B: BN1AA2051015009 Ref C: 2026-04-03T02:23:04Z' + - 'Ref A: 7AC7FA2B6BE94B2F8DD5BB9C89E65E43 Ref B: SYD281080712042 Ref C: 2026-09-10T06:53:55Z' status: code: 200 message: OK @@ -118,23 +118,23 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:00.1856717+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:23:00.1856717Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976168+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976632+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:46.8678689+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:46.8678689Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349561+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1717' + - '1774' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:06 GMT + - Thu, 10 Sep 2026 06:53:57 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 926C94137D1F4D4B9434B80D7F4D0B9F Ref B: BN1AA2051012035 Ref C: 2026-04-03T02:23:05Z' + - 'Ref A: 087D13198E1042379D7C002C718645F8 Ref B: SYD281080705040 Ref C: 2026-09-10T06:53:56Z' status: code: 200 message: OK @@ -166,9 +166,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002/replications?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002/replications?api-version=2026-09-01-preview response: body: string: '{"value":[]}' @@ -178,7 +178,7 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:07 GMT + - Thu, 10 Sep 2026 06:53:57 GMT expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F0171280ADBA423D8A51F3C13903D18F Ref B: BN1AA2051014035 Ref C: 2026-04-03T02:23:07Z' + - 'Ref A: 43DD2718B0DB42EF9B08AB73C1F2DB04 Ref B: SYD281080712054 Ref C: 2026-09-10T06:53:58Z' status: code: 200 message: OK @@ -220,23 +220,23 @@ interactions: ParameterSetName: - -g -n --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:00.1856717+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:23:00.1856717Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976168+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976632+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:46.8678689+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:46.8678689Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349561+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clitestre000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1717' + - '1774' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:08 GMT + - Thu, 10 Sep 2026 06:53:58 GMT expires: - '-1' pragma: @@ -250,7 +250,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 922E8D9B624F412EAA36B869FEAA8618 Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:23:09Z' + - 'Ref A: C2DA934E4EDD417F87D90C4989A5533E Ref B: SYD281080711054 Ref C: 2026-09-10T06:53:58Z' status: code: 200 message: OK @@ -272,23 +272,23 @@ interactions: ParameterSetName: - -g -n --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:11.2591734+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:23:00.1856717Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976168+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976632+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:59.8184257+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:46.8678689Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349561+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1679' + - '1736' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:12 GMT + - Thu, 10 Sep 2026 06:54:00 GMT expires: - '-1' pragma: @@ -300,13 +300,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/be2e82dc-0d4d-49e1-a1c2-1a871a9412b9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/347d752f-477d-4f8a-a81b-90d1364afbff x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BEACE62FB6A8493E874D9452CEEC7129 Ref B: BN1AA2051014009 Ref C: 2026-04-03T02:23:10Z' + - 'Ref A: BAD6C44FA1F74B8D8B3E29B582325F3F Ref B: SYD281080712034 Ref C: 2026-09-10T06:53:59Z' status: code: 200 message: OK @@ -324,23 +324,23 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:11.2591734+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:23:00.1856717Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976168+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976632+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:59.8184257+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:46.8678689Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349561+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1679' + - '1736' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:14 GMT + - Thu, 10 Sep 2026 06:54:01 GMT expires: - '-1' pragma: @@ -352,9 +352,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: C95A5702A0C7432A9998CBDA6056AFE7 Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:23:14Z' + - 'Ref A: FF096F9C9EC2410D849E894DD13922FC Ref B: SYD281080706062 Ref C: 2026-09-10T06:54:01Z' status: code: 200 message: OK @@ -372,9 +372,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002/replications?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002/replications?api-version=2026-09-01-preview response: body: string: '{"value":[]}' @@ -384,7 +384,7 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -392,7 +392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:15 GMT + - Thu, 10 Sep 2026 06:54:03 GMT expires: - '-1' pragma: @@ -408,7 +408,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2132EE5DC3C84EB1A0A342B5F8A5911D Ref B: BN1AA2051013051 Ref C: 2026-04-03T02:23:16Z' + - 'Ref A: 95335CDC03E6456CB08B63EEBCE7ECE5 Ref B: SYD281080710025 Ref C: 2026-09-10T06:54:02Z' status: code: 200 message: OK @@ -428,27 +428,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:11.2591734+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-04-03T02:23:00.1856717Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976168+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:02.9976632+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clitestre000002","name":"clitestre000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:46.8678689+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:59.8184257+00:00"},"properties":{"loginServer":"clitestre000002.azurecr.io","creationDate":"2026-09-10T06:53:46.8678689Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349561+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.9349917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1678' + - '1735' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:17 GMT + - Thu, 10 Sep 2026 06:54:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-12497178-2f04-11f1-b17a-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797982418760&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Bl42QctxZqY2AKSthppA5wm70mwDReN7cm03Nmb8FBY6ouemPNpE1P3Fv3U7ZDzCq9GRiL6OIMLdSmAySxKz5fkXVpM6JTXraLk77i-j-hYu3qLaIB3DFK2lTXnyC6Chp5RwbH-66c9dewztMxdyrMBYLkZV76i3r5bZQzfXDLurUTFJnFd2PAnnF86yQYMLxtGQBSMRyAeY-tA3g96NI1vn2O_qjbuTKQ_G5hXSnKgXiPe3fCp_ahCn9mfiSs9UvgGSZozVWZw4G3_7nXTRUWGQI_Lk3UxdiEqm5LjXDll7tUXmbWr7FxDZzojpyqPlkmsbKvovf0oomtu6T2XJyg&h=zrh285qoO34sd-EYfwhgX4s52-sJWgUSTmxOtsxRA-w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-69a7518b-ace4-11f1-9c38-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200447071024&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=DZFmBzFDIrWAfZfmoNXRwrDzJVW2k0XsiezjjW700GugNC-0UD-ejj5qcLNrl_lDiITgDmTY81PPm4uLPikzcDn9eDcVWGyYpgChLW4K9tDk-4nz96FMS0gxWO87FFhDv5t6M841gwcYzlnHY9ge-nzFi6eTXObNT0BCw8rWdVDg8UInEO-DpqwML1TfIVctjDoTGigQFwYPnZRPaLnrTtW0mWdi7Nd1IGJoxaV5bSzcwZiv0fdZnHsgrQKBgRVioM_VRVSMGorwpdZ0rY8LtvMoAjuob_oPlGbI0RyduA1sZYkbrN-nfLJSBoDb8jns2won8hFdbagnMM_T3-dP5g&h=J_0--fYP-04REO0oKenUqyPP_pwqskWKF4b6foxM1BI pragma: - no-cache strict-transport-security: @@ -458,13 +458,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/3144a503-7816-4dd7-8423-a4657e83e755 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d32d56cb-8fe6-44aa-970b-70337e1a1235 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 73B9AB6CB3E84A98BDEDD28564D4424A Ref B: BN1AA2051012053 Ref C: 2026-04-03T02:23:17Z' + - 'Ref A: EB455B2EB2DC418CB2900C9EA9C01C51 Ref B: SYD281080711031 Ref C: 2026-09-10T06:54:04Z' status: code: 202 message: Accepted @@ -482,9 +482,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-12497178-2f04-11f1-b17a-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797982418760&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Bl42QctxZqY2AKSthppA5wm70mwDReN7cm03Nmb8FBY6ouemPNpE1P3Fv3U7ZDzCq9GRiL6OIMLdSmAySxKz5fkXVpM6JTXraLk77i-j-hYu3qLaIB3DFK2lTXnyC6Chp5RwbH-66c9dewztMxdyrMBYLkZV76i3r5bZQzfXDLurUTFJnFd2PAnnF86yQYMLxtGQBSMRyAeY-tA3g96NI1vn2O_qjbuTKQ_G5hXSnKgXiPe3fCp_ahCn9mfiSs9UvgGSZozVWZw4G3_7nXTRUWGQI_Lk3UxdiEqm5LjXDll7tUXmbWr7FxDZzojpyqPlkmsbKvovf0oomtu6T2XJyg&h=zrh285qoO34sd-EYfwhgX4s52-sJWgUSTmxOtsxRA-w + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-69a7518b-ace4-11f1-9c38-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200447071024&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=DZFmBzFDIrWAfZfmoNXRwrDzJVW2k0XsiezjjW700GugNC-0UD-ejj5qcLNrl_lDiITgDmTY81PPm4uLPikzcDn9eDcVWGyYpgChLW4K9tDk-4nz96FMS0gxWO87FFhDv5t6M841gwcYzlnHY9ge-nzFi6eTXObNT0BCw8rWdVDg8UInEO-DpqwML1TfIVctjDoTGigQFwYPnZRPaLnrTtW0mWdi7Nd1IGJoxaV5bSzcwZiv0fdZnHsgrQKBgRVioM_VRVSMGorwpdZ0rY8LtvMoAjuob_oPlGbI0RyduA1sZYkbrN-nfLJSBoDb8jns2won8hFdbagnMM_T3-dP5g&h=J_0--fYP-04REO0oKenUqyPP_pwqskWKF4b6foxM1BI response: body: string: '' @@ -494,11 +494,11 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:19 GMT + - Thu, 10 Sep 2026 06:54:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-12497178-2f04-11f1-b17a-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798001538861&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=aMA4aaiezWkHbId-EitooLcq1pAGPTcTvitN29j1t_mNbvuf49rKWN1sVwG-WX3OFWKHBjHOW3nIEB9uemRZlv_vq_o87WWW0zd4bCHPLrbTCq7je3WbPPkPw4kh717XAftbX84kOZis1s3LV9H9iWk-K3YERJOWo1qKCCQdGCMZXSKznqX1F6UjoKVARR8LLL0znfyd5bXxssfMwEgyJdKn-gIfP_Wta3vqtrYOIWPRWGNFwBMivjVhnBO4z414lNRHJDtbVKNvq21t8g-8HahE60Dh-WjQWSzX48KC4HMC-Eo1Z-V9vKm8aep3-gxaYDt-sG6xS69du0_wmqv3jg&h=-YZJh4H0KJYmmLfZvMeMh1owW2Z6WU50IfPFykfhKt4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-69a7518b-ace4-11f1-9c38-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200460625815&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=XyHP1KjtnWVwz23ArNhffRWqihhKvm0-KOSDS-0oUOgO4I1jVKeFZlkIYlB_yUpSW9QP1VfmjV0C3nuZtr6MbY2L7-E5gzA6onLrPXdf2dlSSVsaVcfaz5tnBS_BRkOqhSoiCT-l-n9nDBWv25JFzs1_rowl10KbcLhw_gr69shwMK1TJqnKnwbMiXaz5gP7man-VBa2J_ruq4kTYBsk5OXFN0qFprFV_zSJ4RMY13Mu38_8PDA4nfDesYHqje9N2F5FYG8Fqut3eizcp9Ye7-j2Q3-cNu8oosFWlABwAYO6LIN5dVgjNjRPyLfumoesRVdo6dIbUlWqcDkXLKJrwA&h=Y6-c7gJFXG1uVh4dBMDz2FTs06k5EbmvguC7SckdL0g pragma: - no-cache strict-transport-security: @@ -508,11 +508,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/152547d6-b720-47ce-9ab4-6949cc64e2f4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c9ba11b7-2ff2-462a-8f5e-88203284b61b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5041985AC78B45E78B553700EC4EFF68 Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:23:19Z' + - 'Ref A: 20907D010FDC40A9A37A836BAE154469 Ref B: SYD281080706062 Ref C: 2026-09-10T06:54:05Z' status: code: 202 message: Accepted @@ -530,9 +530,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-12497178-2f04-11f1-b17a-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798001538861&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=aMA4aaiezWkHbId-EitooLcq1pAGPTcTvitN29j1t_mNbvuf49rKWN1sVwG-WX3OFWKHBjHOW3nIEB9uemRZlv_vq_o87WWW0zd4bCHPLrbTCq7je3WbPPkPw4kh717XAftbX84kOZis1s3LV9H9iWk-K3YERJOWo1qKCCQdGCMZXSKznqX1F6UjoKVARR8LLL0znfyd5bXxssfMwEgyJdKn-gIfP_Wta3vqtrYOIWPRWGNFwBMivjVhnBO4z414lNRHJDtbVKNvq21t8g-8HahE60Dh-WjQWSzX48KC4HMC-Eo1Z-V9vKm8aep3-gxaYDt-sG6xS69du0_wmqv3jg&h=-YZJh4H0KJYmmLfZvMeMh1owW2Z6WU50IfPFykfhKt4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clitestre000002-69a7518b-ace4-11f1-9c38-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200460625815&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=XyHP1KjtnWVwz23ArNhffRWqihhKvm0-KOSDS-0oUOgO4I1jVKeFZlkIYlB_yUpSW9QP1VfmjV0C3nuZtr6MbY2L7-E5gzA6onLrPXdf2dlSSVsaVcfaz5tnBS_BRkOqhSoiCT-l-n9nDBWv25JFzs1_rowl10KbcLhw_gr69shwMK1TJqnKnwbMiXaz5gP7man-VBa2J_ruq4kTYBsk5OXFN0qFprFV_zSJ4RMY13Mu38_8PDA4nfDesYHqje9N2F5FYG8Fqut3eizcp9Ye7-j2Q3-cNu8oosFWlABwAYO6LIN5dVgjNjRPyLfumoesRVdo6dIbUlWqcDkXLKJrwA&h=Y6-c7gJFXG1uVh4dBMDz2FTs06k5EbmvguC7SckdL0g response: body: string: '' @@ -542,7 +542,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:31 GMT + - Thu, 10 Sep 2026 06:54:16 GMT expires: - '-1' pragma: @@ -554,11 +554,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/74537aaa-ee08-43f8-abed-dece4268a5fd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/6c1351cc-d6b8-4ec5-9d3e-36af21057e26 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 218C8C63116B41EF8D8DA6C12E853350 Ref B: BN1AA2051013021 Ref C: 2026-04-03T02:23:31Z' + - 'Ref A: 3338DD686C3645C68D921DBBC30064AF Ref B: SYD281080710060 Ref C: 2026-09-10T06:54:16Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml new file mode 100644 index 00000000000..5e8a6bb78b0 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml @@ -0,0 +1,1823 @@ +interactions: +- request: + body: '{"location": "westus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '93' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --sku + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/31b41af8-dfb7-400f-9eb1-f09e427dae98 + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-msedge-ref: + - 'Ref A: C99EBC2CC83240D8BB8DE1BEBC6E0883 Ref B: SYD281080710034 Ref C: 2026-09-10T06:43:27Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - -n -g --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:27.5703909+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BA7F4A303EE447EBBE95C2FB52E27793 Ref B: SYD281080705036 Ref C: 2026-09-10T06:43:35Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"adminUserEnabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '42' + Content-Type: + - application/json + ParameterSetName: + - -n -g --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:38.9062985+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1720' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/05e8241d-d4bb-44eb-ac21-cf9072712d2c + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 0382A7D0795749E3BBFC4A2360F925C7 Ref B: SYD281080707023 Ref C: 2026-09-10T06:43:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - -n -g --writable-cache-repos + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:38.9062985+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1720' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8F2D2D928F6541DF88007F2841A940D4 Ref B: SYD281080707052 Ref C: 2026-09-10T06:43:39Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"writableCacheRepos": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json + ParameterSetName: + - -n -g --writable-cache-repos + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:43.0873333+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Enabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1719' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/8e99a6d2-f88e-4ac7-9ccd-0e0dc324caec + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: F9DE569486154CE4925A1C942706E526 Ref B: SYD281080712034 Ref C: 2026-09-10T06:43:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - -n -g --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:43.0873333+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Enabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1719' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DE8D53F7819F4FD995EC719C6ECC9163 Ref B: SYD281080712062 Ref C: 2026-09-10T06:43:44Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"adminUserEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '43' + Content-Type: + - application/json + ParameterSetName: + - -n -g --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:45.079072+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Enabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1719' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a0c164b9-c2c1-4579-a46b-2f476e3e8ea1 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 4E4A99357B0149C6B6BD01AE06A49AB9 Ref B: SYD281080710042 Ref C: 2026-09-10T06:43:44Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - -n -g --writable-cache-repos + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:45.079072+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Enabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1719' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FA8E861A40D0454299E58B9313209638 Ref B: SYD281080707052 Ref C: 2026-09-10T06:43:45Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"writableCacheRepos": "Disabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/json + ParameterSetName: + - -n -g --writable-cache-repos + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:47.1378195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4e57276e-52eb-4c78-9840-562880c0f834 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 5F36F85DE20C4F6D82FB3036F4FED731 Ref B: SYD281080705042 Ref C: 2026-09-10T06:43:46Z' + status: + code: 200 + message: OK +- request: + body: '{"name": "clireg000002", "type": "Microsoft.ContainerRegistry/registries", + "autoGeneratedDomainNameLabelScope": "Unsecure"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr check-name + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The registry + clireg000002 is already in use."}' + headers: + cache-control: + - no-cache + content-length: + - '105' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/408ba0ea-9433-483e-9ef2-2c867e37bc8d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3B609E86A4AB4ACE864BB70E4A6075A1 Ref B: SYD281080712052 Ref C: 2026-09-10T06:43:47Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + response: + body: + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:47.1378195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 312462C0F3F74B3FA5C6E438423C12D4 Ref B: SYD281080712054 Ref C: 2026-09-10T06:43:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:47.1378195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C73811BEE65A45158E26BAAE4A225276 Ref B: SYD281080710031 Ref C: 2026-09-10T06:43:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr show-usage + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:47.1378195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DAA17DA518EA4D0A94ABC4D85B1B1E13 Ref B: SYD281080708040 Ref C: 2026-09-10T06:43:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr show-usage + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-09-01-preview + response: + body: + string: '{"value":[{"name":"Size","limit":536870912000,"currentValue":0,"unit":"Bytes"},{"name":"MaximumStorageCapacity","limit":109951162777600,"currentValue":0,"unit":"Bytes"},{"name":"Webhooks","limit":500,"currentValue":0,"unit":"Count"},{"name":"Geo-replications","limit":-1,"currentValue":0,"unit":"Count"},{"name":"IPRules","limit":200,"currentValue":0,"unit":"Count"},{"name":"VNetRules","limit":100,"currentValue":0,"unit":"Count"},{"name":"PrivateEndpointConnections","limit":400,"currentValue":0,"unit":"Count"},{"name":"ScopeMaps","limit":50000,"currentValue":0,"unit":"Count"},{"name":"Tokens","limit":50000,"currentValue":0,"unit":"Count"}]}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '646' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6b6718b4-3844-4958-9fb7-a4d28b3ea8c5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0169B122C94A4FFBB141D8017852896E Ref B: SYD281080711054 Ref C: 2026-09-10T06:43:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - -n -g --tags --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:47.1378195+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5A9E768DFD18489D9F4EF161B18163A9 Ref B: SYD281080712029 Ref C: 2026-09-10T06:43:54Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"adminUserEnabled": true}, "tags": {"foo": "bar", "cat": + ""}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '77' + Content-Type: + - application/json + ParameterSetName: + - -n -g --tags --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1fd50eb5-7598-4ebe-9bbd-e93edeff944a + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 459376250A82486BA932441A484148A9 Ref B: SYD281080705052 Ref C: 2026-09-10T06:43:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2D9026E8C1DE4A19A8CAA53BCBD3B8B2 Ref B: SYD281080705036 Ref C: 2026-09-10T06:43:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:43:35.0652699+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:35.065309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5A365591B6C643AA9C9E565AF6D151AB Ref B: SYD281080708025 Ref C: 2026-09-10T06:43:56Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention update + Connection: + - keep-alive + Content-Length: + - '347' + Content-Type: + - application/json + ParameterSetName: + - -r --status --days --type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:58.0543372+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:58.1053333+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:58.1053987+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a6d7bc01-930a-4520-b41c-a41f7cf4dda4 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 629BFD1D37874F5EA3C39160856A0602 Ref B: SYD281080708054 Ref C: 2026-09-10T06:43:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 37DF98F9C33249DCAB3B5C35E850D5C0 Ref B: SYD281080710029 Ref C: 2026-09-10T06:43:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:58.0543372+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:58.1053333+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:58.1053987+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:43:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F4C9D665C9744DE7A3B993069AE020B4 Ref B: SYD281080710042 Ref C: 2026-09-10T06:43:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust update + Connection: + - keep-alive + ParameterSetName: + - -n --status --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8FED5D8CB2FB46169A4667CB9B85953D Ref B: SYD281080709042 Ref C: 2026-09-10T06:44:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust update + Connection: + - keep-alive + ParameterSetName: + - -n --status --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:58.0543372+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:43:58.1053333+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:43:58.1053987+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 48B4EAE5E59A4642AF4D632B07465467 Ref B: SYD281080711034 Ref C: 2026-09-10T06:44:01Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust update + Connection: + - keep-alive + Content-Length: + - '347' + Content-Type: + - application/json + ParameterSetName: + - -n --status --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:02.5884302+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:02.6240702+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:02.6241283+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e8b1d34d-b973-4b03-b048-0b165fa91350 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 2E5C55B718DA4951B1DD5E7376744247 Ref B: SYD281080710023 Ref C: 2026-09-10T06:44:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3FCCD94449C346489133173B7BAD4D34 Ref B: SYD281080706040 Ref C: 2026-09-10T06:44:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:02.5884302+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:02.6240702+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:02.6241283+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 89880B1DB6034C309190DC4CC5617C34 Ref B: SYD281080706031 Ref C: 2026-09-10T06:44:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4lldags5rds537ilmhseb45rzdu2tsq7hqux7jutn5xrhzw5zn3s6wfeo6vfbtucd/providers/Microsoft.ContainerRegistry/registries/cliregpuc5pq2uo76tsb","name":"cliregpuc5pq2uo76tsb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:20.6858425Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:35.6149085Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 870DD44A2569407DAEF7DAF1CE826F00 Ref B: SYD281080706052 Ref C: 2026-09-10T06:44:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:02.5884302+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:02.6240702+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:02.6241283+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C079CC1AB75D4C789E8FA18E6B406E74 Ref B: SYD281080706034 Ref C: 2026-09-10T06:44:05Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 30, "status": "enabled"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete update + Connection: + - keep-alive + Content-Length: + - '347' + Content-Type: + - application/json + ParameterSetName: + - -r --status --days --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:06.9166057+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:07.0216398+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:07.0217046+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1a1495dd-ea5d-4bba-8c04-0185c2a57bfe + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 63CCA13BFDB349FAAECBCD2BB5FCF5FB Ref B: SYD281080710031 Ref C: 2026-09-10T06:44:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:55.3119068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgshirlmwswyz4yqaebf25ac5b2eyhx3punfnimcpntxjcy4jlealux6jumromjbyih/providers/Microsoft.ContainerRegistry/registries/cliregahiq7jry4vouz7","name":"cliregahiq7jry4vouz7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:33.4565203Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:43:33.4565203Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_rfg4nbcwqcmsnfjopk2mwdic5ttw4lhg5jxkitxxgoexynkw67i6726uc3/providers/Microsoft.ContainerRegistry/registries/clitestrbacidrlh","name":"clitestrbacidrlh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:00.3314344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:00.3314344Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2826' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C7F5A55E3C0848C58435CB5B0FB77C35 Ref B: SYD281080709031 Ref C: 2026-09-10T06:44:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:06.9166057+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:07.0216398+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:07.0217046+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 539199240E164097A720D3573933CE58 Ref B: SYD281080707036 Ref C: 2026-09-10T06:44:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:06.9166057+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:07.0216398+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:07.0217046+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BFDD2C4A97194285B86856EA50899187 Ref B: SYD281080705025 Ref C: 2026-09-10T06:44:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview + response: + body: + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"FZoj8fAQm3WYcFq7cwUGf0skb3GJLaOJ5lbSBjh21gQqkplJOMqiJQQJ99CIAC4f1cMEqg7NAAACAZCR23Ee"},{"name":"password2","value":"7Wm3y0LckBOlPFoJ9N3swv8OUt5DR7FfiF9fZlK2ApZ38KpizoBOJQQJ99CIAC4f1cMEqg7NAAACAZCRcO4W"}]}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '272' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2fc7691e-5560-47a4-a036-73a040bef831 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: E7A44C19A2444478B03EC4012E3BBF19 Ref B: SYD281080709054 Ref C: 2026-09-10T06:44:10Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:43:27.5703909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:06.9166057+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:43:27.5703909Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:07.0216398+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:44:07.0217046+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-084c43e2-ace3-11f1-844f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194518545339&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=aO3hr0odezDnLoJ-bHaJVCfeEkZkBO-o1gUjSMiI2OZ5mLp2OkiKqYRbP5_NWqXx7ODnGqWpCR2P4G8BNQiv-BfjnBQvgC-tVtpx7GmcrmfOCkWUadjGakC11VIh_NH2I7To0o3SJFeKGQ04VrFV_1ilICApgHRWz2PJXwJZ_scqrL5xrKjAHpM3eX8T-XVD0ppNEbQ0W4w8aDbh-z49JPIF0SClhCaXDBvdEmc1BTCVr8WH5gblVFeOp17p-qIZyfKjg3WKgya52KC7oZ5gHU4u4aJSzvipy62uqOohsa-iXeXYERWfUSpaC-6z7QSWk2IH1tapbjJLeqYLdAahzQ&h=inX6_TYzTfleASFDGkKjEKKH9PiKmsD9g7GKq0g1tck + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8661a2e7-e145-41d7-b691-5a53ece75d8e + x-ms-ratelimit-remaining-subscription-deletes: + - '799' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '11999' + x-msedge-ref: + - 'Ref A: A8ECE6BEA25E47E285CCA81BED0A0801 Ref B: SYD281080708042 Ref C: 2026-09-10T06:44:11Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-084c43e2-ace3-11f1-844f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194518545339&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=aO3hr0odezDnLoJ-bHaJVCfeEkZkBO-o1gUjSMiI2OZ5mLp2OkiKqYRbP5_NWqXx7ODnGqWpCR2P4G8BNQiv-BfjnBQvgC-tVtpx7GmcrmfOCkWUadjGakC11VIh_NH2I7To0o3SJFeKGQ04VrFV_1ilICApgHRWz2PJXwJZ_scqrL5xrKjAHpM3eX8T-XVD0ppNEbQ0W4w8aDbh-z49JPIF0SClhCaXDBvdEmc1BTCVr8WH5gblVFeOp17p-qIZyfKjg3WKgya52KC7oZ5gHU4u4aJSzvipy62uqOohsa-iXeXYERWfUSpaC-6z7QSWk2IH1tapbjJLeqYLdAahzQ&h=inX6_TYzTfleASFDGkKjEKKH9PiKmsD9g7GKq0g1tck + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Sep 2026 06:44:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-084c43e2-ace3-11f1-844f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194532261656&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GHYD4uAimdoxtRsgF4k4CYTXi8mLLyrK2K1-_M7Xk22kWXV-MFkTPOD08El9Gd2MBBjTn80bhQXbiiQ3nqiCf4qwpXsSCy628fTwzPSjirr5QUuLMKThyNV79Dw3ytOJtEgdBgLBMJDcsBfzxKASSbYeXdoKJF4ax2RrYggwJuxj-rxbX2DiKMK2PchlwQVJ7b5SNCG-UZ3-1y5o_q3KJHy8o0h8gd9MOVMJLZU5m3J9rdL92RJ53KBDWR6p77HdpSyV7idzXEQd9W1d80VDrQD8LaZuAhLeMjEoLKotFMvu_aLULsDXkIOTSyOc-gHrYL7UDci7Dw3B78trHnkSBg&h=Ezwpjnw-z9ITw_sJQFW9KF-ZFwSZr-SxVww0w78nMmo + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/0b48d530-0752-4fb2-a910-702eb88226bb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EB8D09D6CB7F4FD48D02B4DF51AA0AA1 Ref B: SYD281080707029 Ref C: 2026-09-10T06:44:12Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-084c43e2-ace3-11f1-844f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246194532261656&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=GHYD4uAimdoxtRsgF4k4CYTXi8mLLyrK2K1-_M7Xk22kWXV-MFkTPOD08El9Gd2MBBjTn80bhQXbiiQ3nqiCf4qwpXsSCy628fTwzPSjirr5QUuLMKThyNV79Dw3ytOJtEgdBgLBMJDcsBfzxKASSbYeXdoKJF4ax2RrYggwJuxj-rxbX2DiKMK2PchlwQVJ7b5SNCG-UZ3-1y5o_q3KJHy8o0h8gd9MOVMJLZU5m3J9rdL92RJ53KBDWR6p77HdpSyV7idzXEQd9W1d80VDrQD8LaZuAhLeMjEoLKotFMvu_aLULsDXkIOTSyOc-gHrYL7UDci7Dw3B78trHnkSBg&h=Ezwpjnw-z9ITw_sJQFW9KF-ZFwSZr-SxVww0w78nMmo + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Sep 2026 06:44:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c2a44be8-5a2c-42e0-b266-f5cf06d8dad5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9A234905DFD1446C91A0B730FE8B28CE Ref B: SYD281080706036 Ref C: 2026-09-10T06:44:23Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml new file mode 100644 index 00000000000..2bfb2144d4c --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml @@ -0,0 +1,1511 @@ +interactions: +- request: + body: '{"location": "westus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": + false, "writableCacheRepos": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '126' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --sku --writable-cache-repos + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:32.0100072+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Enabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1720' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/5a2c511c-2c80-4159-9791-1e70ba64d497 + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-msedge-ref: + - 'Ref A: 3974891676DE48E3AD35ABC956DA6BA1 Ref B: SYD281080712034 Ref C: 2026-09-10T06:44:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - -n -g --writable-cache-repos + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:32.0100072+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Enabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1720' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F8C7C713DB954670AD9221728B4F1C73 Ref B: SYD281080707036 Ref C: 2026-09-10T06:44:41Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"writableCacheRepos": "Disabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/json + ParameterSetName: + - -n -g --writable-cache-repos + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:44.3352524+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/336441f6-799a-4c24-9f47-744c8d398ddc + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 95AA51C7D1634E0CBAEBCA9B224C59FC Ref B: SYD281080705062 Ref C: 2026-09-10T06:44:42Z' + status: + code: 200 + message: OK +- request: + body: '{"name": "clireg000002", "type": "Microsoft.ContainerRegistry/registries", + "autoGeneratedDomainNameLabelScope": "Unsecure"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr check-name + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The registry + clireg000002 is already in use."}' + headers: + cache-control: + - no-cache + content-length: + - '105' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/cb473059-233f-49f9-b1ac-79137f6a1971 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AFDCA0219A064C848C9600F3E69D0ACA Ref B: SYD281080706031 Ref C: 2026-09-10T06:44:45Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + response: + body: + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:44.3352524+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1733' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E24B57C83F3741A591E94F7A7CE6FF86 Ref B: SYD281080710034 Ref C: 2026-09-10T06:44:47Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:44.3352524+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 75619896617D4E0090C18972882211DF Ref B: SYD281080705054 Ref C: 2026-09-10T06:44:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr show-usage + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:44.3352524+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 120B018697B84243A3D373F4379C7F34 Ref B: SYD281080708060 Ref C: 2026-09-10T06:44:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr show-usage + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listUsages?api-version=2026-09-01-preview + response: + body: + string: '{"value":[{"name":"Size","limit":536870912000,"currentValue":0,"unit":"Bytes"},{"name":"MaximumStorageCapacity","limit":109951162777600,"currentValue":0,"unit":"Bytes"},{"name":"Webhooks","limit":500,"currentValue":0,"unit":"Count"},{"name":"Geo-replications","limit":-1,"currentValue":0,"unit":"Count"},{"name":"IPRules","limit":200,"currentValue":0,"unit":"Count"},{"name":"VNetRules","limit":100,"currentValue":0,"unit":"Count"},{"name":"PrivateEndpointConnections","limit":400,"currentValue":0,"unit":"Count"},{"name":"ScopeMaps","limit":50000,"currentValue":0,"unit":"Count"},{"name":"Tokens","limit":50000,"currentValue":0,"unit":"Count"}]}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '646' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b957448a-a486-4463-9f97-f0ada6cb5c34 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 818320F33D0C4429AD1454ABFB3E4F7A Ref B: SYD281080712025 Ref C: 2026-09-10T06:44:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - -n -g --tags --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:44.3352524+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1721' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AD85C751FC6F49448D964AC6C5EF092D Ref B: SYD281080707062 Ref C: 2026-09-10T06:44:51Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"adminUserEnabled": true}, "tags": {"foo": "bar", "cat": + ""}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '77' + Content-Type: + - application/json + ParameterSetName: + - -n -g --tags --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9a20dfd2-5c67-4598-86dd-1bf3f17ffc23 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: C48B5805B51C4076B6ACE34ABCEDE812 Ref B: SYD281080709060 Ref C: 2026-09-10T06:44:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4041' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B5858387B10248F4B9D55E2E60831320 Ref B: SYD281080707025 Ref C: 2026-09-10T06:44:52Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:40.958421+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:40.9584708+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A715A2084B7E43EC8674A8AAEA785100 Ref B: SYD281080708054 Ref C: 2026-09-10T06:44:53Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention update + Connection: + - keep-alive + Content-Length: + - '347' + Content-Type: + - application/json + ParameterSetName: + - -r --status --days --type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:54.2417103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:54.307269+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:54.3073322+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/001b429c-8b93-49b8-9c4e-f3202c4bc5e6 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 04F78583C1E8431C82392EA4B39DB404 Ref B: SYD281080711042 Ref C: 2026-09-10T06:44:54Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4041' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 666E145E401C4E38B00897B0530ED56D Ref B: SYD281080706023 Ref C: 2026-09-10T06:44:54Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config retention show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:54.2417103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:54.307269+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:54.3073322+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2A674742E6844A46AFD0B21C454D4862 Ref B: SYD281080711054 Ref C: 2026-09-10T06:44:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust update + Connection: + - keep-alive + ParameterSetName: + - -n --status --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4041' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 278D09EDEF0F44BC86A3F157439210F7 Ref B: SYD281080706031 Ref C: 2026-09-10T06:44:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust update + Connection: + - keep-alive + ParameterSetName: + - -n --status --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:54.2417103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:54.307269+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:54.3073322+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4CCE4D3266F44F4DB0E15B081160F185 Ref B: SYD281080712062 Ref C: 2026-09-10T06:44:57Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust update + Connection: + - keep-alive + Content-Length: + - '347' + Content-Type: + - application/json + ParameterSetName: + - -n --status --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:58.5321338+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:58.6149247+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:58.6149791+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7176b7e6-1047-476c-bbde-cd072a82865e + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 4A9EAE1FC6D544D98C2B3389E0FFACD1 Ref B: SYD281080712025 Ref C: 2026-09-10T06:44:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4041' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3A928ABCBD754AB69097CD739E846A3C Ref B: SYD281080708060 Ref C: 2026-09-10T06:44:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config content-trust show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:58.5321338+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:58.6149247+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:58.6149791+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 768399D15ADC4066BA605C2ECC80A1D3 Ref B: SYD281080709060 Ref C: 2026-09-10T06:45:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","name":"testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","name":"cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4041' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4C56366B66EC42D7BD9DC89ACC5FD427 Ref B: SYD281080712052 Ref C: 2026-09-10T06:45:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete update + Connection: + - keep-alive + ParameterSetName: + - -r --status --days --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:58.5321338+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:44:58.6149247+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:58.6149791+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AC77084DD9A345498EFE95A29688268E Ref B: SYD281080711040 Ref C: 2026-09-10T06:45:01Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 30, "status": "enabled"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete update + Connection: + - keep-alive + Content-Length: + - '347' + Content-Type: + - application/json + ParameterSetName: + - -r --status --days --yes + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:02.2175165+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:02.2621521+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:45:02.2622074+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b386b4f6-79b9-4e65-82f3-edc0ddd31037 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 861D9CFD128D421A8A69EF2E73C56AF6 Ref B: SYD281080705034 Ref C: 2026-09-10T06:45:01Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"name":"magic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"name":"testregoyuqv2efurqvy","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg75ltcmwmwmzn4vjktbzxn5niqc7z5tx5ixosp6xutf2mwv46mz2ldvd3xig3aqm5l/providers/Microsoft.ContainerRegistry/registries/testregoyuqv2efurqvy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:12.7730255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:12.7730255Z"}},{"name":"cliregfckivn52alvx7u","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"name":"clireg000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:51.8956041Z"}},{"name":"cliregkdfalurjf2pehq","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6rmt2reihxeyymktj2mv4guef6twyrhgzobr54jzn2fnvykfrgvbftarkvsszcs2/providers/Microsoft.ContainerRegistry/registries/cliregkdfalurjf2pehq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:35.8358344Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:45.5244798Z"}},{"name":"cliregnzljctjaxp6de4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4041' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 469634363DC340ADBB24D6BB76F414EF Ref B: SYD281080708031 Ref C: 2026-09-10T06:45:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr config soft-delete show + Connection: + - keep-alive + ParameterSetName: + - -r + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:02.2175165+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:02.2621521+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:45:02.2622074+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0CCE36A2CAC646C89A8FD83876CED689 Ref B: SYD281080709054 Ref C: 2026-09-10T06:45:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:02.2175165+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:02.2621521+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:45:02.2622074+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F1CA4257C55F4BBE8CB163632E939055 Ref B: SYD281080709031 Ref C: 2026-09-10T06:45:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview + response: + body: + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"BXv38jDuyYPQ0TEA601J4m1X57CfEFm5TBDWL5lhbLYpuJi5Qe4yJQQJ99CIAC4f1cMEqg7NAAACAZCRitau"},{"name":"password2","value":"5yAuqbs3pD99X5Q6dHPr33kry25hSmtx28Jp5z7DIn6Z8Uv334jAJQQJ99CIAC4f1cMEqg7NAAACAZCRGosN"}]}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '272' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3f909090-6c41-4d62-8292-c19c96df94a0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: C5F94C24FE634CFA94B2363F03D967A4 Ref B: SYD281080711040 Ref C: 2026-09-10T06:45:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:32.0100072+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:45:02.2175165+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:44:32.0100072Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-09-10T06:45:02.2621521+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-09-10T06:45:02.2622074+00:00","status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:45:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-2895c0c8-ace3-11f1-8da8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195057023496&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=BYJHu0ZujDC_OmzzdVmDzreJ4Z1QWYFvczgHdCVtpctoar6j8wfkkjVzdt4gK61GLji1GhayctZXAx5nglbuwnOcJF28DFGNJWfw8iCifjbTYAGr1inY0c3ZgAsbs_L7u7qb396BscoSPVaEcRO86V-z5X5hMIzz4X0kNzY2ZtjxuKCr3-CcAzG_UY8xuch2KwoigYnk8k6UPZKIcIe_YBK31Hnv8SiEk170A1nFcEKApZDT2KPznzHgtTqT_bvH1zC30OPQZ3vc0ZP2V9-cr-AwolicGeDQMonLO20bVSY56WvmOk8ZEKgQwdx-vwWiqUqphRR55eVNbWxN-uQhCg&h=tIKJkv7EqtHFsOHf6Ona-huW7tCEVPsO_nTp4fzA-2A + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a4e8e5ca-c2b1-40eb-8a5c-d5275110e8a3 + x-ms-ratelimit-remaining-subscription-deletes: + - '799' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '11999' + x-msedge-ref: + - 'Ref A: D3D64F5FE99A47DA8606E715D53D1C18 Ref B: SYD281080706060 Ref C: 2026-09-10T06:45:05Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-2895c0c8-ace3-11f1-8da8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195057023496&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=BYJHu0ZujDC_OmzzdVmDzreJ4Z1QWYFvczgHdCVtpctoar6j8wfkkjVzdt4gK61GLji1GhayctZXAx5nglbuwnOcJF28DFGNJWfw8iCifjbTYAGr1inY0c3ZgAsbs_L7u7qb396BscoSPVaEcRO86V-z5X5hMIzz4X0kNzY2ZtjxuKCr3-CcAzG_UY8xuch2KwoigYnk8k6UPZKIcIe_YBK31Hnv8SiEk170A1nFcEKApZDT2KPznzHgtTqT_bvH1zC30OPQZ3vc0ZP2V9-cr-AwolicGeDQMonLO20bVSY56WvmOk8ZEKgQwdx-vwWiqUqphRR55eVNbWxN-uQhCg&h=tIKJkv7EqtHFsOHf6Ona-huW7tCEVPsO_nTp4fzA-2A + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Sep 2026 06:45:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-2895c0c8-ace3-11f1-8da8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195067926066&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Mp5pkOnVnMC8Y1GV98mjlPIxWs1ewrhj2QQ8SDLy-5vw2wKKACkt9MhK_txkDJw5MNNBZs8TbzKEwUmPvhUn0On0YYyumiwW6sxiOHoW_yAbRPd1j_NAVeOTJvfALM02ptLHeZ5fMM7ZQMAbdsnoHcMh3lMSJQVlQIKRQhVPR1Cu5QB3XYPMgnLAaBk5aV7Yr_-M2xDsJyPa6EISYqAq0u_YJR1Pj8WOj0khlAeK1MqfG9aLR3i3oFU3oThG7Qx2UhVBZRyAsXRs_Ua3hKkzC61hNxmJk6mZm-nDNMNfzApmB0cUasYi_8t7Le-5fSFIh2CNxgdD1EI4QPt9PJxUeg&h=jJEayIP60w4Ur0CA8CUJk1NuW7pNofVAFsjEbooLY7Y + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1ca111c7-ac51-42ae-a943-898be9770d4a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5624938B82E04A02B45718FD05969DD7 Ref B: SYD281080708040 Ref C: 2026-09-10T06:45:06Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr delete + Connection: + - keep-alive + ParameterSetName: + - -n -g -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-2895c0c8-ace3-11f1-8da8-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195067926066&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=Mp5pkOnVnMC8Y1GV98mjlPIxWs1ewrhj2QQ8SDLy-5vw2wKKACkt9MhK_txkDJw5MNNBZs8TbzKEwUmPvhUn0On0YYyumiwW6sxiOHoW_yAbRPd1j_NAVeOTJvfALM02ptLHeZ5fMM7ZQMAbdsnoHcMh3lMSJQVlQIKRQhVPR1Cu5QB3XYPMgnLAaBk5aV7Yr_-M2xDsJyPa6EISYqAq0u_YJR1Pj8WOj0khlAeK1MqfG9aLR3i3oFU3oThG7Qx2UhVBZRyAsXRs_Ua3hKkzC61hNxmJk6mZm-nDNMNfzApmB0cUasYi_8t7Le-5fSFIh2CNxgdD1EI4QPt9PJxUeg&h=jJEayIP60w4Ur0CA8CUJk1NuW7pNofVAFsjEbooLY7Y + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Sep 2026 06:45:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4891623c-65b1-4e41-b040-780d4dcaf633 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 70C56C02DFE4447AA5E6BA58B12EB5E5 Ref B: SYD281080706029 Ref C: 2026-09-10T06:45:17Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_encryption_with_cmk.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_encryption_with_cmk.yaml index 6cd587bef90..7f2d30606c3 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_encryption_with_cmk.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_encryption_with_cmk.yaml @@ -11,31 +11,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://graph.microsoft.com/v1.0/me response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity","businessPhones":["+1 - (425) 7057072"],"displayName":"Zoey Li","givenName":"Zoey","jobTitle":"Software - Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"Home - Office","preferredLanguage":null,"surname":"Li","userPrincipalName":"test@example.com","id":"6be58acb-6e1e-4e5a-aa2b-6474dc5023eb"}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users/$entity","businessPhones":[],"displayName":"Nihal + Varadachari","givenName":"Nihal","jobTitle":"Software Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"MELBOURNE-FRESH","preferredLanguage":null,"surname":"Varadachari","userPrincipalName":"test@example.com","id":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35"}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '391' + - '397' content-type: - - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; - charset=utf-8 + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:38 GMT + - Thu, 10 Sep 2026 06:46:00 GMT odata-version: - '4.0' request-id: - - a90d3068-0477-43ca-aed3-d241ca24ef90 + - fdb39c48-2054-49b4-982a-1e64f0229aad strict-transport-security: - max-age=31536000 transfer-encoding: @@ -45,9 +42,7 @@ interactions: x-cache: - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"East US 2","Slice":"E","Ring":"5","ScaleUnit":"005","RoleInstance":"BN2PEPF000090B0"}}' - x-ms-gateway-esc: - - '200' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF0000548F"}}' x-ms-resource-unit: - '1' status: @@ -67,9 +62,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276be58acb-6e1e-4e5a-aa2b-6474dc5023eb%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%274b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' @@ -81,14 +76,13 @@ interactions: content-length: - '92' content-type: - - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; - charset=utf-8 + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:44 GMT + - Thu, 10 Sep 2026 06:46:01 GMT odata-version: - '4.0' request-id: - - d2e4ef42-b71e-451b-92fe-3bc1db3b5b7d + - 5ba120ed-fe22-40cb-b4f9-c88d1cbff022 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -98,16 +92,14 @@ interactions: x-cache: - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"East US 2","Slice":"E","Ring":"5","ScaleUnit":"005","RoleInstance":"BN2PEPF000090CA"}}' - x-ms-gateway-esc: - - '200' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF0000548F"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["6be58acb-6e1e-4e5a-aa2b-6474dc5023eb"], "types": ["user", "group", + body: '{"ids": ["4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -125,33 +117,30 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.user","id":"6be58acb-6e1e-4e5a-aa2b-6474dc5023eb","businessPhones":["+1 - (425) 7057072"],"displayName":"Zoey Li","givenName":"Zoey","jobTitle":"Software - Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"Home - Office","preferredLanguage":null,"surname":"Li","userPrincipalName":"test@example.com"}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.user","id":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","businessPhones":[],"displayName":"Nihal + Varadachari","givenName":"Nihal","jobTitle":"Software Engineer II","mail":"test@example.com","mobilePhone":null,"officeLocation":"MELBOURNE-FRESH","preferredLanguage":null,"surname":"Varadachari","userPrincipalName":"test@example.com"}]}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '444' + - '450' content-type: - - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; - charset=utf-8 + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:48 GMT + - Thu, 10 Sep 2026 06:46:02 GMT location: - - https://graph.microsoft.com/ + - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 0d5fe581-24c1-440e-ad3e-11fbf244dd4d + - 4fb8feac-497b-48a8-8903-0e2622842b67 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -161,9 +150,7 @@ interactions: x-cache: - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"East US 2","Slice":"E","Ring":"5","ScaleUnit":"007","RoleInstance":"BN1PEPF0001680D"}}' - x-ms-gateway-esc: - - '200' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"SY2PEPF00014B65"}}' x-ms-resource-unit: - '3' status: @@ -183,9 +170,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Key%20Vault%20Administrator%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27Key%20Vault%20Administrator%27 response: body: string: '{"value":[{"properties":{"roleName":"Key Vault Administrator","type":"BuiltInRole","description":"Perform @@ -201,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:53 GMT + - Thu, 10 Sep 2026 06:46:03 GMT expires: - '-1' pragma: @@ -213,17 +200,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/f8bfe0be-05ac-4883-a088-b319eff6c1cd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c87e79ed-cc6e-4e20-8471-9b4e4e8c6aab x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: ACB6D97D05864B8782ED067DFD74F936 Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:30:54Z' + - 'Ref A: 48065A3351294DEDA42A95A9B250F377 Ref B: SYD281080708052 Ref C: 2026-09-10T06:46:03Z' status: code: 200 message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483", - "principalId": "6be58acb-6e1e-4e5a-aa2b-6474dc5023eb", "principalType": "User"}}' + "principalId": "4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35", "principalType": "User"}}' headers: Accept: - application/json @@ -240,12 +227,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/2557f626-203e-4d81-9afd-9ca574f21632?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/5f82f714-51af-4237-b80d-49e0ea54100a?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"6be58acb-6e1e-4e5a-aa2b-6474dc5023eb","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","condition":null,"conditionVersion":null,"createdOn":"2026-04-03T02:30:59.4861800Z","updatedOn":"2026-04-03T02:30:59.7351809Z","createdBy":null,"updatedBy":"6be58acb-6e1e-4e5a-aa2b-6474dc5023eb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/2557f626-203e-4d81-9afd-9ca574f21632","type":"Microsoft.Authorization/roleAssignments","name":"2557f626-203e-4d81-9afd-9ca574f21632"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T06:46:04.7000315Z","updatedOn":"2026-09-10T06:46:05.7194344Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/5f82f714-51af-4237-b80d-49e0ea54100a","type":"Microsoft.Authorization/roleAssignments","name":"5f82f714-51af-4237-b80d-49e0ea54100a"}' headers: cache-control: - no-cache @@ -254,7 +241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:01 GMT + - Thu, 10 Sep 2026 06:46:08 GMT expires: - '-1' pragma: @@ -266,13 +253,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/53dc6c93-729a-4f79-9208-15d2c4736a51 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c44c5445-0394-4de5-aef4-3588bbdb7324 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 9D2F2DFE11F54ACAB3899DE175160E56 Ref B: BN1AA2051012035 Ref C: 2026-04-03T02:30:59Z' + - 'Ref A: 554A0937C630477B94C95B9E5771B272 Ref B: SYD281080710040 Ref C: 2026-09-10T06:46:04Z' status: code: 201 message: Created @@ -294,7 +281,7 @@ interactions: ParameterSetName: - --name --vault-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://clitest000002.vault.azure.net/keys/testkey000003/create?api-version=7.6-preview.2 response: @@ -309,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:21 GMT + - Thu, 10 Sep 2026 06:46:24 GMT expires: - '-1' pragma: @@ -322,11 +309,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=136.55.173.44;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.242.26;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.3070.1 + - 1.9.3718.1 status: code: 401 message: Unauthorized @@ -348,12 +335,12 @@ interactions: ParameterSetName: - --name --vault-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://clitest000002.vault.azure.net/keys/testkey000003/create?api-version=7.6-preview.2 response: body: - string: '{"key":{"kid":"https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"x87yYuIiNKob07ZKQ9Qbz8gGVUiCll0RcD88zNoXzz3rpmR19FlN6pKUcQBF2FX7dWFORmuBGQSNLz6LuT0PJ8s0wUj5ScjiRW4--zVyoftmz3BRLa07NzmXy4DJzONYl9kL34RzUMHs38xjkA2O9idvvyGzvI6Ie3TWRAVvdu1zvep8f7zhHrt5Fb6O_Qnx7ArWqDrro5cSgTFIs8asZmf9njdD-YTbPeWvsUukJx9mEWq_bqpAWkYO3RdzRuQ2_jMV2xqO49-98uvoqzp6FjZSLFtvYoL3W9eBciGAEHySt0rfbMRkhinOlsY4pu8AXb8Gd8nAa6hTRzcHgdIEpQ","e":"AQAB"},"attributes":{"enabled":true,"key_size":2048,"created":1775183489,"updated":1775183489,"recoveryLevel":"CustomizedRecoverable","recoverableDays":7,"exportable":false,"hsmPlatform":"0"}}' + string: '{"key":{"kid":"https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"rGFUPuowwNIT7JkZXjBvo_Mdre1n2_wbfHqzgzdTpXNb3_jZNU_NpIRH1VVXbUkeybtcTnR0uxw0hffXkCNz4JIEEDoS8bQNmRAMMCxrDUohPe2v2M9vJsrKE8fGSThqGHvIBCCdz67a53AgU5bzzCh9AGfs3bFLP7c9ee_I7fUwwqz6LNe3C9BOe4SSc0K2IG6qhJf015n4KD2zsRLM2vrt4Co7JFiln1v9BpKRaiDpCIkQHDHszVg2Q1A4r_i_HdzuyxTc_Pv5QevjOVGybJuo27i-fXy32-_XWdPp_TZSepBNslsgsqhEWlGVwjcAxoiAkC8s1XFl_GmvA9d_0Q","e":"AQAB"},"attributes":{"enabled":true,"key_size":2048,"created":1789022787,"updated":1789022787,"recoveryLevel":"CustomizedRecoverable","recoverableDays":7,"exportable":false,"hsmPlatform":"0"}}' headers: cache-control: - no-cache @@ -362,7 +349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:29 GMT + - Thu, 10 Sep 2026 06:46:26 GMT expires: - '-1' pragma: @@ -372,13 +359,13 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=136.55.173.44;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.242.26;act_addr_fam=InterNetwork; x-ms-keyvault-rbac-assignment-id: - - 2557f626203e4d819afd9ca574f21632 + - 5f82f71451af4237b80d49e0ea54100a x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.3070.1 + - 1.9.3718.1 status: code: 200 message: OK @@ -396,12 +383,12 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_encryption_with_cmk","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_encryption_with_cmk","date":"2026-09-10T06:45:20Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -410,7 +397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:34 GMT + - Thu, 10 Sep 2026 06:46:27 GMT expires: - '-1' pragma: @@ -424,7 +411,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 46F8FE0BCA4642E3B2E15EC4420980F0 Ref B: BN1AA2051015009 Ref C: 2026-04-03T02:31:34Z' + - 'Ref A: 9EB55DFFA5744203A61409D94DECD70D Ref B: SYD281080712023 Ref C: 2026-09-10T06:46:27Z' status: code: 200 message: OK @@ -446,21 +433,21 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005?api-version=2025-05-31-preview response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005","name":"testidentity000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005","name":"testidentity000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","assignmentRestrictions":{"providers":[]},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}' headers: cache-control: - no-cache content-length: - - '478' + - '520' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:40 GMT + - Thu, 10 Sep 2026 06:46:31 GMT expires: - '-1' location: @@ -474,13 +461,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/7a5b56cd-8391-449c-8294-4bf985a91d0e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/15a2b334-0748-4870-ab45-1982147e8d1e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 488577A786234AD886041B251242E39C Ref B: BN1AA2051012027 Ref C: 2026-04-03T02:31:39Z' + - 'Ref A: 768893C8C34F42559557683E6B82A9D8 Ref B: SYD281080708060 Ref C: 2026-09-10T06:46:28Z' status: code: 201 message: Created @@ -498,9 +485,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27faf57c49-f552-41a3-b9f1-9317f5059fa1%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%278256dcbb-d068-4766-9458-87f37b5182d1%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' @@ -512,14 +499,13 @@ interactions: content-length: - '92' content-type: - - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; - charset=utf-8 + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:00 GMT + - Thu, 10 Sep 2026 06:46:47 GMT odata-version: - '4.0' request-id: - - 2f37eff8-f43f-441a-b218-b7d710f7f5d4 + - 38ec3a5e-0f58-4acb-a0fa-3dbab1575ad8 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -529,16 +515,14 @@ interactions: x-cache: - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"East US 2","Slice":"E","Ring":"5","ScaleUnit":"005","RoleInstance":"BN2PEPF000090B0"}}' - x-ms-gateway-esc: - - '200' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SY3PEPF0001CB59"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["faf57c49-f552-41a3-b9f1-9317f5059fa1"], "types": ["user", "group", + body: '{"ids": ["8256dcbb-d068-4766-9458-87f37b5182d1"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -556,12 +540,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"faf57c49-f552-41a3-b9f1-9317f5059fa1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005"],"appDisplayName":null,"appDescription":null,"appId":"52af17ae-88d0-4382-9c77-a3bd70957ee2","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-04-03T02:31:40Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"testidentity000005","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["52af17ae-88d0-4382-9c77-a3bd70957ee2","https://identity.azure.net/0MjMaxR49HhU5fGr0FLo3dhqczWbI+reLTPGBZU7Dl8="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"07775BE0F8B8C126734D86306CD90A842D627F47","displayName":"CN=52af17ae-88d0-4382-9c77-a3bd70957ee2","endDateTime":"2026-07-02T02:26:00Z","key":null,"keyId":"9e271f6b-b911-4088-bbf8-baf5a2fa6dec","startDateTime":"2026-04-03T02:26:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"8256dcbb-d068-4766-9458-87f37b5182d1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005"],"appDisplayName":null,"appDescription":null,"appId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-09-10T06:46:29Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"testidentity000005","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["a0645f53-e8f0-49bb-b2e2-5b3b93207b15","https://identity.azure.net/yssqc5uzP58n9rjL4YhYYBhFYGgwesI64W88Xx+oSOc="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"DC59EA3DE13292E435C841C48FCD7E4D3F9EE5CD","displayName":"CN=a0645f53-e8f0-49bb-b2e2-5b3b93207b15","endDateTime":"2026-12-09T06:41:00Z","key":null,"keyId":"78149004-b095-4060-b44c-c62852c5a660","startDateTime":"2026-09-10T06:41:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache @@ -570,16 +554,15 @@ interactions: content-length: - '1821' content-type: - - application/json; odata.metadata=minimal; odata.streaming=true; IEEE754Compatible=false; - charset=utf-8 + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:04 GMT + - Thu, 10 Sep 2026 06:46:48 GMT location: - - https://graph.microsoft.com/ + - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 31219edf-888b-4701-8553-e454ec32b127 + - ee4becae-a060-4ee9-8295-2519d2e1697e strict-transport-security: - max-age=31536000 transfer-encoding: @@ -589,9 +572,7 @@ interactions: x-cache: - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"East US 2","Slice":"E","Ring":"5","ScaleUnit":"007","RoleInstance":"BN1PEPF0000A157"}}' - x-ms-gateway-esc: - - '200' + - '{"ServerInfo":{"DataCenter":"Australia East","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"SY1PEPF00005C26"}}' x-ms-resource-unit: - '3' status: @@ -611,9 +592,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Key%20Vault%20Crypto%20Service%20Encryption%20User%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27Key%20Vault%20Crypto%20Service%20Encryption%20User%27 response: body: string: '{"value":[{"properties":{"roleName":"Key Vault Crypto Service Encryption @@ -628,7 +609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:06 GMT + - Thu, 10 Sep 2026 06:46:47 GMT expires: - '-1' pragma: @@ -640,17 +621,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ddb01fce-044e-4440-9a97-2616bb576412 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6eeccb65-4fc5-4b7f-a323-62653a467fc8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8579CD19915243F9A60B8A0718A57726 Ref B: BN1AA2051012027 Ref C: 2026-04-03T02:32:07Z' + - 'Ref A: CAFF1ECDF13A4386B805F815E98C6244 Ref B: SYD281080705052 Ref C: 2026-09-10T06:46:48Z' status: code: 200 message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6", - "principalId": "faf57c49-f552-41a3-b9f1-9317f5059fa1", "principalType": "ServicePrincipal"}}' + "principalId": "8256dcbb-d068-4766-9458-87f37b5182d1", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -667,12 +648,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002/providers/Microsoft.Authorization/roleAssignments/272e7a71-149f-40c2-9d8b-8d5ed71bef78?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002/providers/Microsoft.Authorization/roleAssignments/0dcaca57-0458-48a9-9884-e1cbff50e59e?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6","principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2026-04-03T02:32:10.9005773Z","updatedOn":"2026-04-03T02:32:11.0955798Z","createdBy":null,"updatedBy":"6be58acb-6e1e-4e5a-aa2b-6474dc5023eb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002/providers/Microsoft.Authorization/roleAssignments/272e7a71-149f-40c2-9d8b-8d5ed71bef78","type":"Microsoft.Authorization/roleAssignments","name":"272e7a71-149f-40c2-9d8b-8d5ed71bef78"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6","principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T06:46:49.5337235Z","updatedOn":"2026-09-10T06:46:49.7117277Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000002/providers/Microsoft.Authorization/roleAssignments/0dcaca57-0458-48a9-9884-e1cbff50e59e","type":"Microsoft.Authorization/roleAssignments","name":"0dcaca57-0458-48a9-9884-e1cbff50e59e"}' headers: cache-control: - no-cache @@ -681,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:12 GMT + - Thu, 10 Sep 2026 06:47:05 GMT expires: - '-1' pragma: @@ -693,13 +674,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/f9d1ef0c-6827-4f77-9ded-345555ecf621 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d4417fc4-a604-4046-96a9-40a7e41b0ff5 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: 8310ED29B76543A3A96DFFB18FE9DB7C Ref B: BN1AA2051015029 Ref C: 2026-04-03T02:32:10Z' + - 'Ref A: D33FAE0857B54E4BB7880AF5BCF9AEBC Ref B: SYD281080707042 Ref C: 2026-09-10T06:46:49Z' status: code: 201 message: Created @@ -717,12 +698,12 @@ interactions: ParameterSetName: - --name --resource-group --sku --identity --key-encryption-key User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_encryption_with_cmk","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_encryption_with_cmk","date":"2026-09-10T06:45:20Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -731,7 +712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:15 GMT + - Thu, 10 Sep 2026 06:47:05 GMT expires: - '-1' pragma: @@ -745,7 +726,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 99A62BC2AC394AE3B1B066A4B1DCA6EC Ref B: BN1AA2051013051 Ref C: 2026-04-03T02:32:15Z' + - 'Ref A: DE0381D93752431C8639DA3BB30063E5 Ref B: SYD281080711052 Ref C: 2026-09-10T06:47:06Z' status: code: 200 message: OK @@ -763,12 +744,12 @@ interactions: ParameterSetName: - --name --resource-group --sku --identity --key-encryption-key User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005?api-version=2025-05-31-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005","name":"testidentity000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005","name":"testidentity000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}' headers: cache-control: - no-cache @@ -777,7 +758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:18 GMT + - Thu, 10 Sep 2026 06:47:06 GMT expires: - '-1' pragma: @@ -791,15 +772,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CB7517B0260F43A8A5A3234DCF79D1DF Ref B: BN1AA2051014045 Ref C: 2026-04-03T02:32:18Z' + - 'Ref A: 37484E561B8246BA9DA6D1A5AAE191E2 Ref B: SYD281080707062 Ref C: 2026-09-10T06:47:07Z' status: code: 200 message: OK - request: body: '{"location": "westus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": false, "encryption": {"status": "enabled", "keyVaultProperties": {"keyIdentifier": - "https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c", - "identity": "52af17ae-88d0-4382-9c77-a3bd70957ee2"}}}, "identity": {"type": + "https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776", + "identity": "a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}}, "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005": {}}}}' headers: @@ -818,25 +799,25 @@ interactions: ParameterSetName: - --name --resource-group --sku --identity --key-encryption-key User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:22.6789286+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-04-03T02:32:22.6789286Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:51.2539726+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:51.254015+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c","identity":"52af17ae-88d0-4382-9c77-a3bd70957ee2","keyRotationEnabled":false}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:08.072564+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-09-10T06:47:08.072564Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:15.6433122+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:15.6433492+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776","identity":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15","keyRotationEnabled":false}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-51b39af4-2f05-11f1-8516-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803714314038&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Ytk3o9lSu9icFoyiy2aaFRQJf0IVSFL4d32xKxmAS5wdwpwHcDlmSSn9OOI1j4OTjkFG2D7ERjfHr3QNjyjD9sy6wMUGCCtngrpmq2SdBt-BDu8UIV3iOCIRx6ikguGGhsKiwHUbD2WBwyPWk_CLpnYiwjBHZuZZfG0VLFFy3zK6QKP71UFFGpeKih1Qefalejh5FPSaV6qULqJvPHkeRM3-oeaiSdffhylCsjcNa7MXqacNaWp0HGDHFpEoOLB8qRjtZA8kOPBeLueQntvX6Hed5bPnIl_Y98yBOmOEIZQFNhKtzS3cPUiQg4fsv_cFaWHekDFs1opqTBj0wKFz8w&h=sk4BjHEiEbfcJf0q-d7RXkR71_sBQyipOXKZFqvx33Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-709dda85-ace3-11f1-90ea-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196358065708&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Unfgwq7qZnK__FAdHkFyNVHfMvcldifo-wvpAgbxupj7XDxGZrP6qOfhhRJzYrKhxHCxC3MyBdTiwHlqYrI4cvZSiPM0AGJCbfOtChyzgk1XM_D88ZNVaR9vllq09U2wHzVBJ8n9Zj4jLemT-mxgmV2ODy3t2FMGmyLkY-8Q9cy1i1_RwHojhBVn2g1SXYUnwYILg1Ja1UPBIkOCXVmI4vO_JqmWrDnY5ZV-7USSOjF-IPIqYu1LM6fuuiWShEUNQNZpbX5LwWQ7qyNyUVSJsv2o-tCxPF3pdYMCbtoVSsv46MnjhePiK7S5jk9PC3THMXU8vqtSA-ze3ru7EPAskg&h=bsW4eOI-HeEqDAhUYiisyfK13Zf1ar-Jj0ad1Tb5jaU cache-control: - no-cache content-length: - - '2321' + - '2376' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:51 GMT + - Thu, 10 Sep 2026 06:47:15 GMT expires: - '-1' pragma: @@ -848,13 +829,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/332c0729-f226-4f98-999e-84fcd1391b56 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fc66736e-2d6d-4d64-8dbb-d372ddf8f7f9 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 6436E99D43DC4EA785EB2861A62E16C4 Ref B: BN1AA2051014039 Ref C: 2026-04-03T02:32:22Z' + - 'Ref A: D4FBB312C3B54D338954FEC91AF06CAB Ref B: SYD281080709025 Ref C: 2026-09-10T06:47:07Z' status: code: 201 message: Created @@ -872,17 +853,17 @@ interactions: ParameterSetName: - --name --resource-group --sku --identity --key-encryption-key User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-51b39af4-2f05-11f1-8516-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803714314038&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Ytk3o9lSu9icFoyiy2aaFRQJf0IVSFL4d32xKxmAS5wdwpwHcDlmSSn9OOI1j4OTjkFG2D7ERjfHr3QNjyjD9sy6wMUGCCtngrpmq2SdBt-BDu8UIV3iOCIRx6ikguGGhsKiwHUbD2WBwyPWk_CLpnYiwjBHZuZZfG0VLFFy3zK6QKP71UFFGpeKih1Qefalejh5FPSaV6qULqJvPHkeRM3-oeaiSdffhylCsjcNa7MXqacNaWp0HGDHFpEoOLB8qRjtZA8kOPBeLueQntvX6Hed5bPnIl_Y98yBOmOEIZQFNhKtzS3cPUiQg4fsv_cFaWHekDFs1opqTBj0wKFz8w&h=sk4BjHEiEbfcJf0q-d7RXkR71_sBQyipOXKZFqvx33Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-709dda85-ace3-11f1-90ea-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196358065708&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Unfgwq7qZnK__FAdHkFyNVHfMvcldifo-wvpAgbxupj7XDxGZrP6qOfhhRJzYrKhxHCxC3MyBdTiwHlqYrI4cvZSiPM0AGJCbfOtChyzgk1XM_D88ZNVaR9vllq09U2wHzVBJ8n9Zj4jLemT-mxgmV2ODy3t2FMGmyLkY-8Q9cy1i1_RwHojhBVn2g1SXYUnwYILg1Ja1UPBIkOCXVmI4vO_JqmWrDnY5ZV-7USSOjF-IPIqYu1LM6fuuiWShEUNQNZpbX5LwWQ7qyNyUVSJsv2o-tCxPF3pdYMCbtoVSsv46MnjhePiK7S5jk9PC3THMXU8vqtSA-ze3ru7EPAskg&h=bsW4eOI-HeEqDAhUYiisyfK13Zf1ar-Jj0ad1Tb5jaU response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-51b39af4-2f05-11f1-8516-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803739104773&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MtptP7R2KFNbztsffG1qgiY46_VI-K7OXoatMAhOwu2ao0ya8w64lIkiLbzB7TGVzIygUNq5XePDp9n1HiG4JNSLRM9i2b3BXs5rVNH8beCUojy2tre1O1ja07-drDsUjneFcpC_e7Rd7PoczuiaUVXL1EKIzNCGMxMeNKMxGSp-nwxeR-FwFpfH3UpB6udnqANa5bDznkJw-p0hJVnOsJ__hYgH6EVHw1uBYHTjCqtAYQbMk5vm1HMH1NWbS_i8JVRGwM_x2Lv1Z43LmSCe-Ay9TBmdxBYRgOenJ2oecZmRtXiqPmp2ei6Or7wSZrsm2PpVmKnB1TOJRNm-tlb-pQ&h=l6z2XnbvxcB0Exr7hfBVKjz4HDSS2apIdo6U9oqSKvg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-709dda85-ace3-11f1-90ea-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196365099793&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pDTXf4psdcEsVHKTlG5dOmZstib2PSTo_Jt571F6zvTtMcLIkAGdQ3MYqlYgPkVXq2ldVJbTkepyJiIbcybUvKt4eVBTFSgfpH8zqUMi3s3HuYdAeHfaEMXaB6Qo14fUYYJDsLVQQqcs3M4JVW8ErozaWSdNmiVSJvu8H3wd621MeuQ7P_E9DDHG9ZymhrKmXJGDnhjFo_g9X9nEvrCPcSp1yxNfvaFHSexp8b9hNXtlt_xwPlpKLV8bobVIx14YLk1mNY3mRi59gcOUd7iWxWYx4s6UhwUsni75XBvt7jud28YUJeDrqVG49SXzoOctgBJ46y4X0RKfwP4-mKNxxw&h=xHOtQspPl-mbuQC3g1XJgahZI4by9-yMaQn3EGkxmno cache-control: - no-cache content-length: @@ -890,7 +871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:53 GMT + - Thu, 10 Sep 2026 06:47:16 GMT expires: - '-1' pragma: @@ -902,11 +883,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/362b7273-d0ad-4c2d-be2e-5eba157a686a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1ea9521c-d3ef-4af6-a056-88e004324569 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44CADF4B56C949749ACC5911E0EB285E Ref B: BN1AA2051015053 Ref C: 2026-04-03T02:32:53Z' + - 'Ref A: 2CBE8B462C4C474AA01F067C592A2D73 Ref B: SYD281080710036 Ref C: 2026-09-10T06:47:16Z' status: code: 200 message: OK @@ -924,23 +905,23 @@ interactions: ParameterSetName: - --name --resource-group --sku --identity --key-encryption-key User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:22.6789286+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-04-03T02:32:22.6789286Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:51.2539726+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:51.254015+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c","identity":"52af17ae-88d0-4382-9c77-a3bd70957ee2","keyRotationEnabled":false}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:08.072564+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-09-10T06:47:08.072564Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:15.6433122+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:15.6433492+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776","identity":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15","keyRotationEnabled":false}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2322' + - '2377' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:55 GMT + - Thu, 10 Sep 2026 06:47:16 GMT expires: - '-1' pragma: @@ -954,7 +935,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 420B31564C25430CA73A93715D5CFF26 Ref B: BN1AA2051013023 Ref C: 2026-04-03T02:32:56Z' + - 'Ref A: A87E72F79CCC474E876E5776AAE8D651 Ref B: SYD281080709031 Ref C: 2026-09-10T06:47:16Z' status: code: 200 message: OK @@ -976,12 +957,12 @@ interactions: ParameterSetName: - --name --vault-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://clitest000002.vault.azure.net/keys/rotatekey000004/create?api-version=7.6-preview.2 response: body: - string: '{"key":{"kid":"https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vZmswm24mP9tosi7UkIMBi3CPRBRlgNYtdGQazMHjvACMU5OB8m2ypeO3joNmczTyAAucPwmOCxOS1PkYrYzPhcc5meRfI_OTb9cWUPigbImUuvB4DAXZgN50MKUI0wRCU9Atsg5SSWFX6ts4b5tqTgKnEDvAQMULDITXpDmTRFiJu8bJpvxysBFislHZibo9GbwoOdWR-9InyTDKpRqwX8wrvneZjD_7zfCaOzWWvJujMpQIiOKWIJB_fAoXT7g4RjmfZlgpHm8U_RRINYarIYoPi6O1LDIKj_f-hESSv3xl18hDQFyapa1zQgqt5XecUwSTJ1GtnUc6HbFuKY0CQ","e":"AQAB"},"attributes":{"enabled":true,"key_size":2048,"created":1775183579,"updated":1775183579,"recoveryLevel":"CustomizedRecoverable","recoverableDays":7,"exportable":false,"hsmPlatform":"0"}}' + string: '{"key":{"kid":"https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"tvdUS635HlFuhJjYme4TS4FnR7M5mCsoEweN2Rybtb0vNwb1EMuARvIg1Q00UN7AlCZnmihsrnLHgSSk8dBvXoVw9wZb-hCjQa9LTQ5kQM2NRCQGkVVRczi1_AdpRugquoD1jFN2nlUPT20gTNRSBNSPSmRM7VX8fULw7K9P-yNrIZ2-cdZ57ij6brELVng-CgttKSwOuYdqBlJVL7rQUhxURUGvM0QbYTx-h_QjQVNUcoTMYDC7CF0VQ8npwQWPnnCD-z0VaP6Bd6Z99Xzdj1gSl-5rMFh06NFJEI688dyOCx3-uQq59bb9fTfzoM4o_8HWK02j2YgVgc_D4i6TyQ","e":"AQAB"},"attributes":{"enabled":true,"key_size":2048,"created":1789022838,"updated":1789022838,"recoveryLevel":"CustomizedRecoverable","recoverableDays":7,"exportable":false,"hsmPlatform":"0"}}' headers: cache-control: - no-cache @@ -990,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:59 GMT + - Thu, 10 Sep 2026 06:47:17 GMT expires: - '-1' pragma: @@ -1000,13 +981,13 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=136.55.173.44;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.242.154;act_addr_fam=InterNetwork; x-ms-keyvault-rbac-assignment-id: - - 2557f626203e4d819afd9ca574f21632 + - 5f82f71451af4237b80d49e0ea54100a x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.3070.1 + - 1.9.3718.1 status: code: 200 message: OK @@ -1024,23 +1005,23 @@ interactions: ParameterSetName: - --name --identity --key-encryption-key -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:22.6789286+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-04-03T02:32:22.6789286Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:51.2539726+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:51.254015+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/a331f21ed39248b3b0e3318421412f9c","identity":"52af17ae-88d0-4382-9c77-a3bd70957ee2","keyRotationEnabled":false}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:08.072564+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-09-10T06:47:08.072564Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:15.6433122+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:15.6433492+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/testkey000003/3f3ddaa9580544b0af62a75be1a01776","identity":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15","keyRotationEnabled":false}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2322' + - '2377' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:02 GMT + - Thu, 10 Sep 2026 06:47:18 GMT expires: - '-1' pragma: @@ -1054,7 +1035,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 93B5D6BAC65E4F82BC84537ECFFC1563 Ref B: BN1AA2051014033 Ref C: 2026-04-03T02:33:02Z' + - 'Ref A: 7461867DBAF14D08B6D76D90B1D64B9F Ref B: SYD281080705060 Ref C: 2026-09-10T06:47:18Z' status: code: 200 message: OK @@ -1072,12 +1053,12 @@ interactions: ParameterSetName: - --name --identity --key-encryption-key -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005?api-version=2025-05-31-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005?api-version=2024-11-30 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005","name":"testidentity000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005","name":"testidentity000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}' headers: cache-control: - no-cache @@ -1086,7 +1067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:04 GMT + - Thu, 10 Sep 2026 06:47:19 GMT expires: - '-1' pragma: @@ -1100,7 +1081,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0FDA217BFCCA42FBB2175CEA6643171D Ref B: BN1AA2051013039 Ref C: 2026-04-03T02:33:04Z' + - 'Ref A: 964875B65865451B93196D1CA8107AD8 Ref B: SYD281080711040 Ref C: 2026-09-10T06:47:19Z' status: code: 200 message: OK @@ -1108,18 +1089,19 @@ interactions: body: '{"sku": {"name": "Premium"}, "identity": {"type": "userAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005": {}}}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, - "networkRuleSet": {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "enabled", - "keyVaultProperties": {"keyIdentifier": "https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e", - "identity": "52af17ae-88d0-4382-9c77-a3bd70957ee2"}}, "dataEndpointEnabled": + "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": + []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": + {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": + "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "enabled", "keyVaultProperties": {"keyIdentifier": + "https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce", + "identity": "a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}, "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": - "Unsecure"}}' + "Unsecure", "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -1130,31 +1112,31 @@ interactions: Connection: - keep-alive Content-Length: - - '1361' + - '1422' Content-Type: - application/json ParameterSetName: - --name --identity --key-encryption-key -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:07.9217333+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-04-03T02:32:22.6789286Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:09.2005778+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:09.2006919+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e","identity":"52af17ae-88d0-4382-9c77-a3bd70957ee2","keyRotationEnabled":false,"lastKeyRotationTimestamp":"2026-04-03T02:33:09.1683098+00:00"}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-09-10T06:47:08.072564Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:21.3496371+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:21.3497039+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce","identity":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15","keyRotationEnabled":false,"lastKeyRotationTimestamp":"2026-09-10T06:47:21.3143982+00:00"}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-6e043e67-2f05-11f1-9569-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803894217305&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=D1X2LXKlk9WwpmQ-SzdvPpx9MBa4_C52CZ-ggPdw2dhdSl7BOIf_oVvRBOZXMPWvbWSxVbEfZfs-93Hs-Ws0SytV51BYVyOyCFOmsDySSFHnjrPPV7-ih1kN43-3VFA4JvS6jYS0CWKSD2zlsQ6ZMIuhEukc-1GNtcZLT9m6ynnlAo8wDdbqMJHgFzfCtNbdtFzT-PP-K3Y61n-SenVNxddVNkEL6t9VgACXk74R-293IcqD2jA783PTCFFIVFgXUj8xPx3-rCbTI24ftM5aOpOESbTbSdd7Zka311Z4bcpFUeDR7QcSq6dY4sO5HIQei3o7gjx4On3m6412F7Df-w&h=phhxsogi9rJ45YFhOhO9o7UxB7AYpgwDo0lRfG-q7_g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-783c7abf-ace3-11f1-8908-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196416945655&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pu0nXtNQ0OGSWQcuvolTG3KPl5IkKkIK8TOCRLtmRx9s8podiRCGMEIMbAF3_JBnU4MyIU8haJBAiftgFaH--ReGjMb08fNguOUBbZfrtlgJjAcUKn0AsAy4KQgU9MEK8sJtyLIGnQCgXxv11Hn0K6dJCa_Kp3-crcqIMG2dLAioZxJfK6pPEmbfkPQxjeNXPNd5qSHSjR_l2vcL4tdOWG1bWYeLMyb6XNV_d6ZHMnX0YhMBdy275wjLGGkcCd-ge8VqaCE1j5ZFGG1JzkdkJ3_P7C9OephllrAar4SoRs4rlrUdiawq3BBKQmz3AMAp-DGQ5T2rbBftJ0_DbvWvwg&h=d5YT7O_WROkp0kLOjHxhKTW6FFrjO8_j1BMx32iSBVU cache-control: - no-cache content-length: - - '2389' + - '2444' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:09 GMT + - Thu, 10 Sep 2026 06:47:21 GMT expires: - '-1' pragma: @@ -1166,13 +1148,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ed56c5f3-7b5e-48fd-abc2-f25d393ef5c1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ca5cf816-23d3-4dd8-8524-80395d483561 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 14C0CB17255447FA9E64E424FE6220F9 Ref B: BN1AA2051012033 Ref C: 2026-04-03T02:33:07Z' + - 'Ref A: 140BA8EAF0584E2C845E7AB813754615 Ref B: SYD281080710060 Ref C: 2026-09-10T06:47:19Z' status: code: 201 message: Created @@ -1190,17 +1172,17 @@ interactions: ParameterSetName: - --name --identity --key-encryption-key -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-6e043e67-2f05-11f1-9569-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803894217305&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=D1X2LXKlk9WwpmQ-SzdvPpx9MBa4_C52CZ-ggPdw2dhdSl7BOIf_oVvRBOZXMPWvbWSxVbEfZfs-93Hs-Ws0SytV51BYVyOyCFOmsDySSFHnjrPPV7-ih1kN43-3VFA4JvS6jYS0CWKSD2zlsQ6ZMIuhEukc-1GNtcZLT9m6ynnlAo8wDdbqMJHgFzfCtNbdtFzT-PP-K3Y61n-SenVNxddVNkEL6t9VgACXk74R-293IcqD2jA783PTCFFIVFgXUj8xPx3-rCbTI24ftM5aOpOESbTbSdd7Zka311Z4bcpFUeDR7QcSq6dY4sO5HIQei3o7gjx4On3m6412F7Df-w&h=phhxsogi9rJ45YFhOhO9o7UxB7AYpgwDo0lRfG-q7_g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-783c7abf-ace3-11f1-8908-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196416945655&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pu0nXtNQ0OGSWQcuvolTG3KPl5IkKkIK8TOCRLtmRx9s8podiRCGMEIMbAF3_JBnU4MyIU8haJBAiftgFaH--ReGjMb08fNguOUBbZfrtlgJjAcUKn0AsAy4KQgU9MEK8sJtyLIGnQCgXxv11Hn0K6dJCa_Kp3-crcqIMG2dLAioZxJfK6pPEmbfkPQxjeNXPNd5qSHSjR_l2vcL4tdOWG1bWYeLMyb6XNV_d6ZHMnX0YhMBdy275wjLGGkcCd-ge8VqaCE1j5ZFGG1JzkdkJ3_P7C9OephllrAar4SoRs4rlrUdiawq3BBKQmz3AMAp-DGQ5T2rbBftJ0_DbvWvwg&h=d5YT7O_WROkp0kLOjHxhKTW6FFrjO8_j1BMx32iSBVU response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-6e043e67-2f05-11f1-9569-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803913259620&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ZUwlUragpkfYe-w9ny7e7DmYpPSc-eH9xkiCQ7Zlj3E3qatt6WjbWJihJhJsWBBD2aN6dP9wEFguOHmfcDp4sqWO2P5dK4jsrzYYAVB4AWPj_crEMisRs0sMwW5ac9oPYwpX-RrNHAwG5pyxklr1CCUKNJRugXgrwvkgid-q9Bx-MKL34vNw7Ui90uHorfio30f73CTrO9mlNmYn1yoUQPepOo1jj98mjtRzzOQiXDRNq1oL8oMIJOnZoxK5Wo1aadT3mMRPlQVeicKTlUNwDNac-jhHLQXANiUqSOo3_WpB9KTeoZXSFnMOIIzN-AoglvAZatcCowmYhnYoElUIuw&h=-VkTEMWOnld_g49bJTimVL513XXJ1FNzkPHKJQ_r4BA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006/operationStatuses/registries-783c7abf-ace3-11f1-8908-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196423794216&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=lHwxLle4GzQpkw8rZ01udyWIkvrDV1BSFPXRp2OL6VB6w5Nzzr94vOXTrQCXFLq0EZLi9ZsEPAm3CaNPSVtFO6wTrriXDFSL8TqNXOXaDgcnf62it5mitDVwez-MmOxDLEdPzk69-SJedYKdSnN0smnIyWDiF9SS4fvK5uHBKmQ-TjuDnPLkLtETD42DKd_vlhpLzFT3mgZCQ0PzWxh1q1uzHtOq88nfvD0pKI7ranG0ZgotvJQMKJZJNuEBwcTqgsFz_D-IBHVJF80S232oura_8G5Bs-u0VC1qMat9qnF5CWcB3NeXyU1jcD2wKWdEctdFP_5ddwbr7_z4dlydHg&h=rEXrDrntSknNA_mo8C_bEYL0ibQGhVjDOEYV9k5nNWA cache-control: - no-cache content-length: @@ -1208,7 +1190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:10 GMT + - Thu, 10 Sep 2026 06:47:21 GMT expires: - '-1' pragma: @@ -1220,11 +1202,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a16ff2d2-84c8-4b4c-9d16-3202f94cf99a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c74a38ba-9e55-4a89-b5e0-70ea10958b49 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FE2A5CB98A9947C1A9DEA7451A4E1451 Ref B: BN1AA2051012009 Ref C: 2026-04-03T02:33:11Z' + - 'Ref A: 4794783A177342BD8E7E76EE1E21D54F Ref B: SYD281080705060 Ref C: 2026-09-10T06:47:22Z' status: code: 200 message: OK @@ -1242,23 +1224,23 @@ interactions: ParameterSetName: - --name --identity --key-encryption-key -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:07.9217333+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-04-03T02:32:22.6789286Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:09.2005778+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:09.2006919+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e","identity":"52af17ae-88d0-4382-9c77-a3bd70957ee2","keyRotationEnabled":false,"lastKeyRotationTimestamp":"2026-04-03T02:33:09.1683098+00:00"}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-09-10T06:47:08.072564Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:21.3496371+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:21.3497039+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce","identity":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15","keyRotationEnabled":false,"lastKeyRotationTimestamp":"2026-09-10T06:47:21.3143982+00:00"}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2390' + - '2445' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:13 GMT + - Thu, 10 Sep 2026 06:47:22 GMT expires: - '-1' pragma: @@ -1272,7 +1254,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 53A7C43E57284DF498441CE016C0499B Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:33:13Z' + - 'Ref A: 8A92B854F0D24BBDB1682D9E3A71D5E4 Ref B: SYD281080712052 Ref C: 2026-09-10T06:47:22Z' status: code: 200 message: OK @@ -1290,23 +1272,23 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:07.9217333+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-04-03T02:32:22.6789286Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:09.2005778+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:09.2006919+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/294c06925e354afda14b137f1d11272e","identity":"52af17ae-88d0-4382-9c77-a3bd70957ee2","keyRotationEnabled":false,"lastKeyRotationTimestamp":"2026-04-03T02:33:09.1683098+00:00"}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000005":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000006","name":"testreg000006","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456+00:00"},"properties":{"loginServer":"testreg000006.azurecr.io","creationDate":"2026-09-10T06:47:08.072564Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:21.3496371+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:21.3497039+00:00","status":"disabled"}},"encryption":{"status":"enabled","keyVaultProperties":{"keyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce","versionedKeyIdentifier":"https://clitest000002.vault.azure.net/keys/rotatekey000004/8a0d23fc8617407d9df2b80d2a38c1ce","identity":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15","keyRotationEnabled":false,"lastKeyRotationTimestamp":"2026-09-10T06:47:21.3143982+00:00"}},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2390' + - '2445' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:15 GMT + - Thu, 10 Sep 2026 06:47:22 GMT expires: - '-1' pragma: @@ -1320,7 +1302,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E49E571B74BF4E189778BB4C2AF1A770 Ref B: BN1AA2051015023 Ref C: 2026-04-03T02:33:15Z' + - 'Ref A: 1AEA0A4227574B96A61F2EC5DAED32EA Ref B: SYD281080710029 Ref C: 2026-09-10T06:47:23Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_export_policy.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_export_policy.yaml index aeb9a25d2e4..d3ed05f4e03 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_export_policy.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-09-10T06:47:31Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:38 GMT + - Thu, 10 Sep 2026 06:47:34 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9953F6E1E2F24C628E6F451738760B52 Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:29:39Z' + - 'Ref A: 298D52B56B3D43768C46421211E956E2 Ref B: SYD281080712052 Ref C: 2026-09-10T06:47:34Z' status: code: 200 message: OK @@ -65,23 +65,23 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.5401873+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:51.2271482+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:51.2271962+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:35.408725+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:42.0367595+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:42.0367977+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1719' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:51 GMT + - Thu, 10 Sep 2026 06:47:41 GMT expires: - '-1' pragma: @@ -93,13 +93,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e07980a1-e140-4358-876e-19dd275ac2e8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fd5d7169-908d-4e53-b17d-852659b696c3 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: 04F9D5CE470249BABEAF0927294BF1C4 Ref B: BN1AA2051013033 Ref C: 2026-04-03T02:29:43Z' + - 'Ref A: ECE99EA693BC459B9E785F5F81805F60 Ref B: SYD281080707062 Ref C: 2026-09-10T06:47:35Z' status: code: 200 message: OK @@ -117,12 +117,12 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-09-10T06:47:31Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:56 GMT + - Thu, 10 Sep 2026 06:47:42 GMT expires: - '-1' pragma: @@ -143,9 +143,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 924F74B3127A4F39BAEFC478A9E952ED Ref B: BN1AA2051013045 Ref C: 2026-04-03T02:29:56Z' + - 'Ref A: 8BD4D417053E429792B010A8DF479C6C Ref B: SYD281080712054 Ref C: 2026-09-10T06:47:42Z' status: code: 200 message: OK @@ -169,23 +169,23 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:00.7226231+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:00.7789738+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:00.7790486+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:43.8279666+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:43.8920862+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:43.8921434+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1720' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:00 GMT + - Thu, 10 Sep 2026 06:47:43 GMT expires: - '-1' pragma: @@ -197,13 +197,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/e879ab07-7d22-4a6c-9162-7bd0e0801a1f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b46b322e-c729-438d-8a54-7c20f17572d5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FA13E03163EA4FCA9F04E50C38CCC326 Ref B: BN1AA2051014039 Ref C: 2026-04-03T02:30:00Z' + - 'Ref A: 13E4057C9B83491B9726A67A54083E0A Ref B: SYD281080712052 Ref C: 2026-09-10T06:47:43Z' status: code: 200 message: OK @@ -221,12 +221,12 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-09-10T06:47:31Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -235,7 +235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:04 GMT + - Thu, 10 Sep 2026 06:47:44 GMT expires: - '-1' pragma: @@ -249,7 +249,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8EDF24449E9B493EB8B5DE9712A78848 Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:30:05Z' + - 'Ref A: E030A011DA404DF78C7A095F3F7E6621 Ref B: SYD281080707025 Ref C: 2026-09-10T06:47:44Z' status: code: 200 message: OK @@ -273,23 +273,23 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:10.7048569+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:10.7408398+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:10.7409059+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:46.6843982+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:47.0914703+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:47.0915261+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1666' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:10 GMT + - Thu, 10 Sep 2026 06:47:46 GMT expires: - '-1' pragma: @@ -301,13 +301,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/d1c84e40-8057-48c3-b444-d93e45b75046 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/cb23572d-60f1-4747-9b5a-72c803a8c4b6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4BA7AE6416564F7DB0EC090806D4F68E Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:30:10Z' + - 'Ref A: 1D41A7D8F95044C98A374D34FB840A35 Ref B: SYD281080709029 Ref C: 2026-09-10T06:47:45Z' status: code: 200 message: OK @@ -325,12 +325,12 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_export_policy","date":"2026-09-10T06:47:31Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -339,7 +339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:15 GMT + - Thu, 10 Sep 2026 06:47:47 GMT expires: - '-1' pragma: @@ -353,7 +353,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B6D6B7D83B81462CB6578047691836AA Ref B: BN1AA2051013031 Ref C: 2026-04-03T02:30:15Z' + - 'Ref A: D5A6C9C83FAB4ACA8BC1C851750A0C30 Ref B: SYD281080707031 Ref C: 2026-09-10T06:47:47Z' status: code: 200 message: OK @@ -377,23 +377,23 @@ interactions: ParameterSetName: - -n -g --sku --public-network-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:22.4976462+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:22.5676659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:22.5677693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:48.6384655+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:48.7414923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:48.7415504+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1720' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:21 GMT + - Thu, 10 Sep 2026 06:47:48 GMT expires: - '-1' pragma: @@ -405,13 +405,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9eb4aefc-dc9d-4f28-86df-ce3c18690d3d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/14b4bf8c-d4bc-419a-aa8f-53b9915ba522 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 49212B041E27468DB488E735BDE45061 Ref B: BN1AA2051013025 Ref C: 2026-04-03T02:30:21Z' + - 'Ref A: 34736B1C98C04C0EB211E27C5C676C6F Ref B: SYD281080710054 Ref C: 2026-09-10T06:47:48Z' status: code: 200 message: OK @@ -429,23 +429,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:22.4976462+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:22.5676659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:22.5677693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:48.6384655+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:48.7414923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:48.7415504+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1720' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:26 GMT + - Thu, 10 Sep 2026 06:47:49 GMT expires: - '-1' pragma: @@ -459,7 +459,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3ED6A0FF712941668BDFADC9ADBB0031 Ref B: BN1AA2051014037 Ref C: 2026-04-03T02:30:27Z' + - 'Ref A: B7572589967F435F998BFBEB66D59E21 Ref B: SYD281080708029 Ref C: 2026-09-10T06:47:49Z' status: code: 200 message: OK @@ -482,23 +482,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.0893447+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:22.5676659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:22.5677693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:52.0304476+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:48.7414923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:48.7415504+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1720' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:35 GMT + - Thu, 10 Sep 2026 06:47:51 GMT expires: - '-1' pragma: @@ -510,13 +510,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/220e6ca7-e015-45d8-9f5a-cd61b0941548 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/f227a250-f370-4cf6-b8d6-e62927fed7cb x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 783860C94D5E42678F73B04DDB19D197 Ref B: BN1AA2051015053 Ref C: 2026-04-03T02:30:34Z' + - 'Ref A: 210F6B7989714AAD8A598F6A5ADEFF2C Ref B: SYD281080707023 Ref C: 2026-09-10T06:47:50Z' status: code: 200 message: OK @@ -534,23 +534,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.0893447+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:22.5676659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:22.5677693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:52.0304476+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:48.7414923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:48.7415504+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1720' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:39 GMT + - Thu, 10 Sep 2026 06:47:53 GMT expires: - '-1' pragma: @@ -564,7 +564,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 99FE15F05A7449A192EBD6EACFA23692 Ref B: BN1AA2051013039 Ref C: 2026-04-03T02:30:40Z' + - 'Ref A: D3721D5A0832484BBC40E2B64EA0AF4C Ref B: SYD281080709042 Ref C: 2026-09-10T06:47:52Z' status: code: 200 message: OK @@ -587,23 +587,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-exports User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.2435103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:22.5676659+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:22.5677693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:54.0435391+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:48.7414923+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:48.7415504+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1666' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:46 GMT + - Thu, 10 Sep 2026 06:47:53 GMT expires: - '-1' pragma: @@ -615,13 +615,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/09badde4-38d7-4a3c-84e9-4526e0982a75 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4834037b-7a4f-45ca-8eff-dca285e7c37a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 768DD5684ECE48E7BA8A26D5A0FFE5E8 Ref B: BN1AA2051014051 Ref C: 2026-04-03T02:30:45Z' + - 'Ref A: B4654C02C5404F88B15DD8768E3B0282 Ref B: SYD281080709031 Ref C: 2026-09-10T06:47:53Z' status: code: 200 message: OK @@ -639,23 +639,23 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.2435103+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:22.5676659+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:22.5677693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:54.0435391+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:48.7414923+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:48.7415504+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1666' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:51 GMT + - Thu, 10 Sep 2026 06:47:55 GMT expires: - '-1' pragma: @@ -669,7 +669,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B70BA197BD7349248C5625DFBA677EA1 Ref B: BN1AA2051012031 Ref C: 2026-04-03T02:30:51Z' + - 'Ref A: 548B70C9A1F7454B958C9047CE76BF5C Ref B: SYD281080706062 Ref C: 2026-09-10T06:47:54Z' status: code: 200 message: OK @@ -691,23 +691,23 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:56.3286837+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:29:44.5401873Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:22.5676659+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:22.5677693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:56.5141236+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:47:35.408725Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:48.7414923+00:00","status":"disabled"},"exportPolicy":{"status":"disabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:48.7415504+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1666' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:56 GMT + - Thu, 10 Sep 2026 06:47:56 GMT expires: - '-1' pragma: @@ -719,13 +719,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/4b1c9246-4924-47c6-b450-32de773a48c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/97d60b4d-3fdb-446d-8eba-2563caa998a1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 805040B4815D4A218674B21D92A3245B Ref B: BN1AA2051015009 Ref C: 2026-04-03T02:30:56Z' + - 'Ref A: 7158A3BD224341E69D73429CB2E110CF Ref B: SYD281080709023 Ref C: 2026-09-10T06:47:56Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_identity.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_identity.yaml index db6ab14ee77..0a7ffc8bd3e 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_identity.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_identity","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_identity","date":"2026-09-10T06:47:59Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:39 GMT + - Thu, 10 Sep 2026 06:48:01 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5D489F9A934449E39CF78FDC4D3C7118 Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:29:39Z' + - 'Ref A: 042AC946488A45DEBA15D9D38F243170 Ref B: SYD281080710036 Ref C: 2026-09-10T06:48:01Z' status: code: 200 message: OK @@ -64,23 +64,23 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:51.5201613+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:51.520213+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:03.0282382+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:09.7768977+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:09.7769455+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1667' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:51 GMT + - Thu, 10 Sep 2026 06:48:09 GMT expires: - '-1' pragma: @@ -92,13 +92,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/cd089378-07fb-4dcc-af6d-7bfe992d5365 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b868dbb0-022b-4237-b45e-6882630331e3 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: B4663EA3E4FE47B99D03A900D49EC73B Ref B: BN1AA2051014049 Ref C: 2026-04-03T02:29:43Z' + - 'Ref A: A7E679393F804F15A7C710205D835CAD Ref B: SYD281080706031 Ref C: 2026-09-10T06:48:02Z' status: code: 200 message: OK @@ -116,12 +116,12 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_identity","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_identity","date":"2026-09-10T06:47:59Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -130,7 +130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:56 GMT + - Thu, 10 Sep 2026 06:48:10 GMT expires: - '-1' pragma: @@ -144,7 +144,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EC61440FC0D84CFAAB4A0A2DB1A1B9B0 Ref B: BN1AA2051015031 Ref C: 2026-04-03T02:29:56Z' + - 'Ref A: 445F6AF8E12F4395A322EBEEB99BBD66 Ref B: SYD281080709034 Ref C: 2026-09-10T06:48:10Z' status: code: 200 message: OK @@ -166,79 +166,21 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002?api-version=2025-05-31-preview response: body: - string: '{"error":{"code":"429","message":"Request is temporarily throttled - because tenant 72f988bf-86f1-41af-91ab-2d7cd011db47 has issued too many requests. - Retry after 5 seconds."}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002","name":"testidentity000002","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","assignmentRestrictions":{"providers":[]},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}' headers: cache-control: - no-cache content-length: - - '174' + - '520' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - service - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/015073a2-7bf4-4e21-8287-b0e07cc5582d - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 3BF94A6291CD43A186A455846863CC18 Ref B: BN1AA2051015019 Ref C: 2026-04-03T02:30:01Z' - status: - code: 429 - message: '' -- request: - body: '{"location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - --name -g - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002?api-version=2025-05-31-preview - response: - body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002","name":"testidentity000002","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}' - headers: - cache-control: - - no-cache - content-length: - - '478' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 Apr 2026 02:30:13 GMT + - Thu, 10 Sep 2026 06:48:15 GMT expires: - '-1' location: @@ -252,13 +194,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5bc4f4ff-f8cb-461a-b946-d15ff9c3d4a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/190260e8-2dab-46cf-be4e-1576c274fb08 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '11998' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '798' x-msedge-ref: - - 'Ref A: 564E34B2608C461D954E2433B045395A Ref B: BN1AA2051013033 Ref C: 2026-04-03T02:30:12Z' + - 'Ref A: 2CD06BD7E46D431186B0A90A2646D1CD Ref B: SYD281080712034 Ref C: 2026-09-10T06:48:10Z' status: code: 201 message: Created @@ -276,12 +218,12 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_identity","date":"2026-04-03T02:29:19Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_identity","date":"2026-09-10T06:47:59Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -290,7 +232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:18 GMT + - Thu, 10 Sep 2026 06:48:16 GMT expires: - '-1' pragma: @@ -304,7 +246,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9A1497E6BA3A4C9192B6268DD7D9C981 Ref B: BN1AA2051012049 Ref C: 2026-04-03T02:30:18Z' + - 'Ref A: 27049F951737419E86F2D6842F894451 Ref B: SYD281080706036 Ref C: 2026-09-10T06:48:16Z' status: code: 200 message: OK @@ -326,21 +268,21 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003?api-version=2025-05-31-preview response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003","name":"testidentity2000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"150bfd01-9b2b-4db4-afd6-98ed118e011a","clientId":"a65cf8c2-6c59-4778-97b3-2769874a90ca"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003","name":"testidentity2000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"isolationScope":"None","assignmentRestrictions":{"providers":[]},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d0f4e109-e9ef-420d-9cfb-4dd6b6e6f475","clientId":"1c949b73-0243-490c-980f-a6b2b1a4b690"}}' headers: cache-control: - no-cache content-length: - - '480' + - '522' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:25 GMT + - Thu, 10 Sep 2026 06:48:19 GMT expires: - '-1' location: @@ -354,13 +296,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/2f00e849-aa34-4475-b28a-abd2def3213f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/764262b5-febc-49b4-8b54-e9def37ecc81 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BD0B771A645D4A5399684184BD603B1A Ref B: BN1AA2051013035 Ref C: 2026-04-03T02:30:24Z' + - 'Ref A: E6ED375465934B63AB22E8663D2A2C5F Ref B: SYD281080712029 Ref C: 2026-09-10T06:48:16Z' status: code: 201 message: Created @@ -378,22 +320,21 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:57.9619491Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:01.7335514Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:22.4976462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.829285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpu3iusdcke4sup5s4ij3h3iinzfa57ymb3x2vmtopjjhiisxrqe4rbmvxv5qui3/providers/Microsoft.ContainerRegistry/registries/clireggo2zf42uu7t7up","name":"clireggo2zf42uu7t7up","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:56.5141236Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:03.0282382Z"}}]}' headers: cache-control: - no-cache content-length: - - '11195' + - '3989' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:31 GMT + - Thu, 10 Sep 2026 06:48:20 GMT expires: - '-1' pragma: @@ -407,7 +348,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5A1366BF9EB4477CB5A2D0F40398A950 Ref B: BN1AA2051012019 Ref C: 2026-04-03T02:30:31Z' + - 'Ref A: 25F783354AE9481FA4401805EB0756B3 Ref B: SYD281080706054 Ref C: 2026-09-10T06:48:20Z' status: code: 200 message: OK @@ -425,23 +366,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:51.5201613+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:51.520213+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:03.0282382+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:09.7768977+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:09.7769455+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1667' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:36 GMT + - Thu, 10 Sep 2026 06:48:20 GMT expires: - '-1' pragma: @@ -455,24 +396,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 02B9411191C548D1985D6718B15160D6 Ref B: BN1AA2051015031 Ref C: 2026-04-03T02:30:36Z' + - 'Ref A: 33D55B74669148FD8DBB5AC549A8269F Ref B: SYD281080710029 Ref C: 2026-09-10T06:48:21Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "location": "westus", "tags": {}, "properties": - {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "ipRules": - []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": - {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": - "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": + [], "ipRules": []}, "policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 7, "status": "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": - "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure"}, - "identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}, "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": {}}}}' headers: Accept: @@ -484,32 +425,32 @@ interactions: Connection: - keep-alive Content-Length: - - '1190' + - '1251' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:43.5577772+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:43.5578487+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"91febc7b-148c-489f-bfe3-c9b83d447ac2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:23.0579083+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780147+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-12b10750-2f05-11f1-81a6-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802437480760&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=aanx9pcWgbh_zQsLfO4xsjjo59ZGpNNFTL0PCzZ9FnP_p66r-rZ9XduZCsF5fnmyDE0Qvcvz53zuBwgeSxxHFt8wCdXtVL89FbbxYpgy2UfaGHaqgQ9TWVWn4RpJ5oxQ1s5Q5vtCSzKTiWrv2YwjZI4FXOdaM-mCPdrGRdVYdCW25D9r1C6gR6s60ehHo9kqKWSHUDdwQKkxzKiPzeT7JxHyOob037NtzuwCYUBx_KGJEV5cAIafORId5QV4DLoYv5Z4h7cxGq9HgMAEPc76F11qhhgMrVVWf-KvjOpDkw9wL5h4wpjQ5XYOaD_wnNfVQHCcKxGDiWiX8iuhqMbTVg&h=7Cn99iKxX6OrX25SI_Jg_mr3r3OZHdk9eneY68Mf0Gs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-9caa553a-ace3-11f1-b68d-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197035735596&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TT5IOM5X72ki11Vb1SrI6Svq3lQQSPZ0v78cNNbGeXuCM_0c5jnJug30Am0VA787oo0I0KGb6IApg3RBywiGh6gqOrzzYXRxrlsYHzXHaqYhDq0O4FZRmWPO-49MBZG-UwJfsd0S3wihG7g8dU5dxVYP50viJkZMtwXOD40ofbY6_8MDG1BthaBP3p-cEfxh1lbHr_JDUHy9mt031eLlonyJC_ahY4pX1QCCNwNIcwVsDVWr3vFNrBtnuTxIMoxCBavC0I-4F8gllpjoCTCK0FpjvrVc15nb9r7vDv83v3jCLxaehFWmqq9MRFJwqyziSnohB2j0cpaWQjgC6slA4A&h=sb3HEgb551xKja0ZVvvF33ngNsaiHwIaIfPxsSVNraw cache-control: - no-cache content-length: - - '2117' + - '2174' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:43 GMT + - Thu, 10 Sep 2026 06:48:22 GMT expires: - '-1' pragma: @@ -521,13 +462,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/1e700b72-33a5-4165-b720-69d2c4569d22 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2fe4f04d-c382-4e68-9393-add8b9e402fb x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6590E4EE414B48DA9AC6DE436DB40F3F Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:30:42Z' + - 'Ref A: 988ACB1B31BA4790A8ECC672ECC5ED7E Ref B: SYD281080712062 Ref C: 2026-09-10T06:48:21Z' status: code: 201 message: Created @@ -545,17 +486,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-12b10750-2f05-11f1-81a6-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802437480760&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=aanx9pcWgbh_zQsLfO4xsjjo59ZGpNNFTL0PCzZ9FnP_p66r-rZ9XduZCsF5fnmyDE0Qvcvz53zuBwgeSxxHFt8wCdXtVL89FbbxYpgy2UfaGHaqgQ9TWVWn4RpJ5oxQ1s5Q5vtCSzKTiWrv2YwjZI4FXOdaM-mCPdrGRdVYdCW25D9r1C6gR6s60ehHo9kqKWSHUDdwQKkxzKiPzeT7JxHyOob037NtzuwCYUBx_KGJEV5cAIafORId5QV4DLoYv5Z4h7cxGq9HgMAEPc76F11qhhgMrVVWf-KvjOpDkw9wL5h4wpjQ5XYOaD_wnNfVQHCcKxGDiWiX8iuhqMbTVg&h=7Cn99iKxX6OrX25SI_Jg_mr3r3OZHdk9eneY68Mf0Gs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-9caa553a-ace3-11f1-b68d-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197035735596&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TT5IOM5X72ki11Vb1SrI6Svq3lQQSPZ0v78cNNbGeXuCM_0c5jnJug30Am0VA787oo0I0KGb6IApg3RBywiGh6gqOrzzYXRxrlsYHzXHaqYhDq0O4FZRmWPO-49MBZG-UwJfsd0S3wihG7g8dU5dxVYP50viJkZMtwXOD40ofbY6_8MDG1BthaBP3p-cEfxh1lbHr_JDUHy9mt031eLlonyJC_ahY4pX1QCCNwNIcwVsDVWr3vFNrBtnuTxIMoxCBavC0I-4F8gllpjoCTCK0FpjvrVc15nb9r7vDv83v3jCLxaehFWmqq9MRFJwqyziSnohB2j0cpaWQjgC6slA4A&h=sb3HEgb551xKja0ZVvvF33ngNsaiHwIaIfPxsSVNraw response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-12b10750-2f05-11f1-81a6-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802467451314&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=pBTKaYvM7uUndG-8KQfVB0aZvG0ZLHN4toA9mO8obT6jVtKjisTKRExDqpiy6FxIYJbGXu8rMqp_k6qq1uAasse2hnMtGg0IuBIjqNDuroGOayNQkjTakqFLdD7JipF0tADfATXE_cxjmcp5iDLvYw30f92Bo0pDdHcDcMrCowuvX46dKhLAcH62vuuaT-C6VZi7Fr282rYB18Up8JC0bhOIv9OQufU74peExgSKi_e6UBv9KM9FdwVeTt9KDdDvEBScHrw46WaYvLEztCqtwuxpcnOoS5ngIISE-_bm62IZeb3bncTu5rSv1-eZVNaF1UcJ4V5x8ixSb8YcaRoEfg&h=EuSxcdRLdjITtLmLgUmpxJum_fRmVaIYjliTVEz-DnY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-9caa553a-ace3-11f1-b68d-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197045915808&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=EgENwjpazHu193c3m8yHfhWC-3M65W-prPUilhLdoDVDkoaBUtK-iuGguYrV45qNS9hd6ge5R-7xQy6UiJ9cE-X_NONLUNNkWee5jbjIHSKu-z8UAVhnBGSam9bdTdCEqSwDg5feRS8TAtGdhsi-IvJMT2sUG67iWqBX53XnaNlpor5FAYJxWcHSq0lhxxaOi2jFsu8BSRNF3YZI12C6xj-gsbTI9TENtxKaZnjyEy6jtOHm-_bD0hvBBD4UFk7Fr9si_GcVry_Qml01HFUpcQ91dMWoRzMD12JnU54WnmpZx3lyQFOQkaUBh6FrPlvWyCMZ-NjB9q63uSfiMi70Uw&h=tt2tzvSS05CAP_UFCF3PxNGgU6Rx-Cx1nXzNevg6thw cache-control: - no-cache content-length: @@ -563,7 +504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:46 GMT + - Thu, 10 Sep 2026 06:48:24 GMT expires: - '-1' pragma: @@ -575,11 +516,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ee48850f-3df5-4031-95df-96e854f67562 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8f7b803e-4572-48e4-90ad-1cb045a567c9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6DC1B8422D7C42919EAF84255BAFF397 Ref B: BN1AA2051015009 Ref C: 2026-04-03T02:30:46Z' + - 'Ref A: 8754673CB02E4EA6815BF7DF8E27A328 Ref B: SYD281080706025 Ref C: 2026-09-10T06:48:24Z' status: code: 200 message: OK @@ -597,24 +538,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:43.5577772+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:43.5578487+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"91febc7b-148c-489f-bfe3-c9b83d447ac2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:23.0579083+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780147+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2118' + - '2175' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:49 GMT + - Thu, 10 Sep 2026 06:48:24 GMT expires: - '-1' pragma: @@ -628,7 +569,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6827F47A1C4640F0878103FE9BA680DB Ref B: BN1AA2051015047 Ref C: 2026-04-03T02:30:49Z' + - 'Ref A: CAEF7CDDA34E463C9603A8C039787B9D Ref B: SYD281080706025 Ref C: 2026-09-10T06:48:25Z' status: code: 200 message: OK @@ -646,23 +587,22 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testreg2tsb6e7fghlb5","name":"testreg2tsb6e7fghlb5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:42.4384986Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:42.4384986Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.2435103Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngvq3j2s6go3ca7pdmvcp3uw46m4ckmzjxz676nwqrkl65et6nayfby6ntoihrqrw/providers/Microsoft.ContainerRegistry/registries/cliregh5bnhbcrxi6mej","name":"cliregh5bnhbcrxi6mej","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpu3iusdcke4sup5s4ij3h3iinzfa57ymb3x2vmtopjjhiisxrqe4rbmvxv5qui3/providers/Microsoft.ContainerRegistry/registries/clireggo2zf42uu7t7up","name":"clireggo2zf42uu7t7up","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:56.5141236Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"91febc7b-148c-489f-bfe3-c9b83d447ac2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:23.0579083Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4v5c2vovrez4cba6pq6lkn7i4z2tv5dpcewg5qyyn2zj4sth73pwocqtuwb4pyj73/providers/Microsoft.ContainerRegistry/registries/testreghj337f4gva6vc","name":"testreghj337f4gva6vc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:16.1242114Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:16.1242114Z"}}]}' headers: cache-control: - no-cache content-length: - - '12892' + - '5035' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:55 GMT + - Thu, 10 Sep 2026 06:48:26 GMT expires: - '-1' pragma: @@ -676,7 +616,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5EFD4AC8EC01485D95EDA9EF29CEF828 Ref B: BN1AA2051015047 Ref C: 2026-04-03T02:30:55Z' + - 'Ref A: 9F5C5DC8104E4076B5AAC3A49B80DA83 Ref B: SYD281080710062 Ref C: 2026-09-10T06:48:26Z' status: code: 200 message: OK @@ -694,24 +634,24 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:43.5577772+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:43.5578487+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"91febc7b-148c-489f-bfe3-c9b83d447ac2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:23.0579083+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780147+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2118' + - '2175' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:59 GMT + - Thu, 10 Sep 2026 06:48:28 GMT expires: - '-1' pragma: @@ -725,7 +665,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F615476DF983432EA37D2B0EC720815F Ref B: BN1AA2051014025 Ref C: 2026-04-03T02:30:59Z' + - 'Ref A: 612E4488421B4696AFB428677B0FBD0C Ref B: SYD281080707042 Ref C: 2026-09-10T06:48:27Z' status: code: 200 message: OK @@ -743,23 +683,22 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testreg2tsb6e7fghlb5","name":"testreg2tsb6e7fghlb5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:42.4384986Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:42.4384986Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:56.3286837Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngvq3j2s6go3ca7pdmvcp3uw46m4ckmzjxz676nwqrkl65et6nayfby6ntoihrqrw/providers/Microsoft.ContainerRegistry/registries/cliregh5bnhbcrxi6mej","name":"cliregh5bnhbcrxi6mej","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:46.5519334Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:46.5519334Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"91febc7b-148c-489f-bfe3-c9b83d447ac2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:23.0579083Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4v5c2vovrez4cba6pq6lkn7i4z2tv5dpcewg5qyyn2zj4sth73pwocqtuwb4pyj73/providers/Microsoft.ContainerRegistry/registries/testreghj337f4gva6vc","name":"testreghj337f4gva6vc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:16.1242114Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:16.1242114Z"}}]}' headers: cache-control: - no-cache content-length: - - '12892' + - '4440' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:14 GMT + - Thu, 10 Sep 2026 06:48:38 GMT expires: - '-1' pragma: @@ -773,7 +712,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F411308BCE77428BA2A85AF4434C3481 Ref B: BN1AA2051014031 Ref C: 2026-04-03T02:31:14Z' + - 'Ref A: FE7610ABD82D47AEAEFC1C1294774530 Ref B: SYD281080705023 Ref C: 2026-09-10T06:48:38Z' status: code: 200 message: OK @@ -791,24 +730,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"7a567463-e05c-4c36-a49d-c30d8a088bb5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:43.2011928+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:43.5577772+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:43.5578487+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"91febc7b-148c-489f-bfe3-c9b83d447ac2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:23.0579083+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780147+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:23.3780752+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2118' + - '2175' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:19 GMT + - Thu, 10 Sep 2026 06:48:39 GMT expires: - '-1' pragma: @@ -822,23 +761,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E66861CB21E54029A37028360EF52642 Ref B: BN1AA2051013049 Ref C: 2026-04-03T02:31:19Z' + - 'Ref A: E2D04F4837DF4311A5AB62937702BE15 Ref B: SYD281080706036 Ref C: 2026-09-10T06:48:39Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "identity": {"type": "None"}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, "networkRuleSet": - {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, - "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": - "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", - "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": - false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", - "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": []}, "policies": + {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": {"type": "Notary", + "status": "disabled"}, "retentionPolicy": {"days": 7, "status": "disabled"}, + "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": + "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": + "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": + "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": + "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -849,31 +789,31 @@ interactions: Connection: - keep-alive Content-Length: - - '969' + - '1030' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:25.4992735+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:25.9992818+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:25.9993544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:40.5031057+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:41.0438129+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:41.0438824+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-2c90bdef-2f05-11f1-9836-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802862961639&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KJIY1W60faukIE1thfQt2vLZQhh_xAA1oGwlrGLMM1dpSOGmoVRV7hf-1wFO4aZKZm4_Wee9Fc6AI733AhOD4sxgMGxGbk18ZJnIO3Rw58xCGsw4srmV5ID56QTziNzj1Sn2fXQ88vRlrPKpS_e64mvvYqKKvbdfHZ_sK_sCjvu8W-NzG9WZRXf-qNgCKI80WxkxUw1zVAnAweiLCJEwQYA_unN99z14HZD4Sef5uvTdvqW8WvGsjc9_9I6f0g-Zw8iVtfd8seSbClOmSzUDqdCva7lblBJo7mV53Lm1z1bz5hp7_P6C9ccJiwa4RJxjSbOm2US0fimOwk4WLJjnnw&h=ZLF2RMg_E9NAqPxqgK5skt6nhjaNlnTP_pu1rkqVVTw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-a7aa2e17-ace3-11f1-809e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197212687249&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=l_hcrNXKH7gCxWn43q3cZoFxesvsQzT1kJtn468H1NukiBiWDNf15yMj_-uzwFNC7eydNwz1h_GS7uJUShu5qhpydt2pVNVMv_QRN8JHYPkNPGxImxIpBE5XPNqfwHpvrgBM4ayvgQ23Bt7tAri-gjdiZ8otve54DsJJ1KIGG0FZiU7hzvsWmeQom0a61zZgjr0MKsQOkCfliAY8whNOhTqqjTvhBMEN6HN18tja_L0w4dHlNq7eLdPJtv3rvFze3Wzg3G5UsvTkkQH_amyaXOOM3HF6H46BsZS7Pfnk0kNBExa-ntsUXPOZLEIRsVO3MzPn7oIM0JH-96es6iCs0g&h=CCK7E6BBm70v12j0UoohtL5AMh-vvFNjISJRo5jSNKU cache-control: - no-cache content-length: - - '1667' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:26 GMT + - Thu, 10 Sep 2026 06:48:40 GMT expires: - '-1' pragma: @@ -885,13 +825,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/834d5553-e1d8-439b-a9a5-25e23c8ca360 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/754fcea0-11eb-4ff6-92f2-67f534046f9f x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 99F4ECD4F8D74B6384DA67B4609443A4 Ref B: BN1AA2051013023 Ref C: 2026-04-03T02:31:24Z' + - 'Ref A: 44A94FF543984F0F97530630A3CF1103 Ref B: SYD281080707023 Ref C: 2026-09-10T06:48:40Z' status: code: 201 message: Created @@ -909,17 +849,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-2c90bdef-2f05-11f1-9836-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802862961639&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KJIY1W60faukIE1thfQt2vLZQhh_xAA1oGwlrGLMM1dpSOGmoVRV7hf-1wFO4aZKZm4_Wee9Fc6AI733AhOD4sxgMGxGbk18ZJnIO3Rw58xCGsw4srmV5ID56QTziNzj1Sn2fXQ88vRlrPKpS_e64mvvYqKKvbdfHZ_sK_sCjvu8W-NzG9WZRXf-qNgCKI80WxkxUw1zVAnAweiLCJEwQYA_unN99z14HZD4Sef5uvTdvqW8WvGsjc9_9I6f0g-Zw8iVtfd8seSbClOmSzUDqdCva7lblBJo7mV53Lm1z1bz5hp7_P6C9ccJiwa4RJxjSbOm2US0fimOwk4WLJjnnw&h=ZLF2RMg_E9NAqPxqgK5skt6nhjaNlnTP_pu1rkqVVTw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-a7aa2e17-ace3-11f1-809e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197212687249&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=l_hcrNXKH7gCxWn43q3cZoFxesvsQzT1kJtn468H1NukiBiWDNf15yMj_-uzwFNC7eydNwz1h_GS7uJUShu5qhpydt2pVNVMv_QRN8JHYPkNPGxImxIpBE5XPNqfwHpvrgBM4ayvgQ23Bt7tAri-gjdiZ8otve54DsJJ1KIGG0FZiU7hzvsWmeQom0a61zZgjr0MKsQOkCfliAY8whNOhTqqjTvhBMEN6HN18tja_L0w4dHlNq7eLdPJtv3rvFze3Wzg3G5UsvTkkQH_amyaXOOM3HF6H46BsZS7Pfnk0kNBExa-ntsUXPOZLEIRsVO3MzPn7oIM0JH-96es6iCs0g&h=CCK7E6BBm70v12j0UoohtL5AMh-vvFNjISJRo5jSNKU response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-2c90bdef-2f05-11f1-9836-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802911594604&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=VEot8VfkyDLDAdDNHmwjOCo83yglhc6bGHTFUtcEvMtWj7GV1AXxBI0Xc1QIpo9X-MH5CvpbMkGF0AN5IVd2Y2j2svxU0qw9Sfz4eYzz1tQgJaJ37KMBFSJd0ZbJTlblUeEqXVW9lueBw0D8g_PCkzkGTur6XYl-Zsz4g2o0xghT4H-Dv0xuYlbGEKchadfXilIca1oTRKv88lc4lJx7CdfRV6AtjKWGw50lpbyjkyCS24KyZFYKgzs8KZ-wrLsVRZbauyvwsYzB0yntsP6D_-Sh_J9pe9FxRUQodqnDQdkM6lNq-nToMzr1ZgBQZki1Urocl6ulmszyVqvRVIzm-g&h=1FfgR5XzoZGxbYECc06otA51ncueYgCzGLL7HwabJ9w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-a7aa2e17-ace3-11f1-809e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197221462048&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=NqMOMnTHcpBBLEIkuhJIqhSPdX9eDqBgpc7_SrfDCZK7gXrNSYkmxTX-N1XsNOsOxRlDRx4_SFvsjdnRn5sd1zP5J0jt9u_LMPnvpuuwudLPTe1RYm1_-wc_3WSYnkVyX6GBRrD4zPXeV9iWdlS4oqv07M8wbgufYxB3aA8Ir2bBfd1eReip3J6g8yVTT_rCPt2kssM2HerGbnlgRr9e9cDHEjpfolVYjk7mUE6U8GxR0pG8pnExopzqCxW6cTXvkaV-rpCtpa2gtMDrNTM9N4wEg0GmfgSdMb9EHRgZAS0aw4lPmM7fzLjT8bH7DfNH_ZvzwhrPnSn6VxIZu6JooQ&h=ML9CO2K-yGsFLh6qJsFEBDTpZ_5FQi6BWUfmlHyoX7w cache-control: - no-cache content-length: @@ -927,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:30 GMT + - Thu, 10 Sep 2026 06:48:41 GMT expires: - '-1' pragma: @@ -939,11 +879,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/7c3509ac-2610-41f9-857a-f031e251748c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/08a56201-d2d1-4f73-b5c9-45118ccbece8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B7377D05FEAE4B3C9A751F1E905CA526 Ref B: BN1AA2051014051 Ref C: 2026-04-03T02:31:31Z' + - 'Ref A: CBEFAACD8A15435EA54990948F804E83 Ref B: SYD281080707029 Ref C: 2026-09-10T06:48:41Z' status: code: 200 message: OK @@ -961,23 +901,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:25.4992735+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:25.9992818+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:25.9993544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:40.5031057+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:41.0438129+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:41.0438824+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:36 GMT + - Thu, 10 Sep 2026 06:48:42 GMT expires: - '-1' pragma: @@ -991,7 +931,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 26833A171B2B42FD92C27E0C4C46AC48 Ref B: BN1AA2051013019 Ref C: 2026-04-03T02:31:36Z' + - 'Ref A: 07B0B78C5527406A9B87BADC3E1EBB12 Ref B: SYD281080712029 Ref C: 2026-09-10T06:48:42Z' status: code: 200 message: OK @@ -1009,22 +949,21 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:25.4992735Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgycnm3cbfidtkas5krtgdymfvptp3wxu7hke7xub4cybqx5k7ha5smyc4ygtlrhtud/providers/Microsoft.ContainerRegistry/registries/testreghevpvx6rip6so","name":"testreghevpvx6rip6so","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:26.6785239Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicqqnf2ehrzuqoyrcuvi5nljru3zz3uphrbodcqco3bugffvyu24xuye7iodnlafo/providers/Microsoft.ContainerRegistry/registries/testreggz5gkpheykeaw","name":"testreggz5gkpheykeaw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:40.5031057Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4v5c2vovrez4cba6pq6lkn7i4z2tv5dpcewg5qyyn2zj4sth73pwocqtuwb4pyj73/providers/Microsoft.ContainerRegistry/registries/testreghj337f4gva6vc","name":"testreghj337f4gva6vc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:16.1242114Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:16.1242114Z"}}]}' headers: cache-control: - no-cache content-length: - - '10658' + - '3990' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:41 GMT + - Thu, 10 Sep 2026 06:48:43 GMT expires: - '-1' pragma: @@ -1038,7 +977,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3B5671D0B352428DAC50B3452BBA8F7D Ref B: BN1AA2051013021 Ref C: 2026-04-03T02:31:41Z' + - 'Ref A: 3F57C0F77FB6478D8C077D0AC36BA047 Ref B: SYD281080706040 Ref C: 2026-09-10T06:48:43Z' status: code: 200 message: OK @@ -1056,23 +995,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:25.4992735+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:25.9992818+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:25.9993544+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:40.5031057+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:41.0438129+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:41.0438824+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:45 GMT + - Thu, 10 Sep 2026 06:48:44 GMT expires: - '-1' pragma: @@ -1086,23 +1025,23 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DFF6BFC4AA7B44FDAD79F6DBB05D175C Ref B: BN1AA2051014037 Ref C: 2026-04-03T02:31:46Z' + - 'Ref A: 7D00E4CD49B74A9C8F27A40DFB87DF0E Ref B: SYD281080712036 Ref C: 2026-09-10T06:48:44Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "location": "westus", "tags": {}, "properties": - {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "ipRules": - []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": - {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": - "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": + [], "ipRules": []}, "policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 7, "status": "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": - "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure"}, - "identity": {"type": "SystemAssigned"}}' + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}, "identity": {"type": "SystemAssigned"}}' headers: Accept: - application/json @@ -1113,31 +1052,31 @@ interactions: Connection: - keep-alive Content-Length: - - '979' + - '1040' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"9373b13a-8682-47be-825a-4650da38bbea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:52.3703058+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:52.6916334+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:52.6917071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"2de46376-37e3-4791-8e4a-0246f29942d3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:46.8360125+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:47.0722253+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:47.0722917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-3cdd2f76-2f05-11f1-a750-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803129797204&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=FyuMFrIrUBtRSd1YLhDn0kiYZ9T8KBDOU5BPThefAURY-7hldd9itF1tsdF_yWN4BKP-Y_2p4ZwXD0GqA7kL0CMNAn_ohnCCqo1w53-xjPTZXZwEYqxPxicmJ7qpZ1vbGUJyriSTlNDej0tl8b4WRG1Ge4vB-Wgx_Cg1nt7qKNw3gz-RkQEx2dc3Qi6sl2O62-yKxuAwodJhiZCBc-m8cTPFCXcSMBHkff-UQNQVLfXA8yiUAhd3Qz9kQ-iHeO2fZppt0qBN0z1p3A07odi5OvptH9Zh136tlGzPJ7uTbdd-6XUIhNoPhW9L28PHdNPjQdfe3gEfRdfKwdRBHBI6uw&h=G4d9TxB9PRSoTbqD8DddcAonKZqeReoxwcwDP02ftLM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-aad1b83d-ace3-11f1-83a2-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197272735248&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=iOyQdCjI-rLzlfUOew4QFiC1UYno2bH9UeUQQF7aNO5uRpFugzx-A4agX7uszgeXWtl8lfm-T9gkmHvnTnAJCwjY0X1nACsUpoM6OWXDMURicw946ky2Mup0Ol9iiQPHq52HUzyYgSGSIyrScxBwxVrtmtb9J6MBYiKIEh4DqJfKrm-gz-oU1EHKBQ9HV6cdft9uDHDMr-UY0ZYaEc-0qBwMC8ZmMl9pkjtZ7mK6ED-CPUJgmOmtCO5Pexcw4Mim40_3gwrT4k652Kd_oM9aiuLUDqeOV9u_LSamsnCv02HnF7UFBxUSQyHj7i0MQHPib6OmIhUzd8TjkBWyF6FhHw&h=Bsg8KpaXIUIBIcYdcvMrTZfpgkbWNLic17mvQcXGQ9s cache-control: - no-cache content-length: - - '1807' + - '1864' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:52 GMT + - Thu, 10 Sep 2026 06:48:46 GMT expires: - '-1' pragma: @@ -1149,13 +1088,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/66693f51-42d0-4969-a82d-44f08c91ca9f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4e51dfe5-b393-4cce-b861-9aebd12ededf x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8FA43B7485444FFA9BC94E43EFB18496 Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:31:51Z' + - 'Ref A: 8F2042834AE34005A514B2CF7D677A0C Ref B: SYD281080705060 Ref C: 2026-09-10T06:48:45Z' status: code: 201 message: Created @@ -1173,17 +1112,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-3cdd2f76-2f05-11f1-a750-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803129797204&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=FyuMFrIrUBtRSd1YLhDn0kiYZ9T8KBDOU5BPThefAURY-7hldd9itF1tsdF_yWN4BKP-Y_2p4ZwXD0GqA7kL0CMNAn_ohnCCqo1w53-xjPTZXZwEYqxPxicmJ7qpZ1vbGUJyriSTlNDej0tl8b4WRG1Ge4vB-Wgx_Cg1nt7qKNw3gz-RkQEx2dc3Qi6sl2O62-yKxuAwodJhiZCBc-m8cTPFCXcSMBHkff-UQNQVLfXA8yiUAhd3Qz9kQ-iHeO2fZppt0qBN0z1p3A07odi5OvptH9Zh136tlGzPJ7uTbdd-6XUIhNoPhW9L28PHdNPjQdfe3gEfRdfKwdRBHBI6uw&h=G4d9TxB9PRSoTbqD8DddcAonKZqeReoxwcwDP02ftLM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-aad1b83d-ace3-11f1-83a2-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197272735248&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=iOyQdCjI-rLzlfUOew4QFiC1UYno2bH9UeUQQF7aNO5uRpFugzx-A4agX7uszgeXWtl8lfm-T9gkmHvnTnAJCwjY0X1nACsUpoM6OWXDMURicw946ky2Mup0Ol9iiQPHq52HUzyYgSGSIyrScxBwxVrtmtb9J6MBYiKIEh4DqJfKrm-gz-oU1EHKBQ9HV6cdft9uDHDMr-UY0ZYaEc-0qBwMC8ZmMl9pkjtZ7mK6ED-CPUJgmOmtCO5Pexcw4Mim40_3gwrT4k652Kd_oM9aiuLUDqeOV9u_LSamsnCv02HnF7UFBxUSQyHj7i0MQHPib6OmIhUzd8TjkBWyF6FhHw&h=Bsg8KpaXIUIBIcYdcvMrTZfpgkbWNLic17mvQcXGQ9s response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-3cdd2f76-2f05-11f1-a750-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803175474045&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IfRRaXw5QkO3bxiz4Ou6sOjcGIHMYdhqElfbwVoc7CD2dotXf2VEmQXkNJmz2vJVYKC9_gCF6C4pHdAnkneoDTJh5q_jJ26-Wk15_rM1N13wg_xpiBRi2sC-cOfpsf5Ab0yXOa-LZExYafh-6BCuFR447LQU_aOvPZwWo52dZAdYM4rJNSP7LCs_A57vI-libfeO2tLm46VdqaiOdSzlmNxu1l4VUYbvNf8ERLsHEkGfxvtGMKANrjP037_EK3oD302hePp6sxtq1zGCcT4icsdKQjhstAOvlMNUXEQoQoivG00-BzR_SdaJo7aszzW_-wqkhTkmNeApN_mEuXB2Nw&h=wXGsSivQP1-9O2Ao_MiTmcP06kaHeT4bKdxTRnUEb_o + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-aad1b83d-ace3-11f1-83a2-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197282448937&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=q3u4LL13HJev90VR5KJnGjtccY9fhZTUEp7TIwjkJozFuICVQt5Uj67YNp5D-sL05pIQ6QO9xeEZgPaYx4565ESwE542sHDOpkJuimBx8KBy1KvBqBiYS_2Jxs3-XlFrcNg4NPIjS_j9hKmSpdSk8XOTU1x98nVJTa1dL8InpOuuIx_BNiXZdllmGeJIa22f8ZUHpSh9ldTUTuqtkKTMqdvEMQLUQu-IWH5edWuupcNWrNA-uk8A8XiOT5X-M38-n09vKLUJLbSH2M9nJQjMfeF5DyEHwERsSiTCyFIUHYKcJTA4szdftSYwm2dmE3eafSBA359-CHuH0DDWojWAKQ&h=A0Z18SkZInyEK1FPbHV85wD9WbQ-7_S-h-BUps_9fms cache-control: - no-cache content-length: @@ -1191,7 +1130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:56 GMT + - Thu, 10 Sep 2026 06:48:47 GMT expires: - '-1' pragma: @@ -1203,11 +1142,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/cdeddb1e-7924-472b-a2f1-1e8df8b49b78 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/83819f26-0240-4e03-bb4d-0d66823056ec x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EAB19A8BCA5F4355854089ACF099F038 Ref B: BN1AA2051013019 Ref C: 2026-04-03T02:31:57Z' + - 'Ref A: 9266B52918CB43969EEC3CEDEF0F8FF8 Ref B: SYD281080707034 Ref C: 2026-09-10T06:48:48Z' status: code: 200 message: OK @@ -1225,23 +1164,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"9373b13a-8682-47be-825a-4650da38bbea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:52.3703058+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:52.6916334+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:52.6917071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"2de46376-37e3-4791-8e4a-0246f29942d3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:46.8360125+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:47.0722253+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:47.0722917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1808' + - '1865' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:01 GMT + - Thu, 10 Sep 2026 06:48:49 GMT expires: - '-1' pragma: @@ -1255,7 +1194,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9A5FC579CA9A4FE4891E64EE45C15301 Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:32:01Z' + - 'Ref A: EB2745B8143B49849259D344A8BE0108 Ref B: SYD281080712025 Ref C: 2026-09-10T06:48:48Z' status: code: 200 message: OK @@ -1273,22 +1212,21 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"9373b13a-8682-47be-825a-4650da38bbea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:52.3703058Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"2de46376-37e3-4791-8e4a-0246f29942d3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:46.8360125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4v5c2vovrez4cba6pq6lkn7i4z2tv5dpcewg5qyyn2zj4sth73pwocqtuwb4pyj73/providers/Microsoft.ContainerRegistry/registries/testreghj337f4gva6vc","name":"testreghj337f4gva6vc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:16.1242114Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:16.1242114Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '7141' + - '4723' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:14 GMT + - Thu, 10 Sep 2026 06:49:00 GMT expires: - '-1' pragma: @@ -1302,7 +1240,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 625CFE4F42DA43EA861039AE63105B77 Ref B: BN1AA2051014037 Ref C: 2026-04-03T02:32:14Z' + - 'Ref A: 6C59A90EBAE346AB8A90E632A020F419 Ref B: SYD281080708029 Ref C: 2026-09-10T06:49:00Z' status: code: 200 message: OK @@ -1320,23 +1258,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"9373b13a-8682-47be-825a-4650da38bbea","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:52.3703058+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:52.6916334+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:52.6917071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"2de46376-37e3-4791-8e4a-0246f29942d3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:46.8360125+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:47.0722253+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:47.0722917+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1808' + - '1865' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:17 GMT + - Thu, 10 Sep 2026 06:49:00 GMT expires: - '-1' pragma: @@ -1350,23 +1288,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E8CCD41060224FFBA4466BF8546C8EC4 Ref B: BN1AA2051015009 Ref C: 2026-04-03T02:32:17Z' + - 'Ref A: 349A7EE346894E17886352CC417836FF Ref B: SYD281080705054 Ref C: 2026-09-10T06:49:01Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "identity": {"type": "None"}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, "networkRuleSet": - {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, - "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": - "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", - "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": - false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", - "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": []}, "policies": + {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": {"type": "Notary", + "status": "disabled"}, "retentionPolicy": {"days": 7, "status": "disabled"}, + "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": + "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": + "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": + "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": + "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -1377,31 +1316,31 @@ interactions: Connection: - keep-alive Content-Length: - - '969' + - '1030' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:21.2315743+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:21.7462674+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:21.7463265+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:02.9260536+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:03.4320134+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:03.4321336+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-518d3f32-2f05-11f1-9196-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803419192004&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=afzO06dR2aDdCgABLfbYqhrQslgEnz9F5Md_8Q3grBc9JGa1GQmXKWwLnWWp-eg2Aia8ZE7BprN-bOM6hMAG7feSt1tN2kJ8W1xHmU44l8QRdElzGSzi7udG05xqhnmO5JUloS41NW1LAcFeAAl6bxfTIeyeIgEak_FOR6F3y1OqtPhovWZeJIEnOc5CKevUptgOEewEw5PAH-ib5ar-pCEZuX7jFt3SwsaBnR9H5FG--1JwVUMqJxyEJk2fPFVpu3afDhL2ZEek02ZtpzTnSD9l-ZCrHrWmYCFx6eO_Op8YLF40QgaioFRD4nKLq9cUoL23S7_E2t8z3KNqZcCG-Q&h=2rFJyYJsk0N8pusE5yCkBDX2ZnCnXnxF95ZeI83ORwg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b4a3a0c3-ace3-11f1-b676-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197436448283&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ZeJr8zZjJZV6nw5YX6xZpho74pRT3Q1T8kse9LEfm7v2LkeRJD5L2wmrZi2qnGUxWdmZ4zvCm7G1J-63pOZqmhs4IpykTgQGkn2BcftolsEZvkstfa8EvpKsnKF1SkJKmQYbYdR3otNJOLJWFCD_aFYI_wVTTpTTmNYs_AtMs5bCF4qO5Mp4PzlNexZNGJ7NLp4SmKMOWViysGkSiL83fglSG6a92hg8it8wPqPhJKjOtvSweLdECd7XNPjQfKyL9n6cEBbLaTzbIe8JFkNdztYylJ2y4CsnKYGQqRxlP2UtCifVqYv9Rp8OYTcYyJ8kBMrYO3qktMrxXQU_qcQOHQ&h=iaEgV9MiWuqkoiq-QMMrXMkmQNghMlhKDieaREMamBA cache-control: - no-cache content-length: - - '1667' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:21 GMT + - Thu, 10 Sep 2026 06:49:02 GMT expires: - '-1' pragma: @@ -1413,13 +1352,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/baa620cb-01c0-4db5-9661-728fbba33bd5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c096d388-f529-49cf-a113-1e063c595ee7 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5C175C677DD448FAA1CADC0EE6025C1F Ref B: BN1AA2051015039 Ref C: 2026-04-03T02:32:20Z' + - 'Ref A: C7A8D0E3CE0146C1B73D73C4C3963945 Ref B: SYD281080706040 Ref C: 2026-09-10T06:49:02Z' status: code: 201 message: Created @@ -1437,17 +1376,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-518d3f32-2f05-11f1-9196-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803419192004&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=afzO06dR2aDdCgABLfbYqhrQslgEnz9F5Md_8Q3grBc9JGa1GQmXKWwLnWWp-eg2Aia8ZE7BprN-bOM6hMAG7feSt1tN2kJ8W1xHmU44l8QRdElzGSzi7udG05xqhnmO5JUloS41NW1LAcFeAAl6bxfTIeyeIgEak_FOR6F3y1OqtPhovWZeJIEnOc5CKevUptgOEewEw5PAH-ib5ar-pCEZuX7jFt3SwsaBnR9H5FG--1JwVUMqJxyEJk2fPFVpu3afDhL2ZEek02ZtpzTnSD9l-ZCrHrWmYCFx6eO_Op8YLF40QgaioFRD4nKLq9cUoL23S7_E2t8z3KNqZcCG-Q&h=2rFJyYJsk0N8pusE5yCkBDX2ZnCnXnxF95ZeI83ORwg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b4a3a0c3-ace3-11f1-b676-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197436448283&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=ZeJr8zZjJZV6nw5YX6xZpho74pRT3Q1T8kse9LEfm7v2LkeRJD5L2wmrZi2qnGUxWdmZ4zvCm7G1J-63pOZqmhs4IpykTgQGkn2BcftolsEZvkstfa8EvpKsnKF1SkJKmQYbYdR3otNJOLJWFCD_aFYI_wVTTpTTmNYs_AtMs5bCF4qO5Mp4PzlNexZNGJ7NLp4SmKMOWViysGkSiL83fglSG6a92hg8it8wPqPhJKjOtvSweLdECd7XNPjQfKyL9n6cEBbLaTzbIe8JFkNdztYylJ2y4CsnKYGQqRxlP2UtCifVqYv9Rp8OYTcYyJ8kBMrYO3qktMrxXQU_qcQOHQ&h=iaEgV9MiWuqkoiq-QMMrXMkmQNghMlhKDieaREMamBA response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-518d3f32-2f05-11f1-9196-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803463112408&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Cd1EoNtP4FoisYrwmNHpPm0aZaFHlmNWgz9wnZwE7_SCR_p9fyhaxtX6l8rmU_UT6hiudzWYcHu9IbjoVE5Dr57kZGNBj98iDZJb7bPOY4DF57Nde4S2GKfEwly7ovW3o_8rkz8AoSFp24SKiQrv9zhwAyHDZaBJ-U_FA_om_6VUpksyfcUKOpY8U3cesP-bjd9cIFpuzQqgq8npoy7w1aYr-2siHyMqg0ysH9MSgALrNwJ-lDFOwMxoCbLPB5vh5e2Ut3bKs8aYWbr_cE9c0Hdnc-vm0WfCD5-ta1BtsSzsbnSUtWhwWNJh8oRsPcGIQkkVvUgdMsrFe4M70FnxWA&h=_eOry-IQoWq-hXvAAm3iNlOjZxdnoxIAnjdMGkRJj3Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b4a3a0c3-ace3-11f1-b676-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197449794464&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=kELjD0POZkNO3JaAzd4nPdbtmFyXNbpZRDZQ2KZwwGqihb7QzE5ctQn7YhZK6lLGLt8ER_ARUQ1PWKtCsCB8zUhBzCG4wdnubCDuUhtKRcowYhk4iraKN26BaqB5-okrjwlRLBzdRvbTvkPCGTmHkzHthjyGFEgt5P5OD_PkCUO67GueIEctTL16T9VR1boN_s6kmfQTBnyKAUoRFc7VcybXaePl09uWl0KAg2LAE0Y9MDu6x_e6wGD8LRsgdlw5yIGXklsdGC_L3I0Wms7rHv28tBtWLb8qjSHDZA6pwKujbMqFN4LPV4HFZTXE7DdYRxXEMxC1_HsP1pO_Y9-cdQ&h=mwDXpgZ3IlKOUCofTyFPoWJ1QazoObBqiwMPlgd7XfQ cache-control: - no-cache content-length: @@ -1455,7 +1394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:26 GMT + - Thu, 10 Sep 2026 06:49:04 GMT expires: - '-1' pragma: @@ -1467,11 +1406,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9699bcd9-741c-4c08-818e-a677a1025a14 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/275f226e-0314-4775-8f6d-60a9142631da x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 56A39BD56E98469BB9A3824DBFAC9F83 Ref B: BN1AA2051015029 Ref C: 2026-04-03T02:32:25Z' + - 'Ref A: 06D8BE6560594F2BB4A8BC22F217C028 Ref B: SYD281080710062 Ref C: 2026-09-10T06:49:04Z' status: code: 200 message: OK @@ -1489,23 +1428,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:21.2315743+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:21.7462674+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:21.7463265+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:02.9260536+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:03.4320134+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:03.4321336+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:27 GMT + - Thu, 10 Sep 2026 06:49:04 GMT expires: - '-1' pragma: @@ -1519,7 +1458,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D1BDD5C996F845D780C8C7E7DD5B4EAE Ref B: BN1AA2051013053 Ref C: 2026-04-03T02:32:28Z' + - 'Ref A: B980450D8C25446C8C5FAA84DEBF86FD Ref B: SYD281080706040 Ref C: 2026-09-10T06:49:05Z' status: code: 200 message: OK @@ -1537,22 +1476,21 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:21.2315743Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:02.9260536Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '7001' + - '3987' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:29 GMT + - Thu, 10 Sep 2026 06:49:06 GMT expires: - '-1' pragma: @@ -1566,7 +1504,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B35E18DF88924060A9D58301FD9EC8F1 Ref B: BN1AA2051012011 Ref C: 2026-04-03T02:32:30Z' + - 'Ref A: 41F9D53FDD3C47FBACBBE892E7C03072 Ref B: SYD281080709040 Ref C: 2026-09-10T06:49:06Z' status: code: 200 message: OK @@ -1584,23 +1522,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:21.2315743+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:21.7462674+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:21.7463265+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:02.9260536+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:03.4320134+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:03.4321336+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:32 GMT + - Thu, 10 Sep 2026 06:49:06 GMT expires: - '-1' pragma: @@ -1614,23 +1552,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7E6D7FD9EA3A4094802CAF6E0A384BFF Ref B: BN1AA2051012053 Ref C: 2026-04-03T02:32:32Z' + - 'Ref A: 0BB4A8D0E4894F8A9E484084FD085510 Ref B: SYD281080709029 Ref C: 2026-09-10T06:49:07Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "location": "westus", "tags": {}, "properties": - {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "ipRules": - []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": - {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": - "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": + [], "ipRules": []}, "policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 7, "status": "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": - "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure"}, - "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}, "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": {}}}}' headers: Accept: @@ -1642,31 +1581,31 @@ interactions: Connection: - keep-alive Content-Length: - - '1174' + - '1235' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:35.4627489+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:35.7984529+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:35.7985126+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:12.2515938+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:12.2516482+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-5b7ae501-2f05-11f1-91c7-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803560564891&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IIQZyGE0G3Qlv8xb-9804qDdxPP4_eHuUFpm20KX7qMwFmNn_UoB9cV9-eMj6cgdJVpysdJX6D0Ebyrpw0V5AG2MLIJdmINGRR-NbQ8J2473tSJ0SvTdeZQj5hrvZelLXTQDXDmrDNDCTR-nBC0euwcDVKSX3UHd5gEdPF_THCmh3KtCZH2Rd-yTBiqMPqHO6uRlno9ftxWT3TBf6riU5xqUbQIUXYOVc8IMF06U5_VU11F4tmcaZh7Lt9zNVe1uhT9V_9KLZe57uQ8FFEiEuGMHu2iUaOML7C2likWZDYkR1F6Pp-6GRzlofWYrA0E-4jUrW1hz3c0G5JscOz_3pA&h=WCIhyOcGv4PrAlT-YPHvP-OQveTZlbUUzf1jcHYI2QY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b86db925-ace3-11f1-99eb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197524030396&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=KWimafqIVmZ5FqPa6T_lYT1soMZkjgAWWtbOjwjOxhBJxFsKinugXb_hJ8Tz9onOECz78NFh1rPn4hO_bDnVcTdIg8TaeMdJBb5L6KVZwm9D5QyCtspDMXxnNQPfLgEoZCrvqMbfnnY63ZiVTGAGZbsARrm4tahj12AwzOAT4H15QjovL-3OO2e-7sPxqmGrXxNR2O8gDR5SoBpn-nop6k6whcLG5RatsoyypSJDn8_1p3wuRCUwpNrHFWfQmuY5FBq7CTDf7_Ky7uqJlwQbNdM4G8Be50VgO9_Eoh0YaewxmoBa84uVAwARaZTWKdAqnUQAVdEbkbfBY_bkEJoi5Q&h=ylossfsKXKqKQaW7vVovQnfk9OJzvnStRNPWqDPs2Ho cache-control: - no-cache content-length: - - '1998' + - '2055' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:35 GMT + - Thu, 10 Sep 2026 06:49:12 GMT expires: - '-1' pragma: @@ -1678,13 +1617,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/6d4c329c-c40b-4975-8137-a59e9fd38aa7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/edc8e6d7-8b87-4e71-85f1-b5ea76213a4f x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D052A71C5BD246A78FD911F303F116ED Ref B: BN1AA2051012019 Ref C: 2026-04-03T02:32:35Z' + - 'Ref A: E796F55A8D874718BCFAC94B2C8A7303 Ref B: SYD281080706034 Ref C: 2026-09-10T06:49:08Z' status: code: 201 message: Created @@ -1702,17 +1641,69 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-5b7ae501-2f05-11f1-91c7-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803560564891&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IIQZyGE0G3Qlv8xb-9804qDdxPP4_eHuUFpm20KX7qMwFmNn_UoB9cV9-eMj6cgdJVpysdJX6D0Ebyrpw0V5AG2MLIJdmINGRR-NbQ8J2473tSJ0SvTdeZQj5hrvZelLXTQDXDmrDNDCTR-nBC0euwcDVKSX3UHd5gEdPF_THCmh3KtCZH2Rd-yTBiqMPqHO6uRlno9ftxWT3TBf6riU5xqUbQIUXYOVc8IMF06U5_VU11F4tmcaZh7Lt9zNVe1uhT9V_9KLZe57uQ8FFEiEuGMHu2iUaOML7C2likWZDYkR1F6Pp-6GRzlofWYrA0E-4jUrW1hz3c0G5JscOz_3pA&h=WCIhyOcGv4PrAlT-YPHvP-OQveTZlbUUzf1jcHYI2QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b86db925-ace3-11f1-99eb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197524030396&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=KWimafqIVmZ5FqPa6T_lYT1soMZkjgAWWtbOjwjOxhBJxFsKinugXb_hJ8Tz9onOECz78NFh1rPn4hO_bDnVcTdIg8TaeMdJBb5L6KVZwm9D5QyCtspDMXxnNQPfLgEoZCrvqMbfnnY63ZiVTGAGZbsARrm4tahj12AwzOAT4H15QjovL-3OO2e-7sPxqmGrXxNR2O8gDR5SoBpn-nop6k6whcLG5RatsoyypSJDn8_1p3wuRCUwpNrHFWfQmuY5FBq7CTDf7_Ky7uqJlwQbNdM4G8Be50VgO9_Eoh0YaewxmoBa84uVAwARaZTWKdAqnUQAVdEbkbfBY_bkEJoi5Q&h=ylossfsKXKqKQaW7vVovQnfk9OJzvnStRNPWqDPs2Ho + response: + body: + string: '{"status":"Updating"}' + headers: + api-supported-versions: + - 2026-09-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b86db925-ace3-11f1-99eb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197532441655&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=QI4J2K08x7LEiVAJjeV07uX1vtIiUS8MM_vCAE7QmFqbUgdKYauL_d1Uwjy6hPgzWBQUc8KIwHWt1aCHXD0FKPtH9D4A-8GKxOjAQulNxTMWPMWyWpqyYKNAqcOmdnbO-cnVEeBmGjd_VXAeroTyOXDup60g-II9AeOk38raQTUxncO2SXKIzO0EjT45l9JxPv8wBRw0-v3b0Who-OSSod7qFbUZAi5e6VVLWW-xZ4yDi_nCtQdI0KNtboIjCiaBDIMyfqFo3XuOfFAHYsLdyvxfv7vGFKflk5_lo0x8bfLS9e4No0O1_YbduTBxXLmk9C_kQ80eM05AnobE5vgnPg&h=lJXVuLqG81KUkrcde8PQBQJGgl6zWDF9OBHIlpAdE1c + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:49:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0fc44a97-2aa2-48c4-b847-142550b98a18 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E95ABCD0F22F468A91D8380861AEBF11 Ref B: SYD281080710034 Ref C: 2026-09-10T06:49:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr identity assign + Connection: + - keep-alive + ParameterSetName: + - --name --identities + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b86db925-ace3-11f1-99eb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197524030396&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=KWimafqIVmZ5FqPa6T_lYT1soMZkjgAWWtbOjwjOxhBJxFsKinugXb_hJ8Tz9onOECz78NFh1rPn4hO_bDnVcTdIg8TaeMdJBb5L6KVZwm9D5QyCtspDMXxnNQPfLgEoZCrvqMbfnnY63ZiVTGAGZbsARrm4tahj12AwzOAT4H15QjovL-3OO2e-7sPxqmGrXxNR2O8gDR5SoBpn-nop6k6whcLG5RatsoyypSJDn8_1p3wuRCUwpNrHFWfQmuY5FBq7CTDf7_Ky7uqJlwQbNdM4G8Be50VgO9_Eoh0YaewxmoBa84uVAwARaZTWKdAqnUQAVdEbkbfBY_bkEJoi5Q&h=ylossfsKXKqKQaW7vVovQnfk9OJzvnStRNPWqDPs2Ho response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-5b7ae501-2f05-11f1-91c7-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803595427327&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=LA4rmoHv6wlcpbzJ3LQ9O1KBCybL4O_uPXkq01uRmJdnzF6yNyrq7QW3IK8XafTSLdABCeeJitxSON3moclzu-k-QyR_IDI2M1dXIn4DaP_DvwyHHAidjVJx6TYCftegFV0aeacma1y0i7qlEumDxALwhnJ4PS2Fhh3OBtCV-TrqeAWz0Mfp8ahYDlUh87hWLyqpVhMIMX2ZSdZwsvi5-S6jPTl4bZJZ0bLYjZ8FiAE6yGIVu7vCSNM_0RDF4gJQ6vdtLdm6GRvWrrv065nTv7fl9aIDEs3jqqmMW8Wsa6rbSaBfj0YifuMnfg_SZVj2lKO0mW-VZxTi9xBDo0Nv5w&h=snehRyV5a3UMY6TrOEGNFzwgN_XRYwD6jTkFQz6POOk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-b86db925-ace3-11f1-99eb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197643040399&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=NTgquSXOg5iPmF2h-dJpppg5NJueB4TvyEsDbslft90ACYVbe-EAPEAPvdoSL7f8PTwzs1PIEVA2SJdiFwf2TVreEq83g_zBKogVIQkWD47obLjZ7SSxrvNqzK4xotTOO1gtaSwDG5Hov5dFkNgUM9I4hGQBbBgJklbVmd8gePEod1PEyYJUUeqByq_Nt-33RCXic7J91iKd85LT5fHnQgS05krIUZ8ivoVS7AJORAas5gNtXa7LW7F5MH98tyvWFOR3c7Z9JFY4Yu5gg32edbKizIq3p-SLRhD3lxUBx1ymkldgvw7vpWnkboTrhAOEWJYUw2Bu3Y0tRWM--tx5TQ&h=RH1YXnsY8hX4jF1H7JNn2ULDUXzklackOuK0DFpUTaU cache-control: - no-cache content-length: @@ -1720,7 +1711,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:39 GMT + - Thu, 10 Sep 2026 06:49:23 GMT expires: - '-1' pragma: @@ -1732,11 +1723,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/e152a0a9-fc81-43b7-afac-148e9e71f9d4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/bc12d65e-7313-42e9-aae9-71c11c7cedf2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7884896807DF471C92A283389CC0E400 Ref B: BN1AA2051012039 Ref C: 2026-04-03T02:32:39Z' + - 'Ref A: 9964ECD7389A4BB8ABA9E2515DC87E99 Ref B: SYD281080709060 Ref C: 2026-09-10T06:49:24Z' status: code: 200 message: OK @@ -1754,23 +1745,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:35.4627489+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:35.7984529+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:35.7985126+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:12.2515938+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:12.2516482+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1999' + - '2056' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:41 GMT + - Thu, 10 Sep 2026 06:49:24 GMT expires: - '-1' pragma: @@ -1784,7 +1775,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A337A85EBD17421EA1B95557B4AB37AF Ref B: BN1AA2051015037 Ref C: 2026-04-03T02:32:41Z' + - 'Ref A: 88DA3304DA1F4296B353E0532FB713A9 Ref B: SYD281080707034 Ref C: 2026-09-10T06:49:25Z' status: code: 200 message: OK @@ -1802,22 +1793,21 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:35.4627489Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv7velr7dqw6acbztw2z77gkrqut2daah3lc4742zv4m7dpxjrwd7r3acyac2nwg3j/providers/Microsoft.ContainerRegistry/registries/testregysc3m6e6afvlx","name":"testregysc3m6e6afvlx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:20.5036465Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ContainerRegistry/registries/testreggdfu2vybmmjpi","name":"testreggdfu2vybmmjpi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity5uatbqkp":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:22.6789286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjtl7s7rzfzqcjwkhmhsianngtd2zgfscrp6a3i2lvdbtbtomwfwpjruzpu5glxeqs/providers/Microsoft.ContainerRegistry/registries/cliregaakdfi6tljaitd","name":"cliregaakdfi6tljaitd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:38.4115761Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:38.4115761Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddl5l6ilqrvgsanubtxofz7am4zytrs46e7hrc53gjknwswlevjoblnyomlzhre3a/providers/Microsoft.ContainerRegistry/registries/cliregorbundi3xsdzim","name":"cliregorbundi3xsdzim","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:50.5314797Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:50.5314797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '8914' + - '4914' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:53 GMT + - Thu, 10 Sep 2026 06:49:36 GMT expires: - '-1' pragma: @@ -1831,7 +1821,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 340A66DC38104868ACF59E07311F919C Ref B: BN1AA2051013031 Ref C: 2026-04-03T02:32:54Z' + - 'Ref A: 13F8840F597A4DF8AD533AB4D63E6DC0 Ref B: SYD281080711023 Ref C: 2026-09-10T06:49:36Z' status: code: 200 message: OK @@ -1849,23 +1839,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:35.4627489+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:35.7984529+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:35.7985126+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"type":"userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:11.9654918+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:12.2515938+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:12.2516482+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1999' + - '2056' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:56 GMT + - Thu, 10 Sep 2026 06:49:36 GMT expires: - '-1' pragma: @@ -1879,23 +1869,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9FCB8C71069B4A15955D07360B8F49CC Ref B: BN1AA2051014027 Ref C: 2026-04-03T02:32:56Z' + - 'Ref A: 9F5911FEB7144CE99FF7501B1092DECC Ref B: SYD281080705036 Ref C: 2026-09-10T06:49:37Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "identity": {"type": "None"}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, "networkRuleSet": - {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, - "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": - "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", - "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": - false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", - "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": []}, "policies": + {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": {"type": "Notary", + "status": "disabled"}, "retentionPolicy": {"days": 7, "status": "disabled"}, + "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": + "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": + "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": + "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": + "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -1906,31 +1897,31 @@ interactions: Connection: - keep-alive Content-Length: - - '969' + - '1030' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:59.6521086+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:59.8870124+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:59.8870866+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.3357405+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:38.4827014+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:38.4827556+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-69531ae2-2f05-11f1-9893-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803803240290&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=DIIFULdxyNDxB7zsbFY0eSMAqh-z9Zx7XINXK90Wr85jlY3QocBaXAjlrXT59mOyh9ZaI652B-L6O18DAD6tZVOPhTHB1RthyfqCNaK7y1mWqNAkp5TL2DdV3oaI75NOHajKw5mnaEpv14yksT13i1UEVM1akrS4ozddNO28o4oYkkcY9oYmSVznzUqWlReNwYbADgJx9NK0aaL9eQreBwjreIrKY1mNi7UduJ3D5bZ3vyHnOs8_xe2HIA3HFYnRxA5T3FRhliSgCZo2ieQSuR0F-bxB5n6L_4tNBmf4DLI4h4APFLcGIbxxtSInsUJrb9opzvqOWbE6BKv1_rxw_g&h=6-5-KPKDFFqxplodM97yYy7ZEv-q3n8MUC2v6aQlVJI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-c9f27663-ace3-11f1-a8de-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197786794959&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=lO8zQEbHEzYf4T0oO-G5gLSMZlFhcf5fQ6tNyhn_IDebHGUWD6THa8SED1Qkzqpz4dHCDtWSPfgwvxlP8s0pmeuyBQ49hmcaVTu5pZHSsUmal6awkK8t21_BAoGdSadFEHuJduinImZafdimTyKvVDvsu_x8McaSLfRcI_PMS5AFw7cLbL_2TcWs8xboclvMoDBEZwx5DQYfvC0OM2nWVNlnVmfwf8BD111ZREEoxGDHVv5SLryuYccEX14wLh7fB0Ma1jT4Fv1g5nRWDR2BdJTjAhu38kMfTxn_UP9WhcUBWagQLAMZFQkhXvygrAlPfrkGdQT9fBi3DCcM7XxwCg&h=BU_evDaXNSwoK25kLum6EqyHtUiCRXqluF1jAX9RmyE cache-control: - no-cache content-length: - - '1667' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:59 GMT + - Thu, 10 Sep 2026 06:49:38 GMT expires: - '-1' pragma: @@ -1942,13 +1933,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a9c65733-5387-4b8a-9bc9-7b72485b7fc8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f721c58a-abf6-4c1e-acfb-13f369f64f13 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5352FBFFE8304C0797784D01CA420BD5 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:32:59Z' + - 'Ref A: 9393EBD2F7DA49F1A1750349DA4E2274 Ref B: SYD281080712023 Ref C: 2026-09-10T06:49:38Z' status: code: 201 message: Created @@ -1966,17 +1957,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-69531ae2-2f05-11f1-9893-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803803240290&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=DIIFULdxyNDxB7zsbFY0eSMAqh-z9Zx7XINXK90Wr85jlY3QocBaXAjlrXT59mOyh9ZaI652B-L6O18DAD6tZVOPhTHB1RthyfqCNaK7y1mWqNAkp5TL2DdV3oaI75NOHajKw5mnaEpv14yksT13i1UEVM1akrS4ozddNO28o4oYkkcY9oYmSVznzUqWlReNwYbADgJx9NK0aaL9eQreBwjreIrKY1mNi7UduJ3D5bZ3vyHnOs8_xe2HIA3HFYnRxA5T3FRhliSgCZo2ieQSuR0F-bxB5n6L_4tNBmf4DLI4h4APFLcGIbxxtSInsUJrb9opzvqOWbE6BKv1_rxw_g&h=6-5-KPKDFFqxplodM97yYy7ZEv-q3n8MUC2v6aQlVJI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-c9f27663-ace3-11f1-a8de-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197786794959&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=lO8zQEbHEzYf4T0oO-G5gLSMZlFhcf5fQ6tNyhn_IDebHGUWD6THa8SED1Qkzqpz4dHCDtWSPfgwvxlP8s0pmeuyBQ49hmcaVTu5pZHSsUmal6awkK8t21_BAoGdSadFEHuJduinImZafdimTyKvVDvsu_x8McaSLfRcI_PMS5AFw7cLbL_2TcWs8xboclvMoDBEZwx5DQYfvC0OM2nWVNlnVmfwf8BD111ZREEoxGDHVv5SLryuYccEX14wLh7fB0Ma1jT4Fv1g5nRWDR2BdJTjAhu38kMfTxn_UP9WhcUBWagQLAMZFQkhXvygrAlPfrkGdQT9fBi3DCcM7XxwCg&h=BU_evDaXNSwoK25kLum6EqyHtUiCRXqluF1jAX9RmyE response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-69531ae2-2f05-11f1-9893-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803830117886&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=XRkFkl43t9zQ08TZ8JQEi9kKT8ZZTkuB09T8OkxGcUaImn047E0gMpS6x0UVGrUMr-7QPWKgzrjEGA9MR6AY-_KhRm5D0IOei14BdO7ENWn1FVB2D0GQVtc0zMES7nvc5B99M4NkmC-7Pvxv_UzEqSDR_6R1MFHn3Dw2syvQkOp9euxnAr25sX847Pi7iB18noTwfbIj6pQT-4lyt4TOeIZrA8VQ32BGp8LqdC_FyqOUs3iR988_qwFrGAbB8n1yj-xcBCa6Q_I3fiR6P-Cz_HSD7eMyJD_QOvoAI5KBWkifv-76gH0RCA8GQQJnYLKt8d903aBEZ7hfThj1eSf1CA&h=KZWtBjSCcDWX2rCSF5ndxwZHVkOCuwHd_xWbFWgeoUw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-c9f27663-ace3-11f1-a8de-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197795227285&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=JNENiAUfNHDqaliDJ6r_URpJG4b0qYef9kwrm4-1i0cudABYtheyb45KaUF7PyQSubO3vFwzVAi8yZgBVYbJ9-WzEbZZlfQkioeyy-Gn7fg6EWa8NYx-zajpSEuFvVo1AzzIJnGUDin5Q9INUZO4si26LeyFuBpR9Kw4e69uE-El6GcjyL7UK9IYTRXLeYkpvH94J9VrDGiqJ8v4peelh5vqY_5m5uecv-R0_N3HU4-jyfuPbeemimGfhyk7FW5xLC75Q7txi6U3r9th9o2GlPJaZyx39Or6N4oySK1I4izpghHAa2IbUZy5EDAih6_WQ-CawL92Dw-FULaCRdBjHQ&h=DoopgqjVo1ztTYULBUbHF1lBVPmU9AVX-qltbvShta8 cache-control: - no-cache content-length: @@ -1984,7 +1975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:02 GMT + - Thu, 10 Sep 2026 06:49:38 GMT expires: - '-1' pragma: @@ -1996,11 +1987,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/92295532-cbd8-4c3b-b43b-1d1b6d8f3c6c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b9e265b7-76b8-4a62-bbe6-5bc8fec38b1d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C728D3E2B4A84425BB6300B34FF440F4 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:33:02Z' + - 'Ref A: E907A794BBF446CAAF8CE53113C4AA37 Ref B: SYD281080711036 Ref C: 2026-09-10T06:49:39Z' status: code: 200 message: OK @@ -2018,23 +2009,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:59.6521086+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:59.8870124+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:59.8870866+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.3357405+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:38.4827014+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:38.4827556+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:05 GMT + - Thu, 10 Sep 2026 06:49:40 GMT expires: - '-1' pragma: @@ -2048,7 +2039,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F143C0D39857413DB73C2382276AE4BD Ref B: BN1AA2051012023 Ref C: 2026-04-03T02:33:05Z' + - 'Ref A: BFAEC09376B04E369DF14E6557501E3D Ref B: SYD281080711025 Ref C: 2026-09-10T06:49:40Z' status: code: 200 message: OK @@ -2066,22 +2057,21 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:59.6521086Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv7velr7dqw6acbztw2z77gkrqut2daah3lc4742zv4m7dpxjrwd7r3acyac2nwg3j/providers/Microsoft.ContainerRegistry/registries/testregysc3m6e6afvlx","name":"testregysc3m6e6afvlx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:20.5036465Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ContainerRegistry/registries/testreggdfu2vybmmjpi","name":"testreggdfu2vybmmjpi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity5uatbqkp":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:22.6789286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjtl7s7rzfzqcjwkhmhsianngtd2zgfscrp6a3i2lvdbtbtomwfwpjruzpu5glxeqs/providers/Microsoft.ContainerRegistry/registries/cliregaakdfi6tljaitd","name":"cliregaakdfi6tljaitd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:38.4115761Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:38.4115761Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv7velr7dqw6acbztw2z77gkrqut2daah3lc4742zv4m7dpxjrwd7r3acyac2nwg3j/providers/Microsoft.ContainerRegistry/registries/testreg2qhuhxgtbosyh","name":"testreg2qhuhxgtbosyh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:47.4406113Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:47.4406113Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.3357405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '9179' + - '3991' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:07 GMT + - Thu, 10 Sep 2026 06:49:41 GMT expires: - '-1' pragma: @@ -2095,7 +2085,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E7B63EDFE51243B4812F73C22D1DB462 Ref B: BN1AA2051014051 Ref C: 2026-04-03T02:33:07Z' + - 'Ref A: 237DD8EC33374892A7BB6AEF87B5CA39 Ref B: SYD281080708036 Ref C: 2026-09-10T06:49:41Z' status: code: 200 message: OK @@ -2113,23 +2103,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:59.6521086+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:59.8870124+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:59.8870866+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.3357405+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:38.4827014+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:38.4827556+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:09 GMT + - Thu, 10 Sep 2026 06:49:42 GMT expires: - '-1' pragma: @@ -2143,24 +2133,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 152E22A4F28C49EE90F0735D0DB5FAF1 Ref B: BN1AA2051013047 Ref C: 2026-04-03T02:33:09Z' + - 'Ref A: D007967253B6461CBC17CB9E2FC2BC34 Ref B: SYD281080710062 Ref C: 2026-09-10T06:49:42Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "location": "westus", "tags": {}, "properties": - {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "ipRules": - []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": - {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": - "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": + [], "ipRules": []}, "policies": {"quarantinePolicy": {"status": "disabled"}, + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 7, "status": "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": - "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure"}, - "identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}, "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": {}}}}' headers: Accept: @@ -2172,32 +2162,32 @@ interactions: Connection: - keep-alive Content-Length: - - '1190' + - '1251' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:12.8924795+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:13.3206849+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:13.3207621+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:44.1226769+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:44.4430575+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:44.4431293+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-71b6c1b4-2f05-11f1-a5ce-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803935956264&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=XKzBIsqKAMA944jpKMCpQoqiEtvUMYUtIS5XzyFngRaBEesiqIS0f4JRw94Iu_Myl8IBcLTiI54I8ke3kU5wVuec5b2jZP-R3Xb-_7khWacBR9KAA_HJh2WOQLSCZt7FlAQPscD_uYvVzd5bOT4V3PXPYZIljJJ6KxQgOea5TLnwEZcnGanCcL9JRcC9-s8iVb9vyXksCfLvaU6lFOd2EjwUA_iBMat2c1-kB9GPTiHsMGqrcm2hlk5jSeVcTjvuYYlz_6SL0tWQRy2uoLv4hDBSbsiv4NiDZ624TUIxdy2Hu6KdYJESVzcKDQbnslNCtGcs5T46UYMwKLgqr7CsNA&h=JlbuDixQ3X-VGrLdyMwl68xXKj-PTHw0GeWshCCuoLw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-cd02186f-ace3-11f1-99ae-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197846226729&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=stiW3oZ9YhUxghpRYE_Zy88hQlQu-gclfNZN2H3ZLHB7Wp3sehOK9RSaJKH8gHZDD_kEXbcfBys_RN9qs2cZLSXy9QSQHHVrnsFeaw0W-fuKQIWu2lMqHZ97u9uN6f_zdpI1jCGqll9z4uosind3DsZ_yUcc3geLRrlwrmC-GhiYqZn6nPi_Ej1KMtFZzAsRG9VUGqj_8o7SJqWaJcTcDfgFTh9nhyKhkybqT8kvW0CJH4kTi240qXLPYxr4ZJLsQsT9sKyc4bYwZ70otAujDYCMnUTO0O6csGWyQ3kAOjtoMep13UhwXHu5rprlBIX_dYQGEhiHv_GCqaIh2rjTeQ&h=wATdtY7WxOlOXqwZULao4wh1FcBRsW5bfJwleXtWolM cache-control: - no-cache content-length: - - '2117' + - '2174' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:13 GMT + - Thu, 10 Sep 2026 06:49:44 GMT expires: - '-1' pragma: @@ -2209,13 +2199,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/ff6249d8-65d9-4c3f-abbd-7cd3ea0ea418 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/67dbb583-dcb3-418c-a0cd-00bf6ff7a807 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F2E225D47A724E29BACDF1C55513BD76 Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:33:11Z' + - 'Ref A: 543BEF2469BB4D709F4A40C533D5C204 Ref B: SYD281080708031 Ref C: 2026-09-10T06:49:42Z' status: code: 201 message: Created @@ -2233,17 +2223,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-71b6c1b4-2f05-11f1-a5ce-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803935956264&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=XKzBIsqKAMA944jpKMCpQoqiEtvUMYUtIS5XzyFngRaBEesiqIS0f4JRw94Iu_Myl8IBcLTiI54I8ke3kU5wVuec5b2jZP-R3Xb-_7khWacBR9KAA_HJh2WOQLSCZt7FlAQPscD_uYvVzd5bOT4V3PXPYZIljJJ6KxQgOea5TLnwEZcnGanCcL9JRcC9-s8iVb9vyXksCfLvaU6lFOd2EjwUA_iBMat2c1-kB9GPTiHsMGqrcm2hlk5jSeVcTjvuYYlz_6SL0tWQRy2uoLv4hDBSbsiv4NiDZ624TUIxdy2Hu6KdYJESVzcKDQbnslNCtGcs5T46UYMwKLgqr7CsNA&h=JlbuDixQ3X-VGrLdyMwl68xXKj-PTHw0GeWshCCuoLw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-cd02186f-ace3-11f1-99ae-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197846226729&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=stiW3oZ9YhUxghpRYE_Zy88hQlQu-gclfNZN2H3ZLHB7Wp3sehOK9RSaJKH8gHZDD_kEXbcfBys_RN9qs2cZLSXy9QSQHHVrnsFeaw0W-fuKQIWu2lMqHZ97u9uN6f_zdpI1jCGqll9z4uosind3DsZ_yUcc3geLRrlwrmC-GhiYqZn6nPi_Ej1KMtFZzAsRG9VUGqj_8o7SJqWaJcTcDfgFTh9nhyKhkybqT8kvW0CJH4kTi240qXLPYxr4ZJLsQsT9sKyc4bYwZ70otAujDYCMnUTO0O6csGWyQ3kAOjtoMep13UhwXHu5rprlBIX_dYQGEhiHv_GCqaIh2rjTeQ&h=wATdtY7WxOlOXqwZULao4wh1FcBRsW5bfJwleXtWolM response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-71b6c1b4-2f05-11f1-a5ce-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107803957487550&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=OFBvbsGiHIR361zHkzTBbwodM7n-R-i2aeVhIFcJevOVvRFigWL6m9WYeVjjn98KZDqeZFiwOC9Iqty0BeoFqFps7bzEosS7kEY4VZiqQYNZwATyFmTuYjBXOaDF6Buk-dz47eMaadH4CXyD5oXt0eyPtT_UvBLXdUW4fyQQXDlvmh70hiIH7vUfhTpcxWLM6Bk2MCTca76QvPok2AHE_aTCkmDLm0ibJKv2iFiLOgi0HtKviC7fX8AmJHIkJHCmsUy927e2yDJuH0L5iUWQzceTr_ca_zBfjD9IOhz4TuTW7Perbj9YHIuxrI7g3XR_xEIGZ6XUM2O7wCZy07OjKQ&h=oY9aK98k-xgWSxp4K0ReZEqqXmMBPn4Xl9ZpIPAvcaU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-cd02186f-ace3-11f1-99ae-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197857146651&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=pIzIpZ6NTyyhtPBfDC84xeDQMl_IOGLyqahNucCXQJ0ZdWMq_c7CjqlYhk-RjdoYk8FrHkRrJZzpAEqUkRexQO401q8EjJDQG_lpCrSItswgUZ8mXmlbzbYgS54COFWBtrOJon05V_8DXJbDq2d_q-xzgSSzY2cmqsd86oksHJXxSn6TZ7Hs1_V15e4rjKiXBm3r_JFOF28sRO8D34ktB_D70L0PZ8FGg8LnZO81wJebP9EAISOWVmiGBwrYbh5zFEEOadyoIOD9u9CyAtytwBuRqsiV_7FxMLQZBh-itnlYkpgY8KDZTF4nKYAuO9iP90M4r9h_SuOz61t4De86OA&h=4zVBQwo-dbEWDfTuzizlcvNzKySwd8s0QIPkrraABn8 cache-control: - no-cache content-length: @@ -2251,7 +2241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:15 GMT + - Thu, 10 Sep 2026 06:49:45 GMT expires: - '-1' pragma: @@ -2263,11 +2253,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/01505e11-7b0a-44a4-9c53-2a25f1b4d949 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7147c9c9-14ed-4ce9-8692-987bda09d93b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D144790A22FA44438002A621605EC6E5 Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:33:15Z' + - 'Ref A: C0AE9C76C4304AD6848B32AA33FDBE15 Ref B: SYD281080706062 Ref C: 2026-09-10T06:49:45Z' status: code: 200 message: OK @@ -2285,24 +2275,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:12.8924795+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:13.3206849+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:13.3207621+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:44.1226769+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:44.4430575+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:44.4431293+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2118' + - '2175' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:16 GMT + - Thu, 10 Sep 2026 06:49:46 GMT expires: - '-1' pragma: @@ -2316,7 +2306,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 41B26766F82D49FAB85A11B729FCBF06 Ref B: BN1AA2051014031 Ref C: 2026-04-03T02:33:17Z' + - 'Ref A: 83F228419FE142BAB2455090397FDFA7 Ref B: SYD281080709031 Ref C: 2026-09-10T06:49:46Z' status: code: 200 message: OK @@ -2334,23 +2324,22 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:12.8924795Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ContainerRegistry/registries/testreggdfu2vybmmjpi","name":"testreggdfu2vybmmjpi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity5uatbqkp":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:07.9217333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:44.1226769Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '7245' + - '4441' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:28 GMT + - Thu, 10 Sep 2026 06:49:56 GMT expires: - '-1' pragma: @@ -2364,7 +2353,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 19B808E9C23444A287C503F61CCA92ED Ref B: BN1AA2051015019 Ref C: 2026-04-03T02:33:28Z' + - 'Ref A: 8AF66F2A0D464C97900B733322C3B0BF Ref B: SYD281080709040 Ref C: 2026-09-10T06:49:57Z' status: code: 200 message: OK @@ -2382,24 +2371,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:12.8924795+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:13.3206849+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:13.3207621+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:44.1226769+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:44.4430575+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:44.4431293+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2118' + - '2175' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:30 GMT + - Thu, 10 Sep 2026 06:49:57 GMT expires: - '-1' pragma: @@ -2413,7 +2402,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 068D403FCFA34FFA9C483E4C0D62BA84 Ref B: BN1AA2051015037 Ref C: 2026-04-03T02:33:30Z' + - 'Ref A: AA30A1D421F14894840F03EE17D9204B Ref B: SYD281080705042 Ref C: 2026-09-10T06:49:57Z' status: code: 200 message: OK @@ -2422,16 +2411,17 @@ interactions: "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003": {}}}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, - "networkRuleSet": {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, - "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": - "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", - "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": - false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", - "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": + []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": + {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": + "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": + "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": + "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": + "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -2442,32 +2432,32 @@ interactions: Connection: - keep-alive Content-Length: - - '1360' + - '1421' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"150bfd01-9b2b-4db4-afd6-98ed118e011a","clientId":"a65cf8c2-6c59-4778-97b3-2769874a90ca"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:32.2011527+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:32.4885767+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:32.4886847+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"d0f4e109-e9ef-420d-9cfb-4dd6b6e6f475","clientId":"1c949b73-0243-490c-980f-a6b2b1a4b690"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:58.7238645+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:59.047694+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:59.0477537+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-7eb0a060-2f05-11f1-89d9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804127167365&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=h381T5WBEe9TuK3oNGCVjN6tQBqtPkQvFQvu5hDkY7Re_5If_UuGbDNmuQXOmVOJ8hL0B_1CdVy68V8mBkisUHS73G2RroWr26m3_ovkjqCMXGslq7A_XvSh5doAIqt5DfEgpmNch3hYm0QcSu_QcB2oXurzgPjCwp0r96r3QlV9TfhiS2VRx0e5vCovOlsHVwZtZramawwuo1EEqPgUeV2bbVWzw44C_1TqNlzinn0vKx09eYzXeQ-iGmWNKyOTNXHxjMGqD2LqyQ84zsYQFgWA80WEI0OcAniIMLC_EMcGIPv5xPx2lU8gFcAbNKnuJ-_SC7Ev4PPEca_DK-VI7A&h=RQdLmIOHDgZDAtKjt_b37jlyUDUA11sHay3-6y9-TLQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-d68358e8-ace3-11f1-a0bb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197992083814&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=khvNz3g4VszeZdhWTxyUAR74FAv9-z0zjY7E0uEuhS1BQIAzI2RQ71lI865E1U3_OA3ftuPUe_YKaKmoYIr2wcz1eSpGr1d5tWGQvpFLA42zyjXpGxzc4ojUNjBhhGm39W2gZuVpoi8ifPAsZ1ZiRTosZwb4wepAg8hM0k6ipqew0CdWIOKv2YK11SU0CGMfH0yYyY4duMKtlzj-sHbNIxWwRZQO_J_-oIL8KLulPyGKi7N_Q1ekTjwEN7iUMVUuY5xevov-UgWwskF9F3P1dTexZHO_ktcHNpz4L9AKLaQO_GMdkj_VTbNgB8niS9324DCiLqHyYmD_zc9yhQ_2NQ&h=sA0MjNEeTsXZ85YSDYFlPENGXE6ki31sxrCG-EdG21I cache-control: - no-cache content-length: - - '2387' + - '2443' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:31 GMT + - Thu, 10 Sep 2026 06:49:59 GMT expires: - '-1' pragma: @@ -2479,13 +2469,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/2792b231-91d1-422f-b492-6a371b9e6c4b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/11a14f3f-013a-47b7-a15a-1043347ff129 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F2F6DB6D57B74C858ECA7F5F675E3D86 Ref B: BN1AA2051013053 Ref C: 2026-04-03T02:33:31Z' + - 'Ref A: 62E09740AC3D42D0B88013F18235E74E Ref B: SYD281080710031 Ref C: 2026-09-10T06:49:58Z' status: code: 201 message: Created @@ -2503,17 +2493,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-7eb0a060-2f05-11f1-89d9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804127167365&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=h381T5WBEe9TuK3oNGCVjN6tQBqtPkQvFQvu5hDkY7Re_5If_UuGbDNmuQXOmVOJ8hL0B_1CdVy68V8mBkisUHS73G2RroWr26m3_ovkjqCMXGslq7A_XvSh5doAIqt5DfEgpmNch3hYm0QcSu_QcB2oXurzgPjCwp0r96r3QlV9TfhiS2VRx0e5vCovOlsHVwZtZramawwuo1EEqPgUeV2bbVWzw44C_1TqNlzinn0vKx09eYzXeQ-iGmWNKyOTNXHxjMGqD2LqyQ84zsYQFgWA80WEI0OcAniIMLC_EMcGIPv5xPx2lU8gFcAbNKnuJ-_SC7Ev4PPEca_DK-VI7A&h=RQdLmIOHDgZDAtKjt_b37jlyUDUA11sHay3-6y9-TLQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-d68358e8-ace3-11f1-a0bb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197992083814&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=khvNz3g4VszeZdhWTxyUAR74FAv9-z0zjY7E0uEuhS1BQIAzI2RQ71lI865E1U3_OA3ftuPUe_YKaKmoYIr2wcz1eSpGr1d5tWGQvpFLA42zyjXpGxzc4ojUNjBhhGm39W2gZuVpoi8ifPAsZ1ZiRTosZwb4wepAg8hM0k6ipqew0CdWIOKv2YK11SU0CGMfH0yYyY4duMKtlzj-sHbNIxWwRZQO_J_-oIL8KLulPyGKi7N_Q1ekTjwEN7iUMVUuY5xevov-UgWwskF9F3P1dTexZHO_ktcHNpz4L9AKLaQO_GMdkj_VTbNgB8niS9324DCiLqHyYmD_zc9yhQ_2NQ&h=sA0MjNEeTsXZ85YSDYFlPENGXE6ki31sxrCG-EdG21I response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-7eb0a060-2f05-11f1-89d9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804142327607&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=D8HXRHbnWaJJ0xI24iiXICW9lvOfyzdiIvmj5X3rZ5VyPWZyYkihIOyvZv-ZxVQze3oYKBFXLFBOfZ6k-ckRMqWKC87b4uZmSXXy8C3joWKx1A14SVFHy8DtTVzrTS_jp9MQTlY05ZHuh8OUf3REW8O_yVixFQtscxA1hKXwrJqYN2KQcJW05c4wfCGBOGYXsNjhuOvF2GB-p74v0pZ8oxJ7lPvseFqipHEZ43NucW3NupG5gxVyw9u9X0fP00maoSKq4Banh1sOPrLM5Vio3idA1nrrs0sp1kce-mMJssRb0zzuALE609KvbKYcgOzHf1HvfkC214GU3OMcrAq77w&h=IV8MKOKvVJaZk0Y0e-J-l2jcw7tj6L0mo8WtuJ9sHAI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-d68358e8-ace3-11f1-a0bb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197999696619&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=eT1L1YkCrZtXrfj60ih-d_EoBICZLmoER63WCqgHZanl6BM1wiavRNuHsF2BOnqIw9rVItrTDQDf0tUYnrlVhreiCEsakHlz7TNKWHewgmSYXg7dbZCktK0wfVsAP8w3-VPOS5COThJ3RQUGvwv5ggzBUUw0KG9x847YPD4wfDKxkV2CtX6HvAQMONcaRTZasKLrPUlvLGGUbg67eXNJglCrMAJQJe3PT82YYZE0LO36GJklugobga_J1vSVeWddiUI7inXf5gUo4Oye9ZMmy-_EY2qE5L7IX99ZyYLAeGNvxIXB80xRBZ59hqymKSGAdEnLfvUTffMQ7r7ukqVPoA&h=eAfrDFVh3qn2d2146gD2ZMFi4_FGDBVaqdzy7SmNDpo cache-control: - no-cache content-length: @@ -2521,7 +2511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:33 GMT + - Thu, 10 Sep 2026 06:49:59 GMT expires: - '-1' pragma: @@ -2533,11 +2523,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b388fe0b-5e2c-4379-a5cd-5f113c892af8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f98430d3-4c9f-42f3-8493-44c83452832b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 21EE93A639C748248CF179F57A8BBBEB Ref B: BN1AA2051014023 Ref C: 2026-04-03T02:33:34Z' + - 'Ref A: 42241214F3C946E7A26F216E0D98287F Ref B: SYD281080707023 Ref C: 2026-09-10T06:49:59Z' status: code: 200 message: OK @@ -2555,24 +2545,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"150bfd01-9b2b-4db4-afd6-98ed118e011a","clientId":"a65cf8c2-6c59-4778-97b3-2769874a90ca"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:32.2011527+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:32.4885767+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:32.4886847+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"d0f4e109-e9ef-420d-9cfb-4dd6b6e6f475","clientId":"1c949b73-0243-490c-980f-a6b2b1a4b690"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:58.7238645+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:59.047694+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:59.0477537+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2388' + - '2444' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:35 GMT + - Thu, 10 Sep 2026 06:50:00 GMT expires: - '-1' pragma: @@ -2586,7 +2576,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E1843E7C96BB40EA8C7D2D136CAE33D8 Ref B: BN1AA2051015023 Ref C: 2026-04-03T02:33:35Z' + - 'Ref A: C35F98846B6D492EAC5B18FD9014B55E Ref B: SYD281080709034 Ref C: 2026-09-10T06:50:00Z' status: code: 200 message: OK @@ -2604,23 +2594,22 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"150bfd01-9b2b-4db4-afd6-98ed118e011a","clientId":"a65cf8c2-6c59-4778-97b3-2769874a90ca"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:32.2011527Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"d0f4e109-e9ef-420d-9cfb-4dd6b6e6f475","clientId":"1c949b73-0243-490c-980f-a6b2b1a4b690"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:58.7238645Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '6527' + - '4711' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:46 GMT + - Thu, 10 Sep 2026 06:50:11 GMT expires: - '-1' pragma: @@ -2634,7 +2623,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0F7F8A3C77FF4B19AB5E60C06AFB99E6 Ref B: BN1AA2051015009 Ref C: 2026-04-03T02:33:47Z' + - 'Ref A: 992688FCB18E484187F8C0193C3D6E90 Ref B: SYD281080707052 Ref C: 2026-09-10T06:50:11Z' status: code: 200 message: OK @@ -2652,24 +2641,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"150bfd01-9b2b-4db4-afd6-98ed118e011a","clientId":"a65cf8c2-6c59-4778-97b3-2769874a90ca"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:32.2011527+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:32.4885767+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:32.4886847+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2000003":{"principalId":"d0f4e109-e9ef-420d-9cfb-4dd6b6e6f475","clientId":"1c949b73-0243-490c-980f-a6b2b1a4b690"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:58.7238645+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:59.047694+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:59.0477537+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2388' + - '2444' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:48 GMT + - Thu, 10 Sep 2026 06:50:11 GMT expires: - '-1' pragma: @@ -2683,7 +2672,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E56FF263EC524D87B6F1F1D72FD69288 Ref B: BN1AA2051014049 Ref C: 2026-04-03T02:33:48Z' + - 'Ref A: 5808A98BEDD240628159DC90A1CB857D Ref B: SYD281080711060 Ref C: 2026-09-10T06:50:12Z' status: code: 200 message: OK @@ -2691,16 +2680,17 @@ interactions: body: '{"sku": {"name": "Premium"}, "identity": {"type": "systemAssigned, userAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002": {}}}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, - "networkRuleSet": {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, - "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": - "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", - "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": - false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", - "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + "networkRuleSet": {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": + []}, "policies": {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": + {"type": "Notary", "status": "disabled"}, "retentionPolicy": {"days": 7, "status": + "disabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": + "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": + "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": + "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -2711,32 +2701,32 @@ interactions: Connection: - keep-alive Content-Length: - - '1190' + - '1251' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:50.2444718+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:50.7376184+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:50.7376726+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:13.1781568+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:13.8124715+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:13.8125365+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-89918862-2f05-11f1-9ddc-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804310101473&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=gK-Jg4UMpV1VMrxX9fbAn8J4zDiEIdZuEVQP1MbgrkqaX4PtMhDtbs51oZaue6wc9zIfQZLq-CmbbmyM8nbM2VbsVyTUcNyyJB962MqkmfN7ETVJckPMALIXi2j8wOEIZKk3A8hz3ZPhPhbk_8DEnP0Vsw1LLJqZWe7aeZ0bMuO8_3D1CJLTRtV8fk4jMyarIDUyJfvC304yfhn8clCzdvLJBmKgGYpDDzDmNynIGOevbxwaGjOTjtOCyiyipoXMlMRgtA0ekuKNUvht4ya6iI1Y26VzOelHdvjRXeuubHp-O-Wpo9JYdk-jyIdSzKctrkwzoGM85Q_xTgRt0iiT7w&h=9_R-pLh6x3WesPykq8Y0n182BzEZdQas88igPpDNgGM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-dee90ec3-ace3-11f1-a8b3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198140532146&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=SlaEu69RywivgpU-FATI3_XUBCJg1qw_22vUeyc1J9t2JK5culS3MYrqZUUgeJWss07J9VVOpZTQcyQ3sF5HgEbjsMuGp8LA1vffIqQUd3ddOvltnJRo1BtvTnoZ-a9yz0uMGmL8NwhM1Iht5Xxw2m3Pu0OAL60EZeFLV2AzAo3P0ulhKBJjz6PSDyhW3r6i30Exxwa6bW7gEmDnGwW4qtTu1b2K-uIBGlEVTr4dmx4cLE6ANfOz7Y0GU3DgmaJQmxiBK9oiiZd6uoESd8hlygy5ntbk7IJRoQFwVOBXnihT9J1TXTXO5pqR_CrQxfVsnb5gOvr6buLHdozL8Q7zCw&h=xdmEomOyMxMurmglb1WdVtEP8wsCR49kCeCh-YWjUKE cache-control: - no-cache content-length: - - '2117' + - '2174' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:50 GMT + - Thu, 10 Sep 2026 06:50:13 GMT expires: - '-1' pragma: @@ -2748,13 +2738,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/6b77d9bf-d56b-430c-a434-7b969d294232 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1ddca44d-8ba9-43f4-ab8f-b58d1cf83b58 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 544F3ACA85094E77B7A558E445209A41 Ref B: BN1AA2051014019 Ref C: 2026-04-03T02:33:49Z' + - 'Ref A: BD3D296B9DFC45A5A5DEA2ABFCF4C1E5 Ref B: SYD281080706062 Ref C: 2026-09-10T06:50:12Z' status: code: 201 message: Created @@ -2772,17 +2762,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-89918862-2f05-11f1-9ddc-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804310101473&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=gK-Jg4UMpV1VMrxX9fbAn8J4zDiEIdZuEVQP1MbgrkqaX4PtMhDtbs51oZaue6wc9zIfQZLq-CmbbmyM8nbM2VbsVyTUcNyyJB962MqkmfN7ETVJckPMALIXi2j8wOEIZKk3A8hz3ZPhPhbk_8DEnP0Vsw1LLJqZWe7aeZ0bMuO8_3D1CJLTRtV8fk4jMyarIDUyJfvC304yfhn8clCzdvLJBmKgGYpDDzDmNynIGOevbxwaGjOTjtOCyiyipoXMlMRgtA0ekuKNUvht4ya6iI1Y26VzOelHdvjRXeuubHp-O-Wpo9JYdk-jyIdSzKctrkwzoGM85Q_xTgRt0iiT7w&h=9_R-pLh6x3WesPykq8Y0n182BzEZdQas88igPpDNgGM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-dee90ec3-ace3-11f1-a8b3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198140532146&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=SlaEu69RywivgpU-FATI3_XUBCJg1qw_22vUeyc1J9t2JK5culS3MYrqZUUgeJWss07J9VVOpZTQcyQ3sF5HgEbjsMuGp8LA1vffIqQUd3ddOvltnJRo1BtvTnoZ-a9yz0uMGmL8NwhM1Iht5Xxw2m3Pu0OAL60EZeFLV2AzAo3P0ulhKBJjz6PSDyhW3r6i30Exxwa6bW7gEmDnGwW4qtTu1b2K-uIBGlEVTr4dmx4cLE6ANfOz7Y0GU3DgmaJQmxiBK9oiiZd6uoESd8hlygy5ntbk7IJRoQFwVOBXnihT9J1TXTXO5pqR_CrQxfVsnb5gOvr6buLHdozL8Q7zCw&h=xdmEomOyMxMurmglb1WdVtEP8wsCR49kCeCh-YWjUKE response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-89918862-2f05-11f1-9ddc-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804324745449&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Uak7svaq-QSfXKOwYsOrnHouEGLQ0FIQRCBW8bFjwgEmOtK_B5pBVgO8XbpkOH_h2bhe13_dVAN1Awgxv27V0UynGzx1B86JMsSAFLHREG5y8c6GYfEcxuPZcuJ-aLb87beoYrsC6MKJ5NlHTjQaNlAEUa3vPapOU7LQ5p-t1npTbz2S3jGLZNx6bD7dcf0fbwwiVyfKWNbHWxeIAZvUUwowz4G5QuHsU_OvWdKQsXp8rM9TsCLUszRr9AAhJKZBKyz61ehdDXfKVdIfHdgsYU4LnUb2t_bus9RNgFUDZiTn-vgL2QKN0YkLOXIZhusbNIzcGP8G6H7COG893La4zQ&h=45mChOPEeCpk0f0_eekRZmLwY7Y3JTbI1RwwF6ZhAms + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-dee90ec3-ace3-11f1-a8b3-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198147295608&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=iY_H3xmZpr68wuaTHg2CiqtxKuBUgFBS0dvmLjxIHRQfvmcGxNlplTMSUAtyYlAB3QlBSRTwW9ljThFv1nf1n9_1abg2_sVrpMXrrvpoCddTtyTaxFuO4wYU9if9gurvmF2Rj8rdhg7meplOxZRhQWX8uTH1nhPEcsRTGI_0-OwXKsUhjlqT4gd9KXzb4nfk4WeCsDU_SVRuYxlZMnb2n2mko-aOYkkNd_IYy2OuzqDfBJ4ce_F8NX8Xj2wFujDL4YoQQwmX-mL9lvhCp5oS3DSJyNdi2z_RcyEiFo4KlzRkVNOoktC90i7FXP7fRUQRfnY3X3ZqF3K4vb1KDBFUaQ&h=5hzVYkkIk_0sacAi9FfVcaZY-_hvn16cL8QIOCAhezk cache-control: - no-cache content-length: @@ -2790,7 +2780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:52 GMT + - Thu, 10 Sep 2026 06:50:14 GMT expires: - '-1' pragma: @@ -2802,11 +2792,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a0cd9c06-7742-4063-a05f-49c89e4b1776 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/35cf760d-b608-40ad-b312-65a3e892aa66 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C882084399AC4E05AE2D07E0AD46842D Ref B: BN1AA2051012045 Ref C: 2026-04-03T02:33:52Z' + - 'Ref A: D03DA6B275634DEEA4D2AD08A530C2F6 Ref B: SYD281080710031 Ref C: 2026-09-10T06:50:14Z' status: code: 200 message: OK @@ -2824,24 +2814,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:50.2444718+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:50.7376184+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:50.7376726+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:13.1781568+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:13.8124715+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:13.8125365+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2118' + - '2175' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:53 GMT + - Thu, 10 Sep 2026 06:50:14 GMT expires: - '-1' pragma: @@ -2855,7 +2845,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0E59A0FB1AE84343997735A3D6EE5694 Ref B: BN1AA2051013035 Ref C: 2026-04-03T02:33:53Z' + - 'Ref A: 7B5A896D644B4BFB97E6CA61DB8872C6 Ref B: SYD281080709040 Ref C: 2026-09-10T06:50:15Z' status: code: 200 message: OK @@ -2873,23 +2863,22 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:50.2444718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:13.1781568Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '5661' + - '4441' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:54 GMT + - Thu, 10 Sep 2026 06:50:16 GMT expires: - '-1' pragma: @@ -2903,7 +2892,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B9DE38977424456EB52696F6F07ED5D8 Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:33:55Z' + - 'Ref A: C6B5764E051849C0A8753654BE116D85 Ref B: SYD281080706052 Ref C: 2026-09-10T06:50:16Z' status: code: 200 message: OK @@ -2921,24 +2910,24 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:50.2444718+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:50.7376184+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:50.7376726+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity000002":{"principalId":"fb56fd74-85bc-4a2f-9861-3147100d4f0f","clientId":"b96243d9-5ed0-4c3b-9ac9-bf0ccbc0c3bb"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:13.1781568+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:13.8124715+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:13.8125365+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '2118' + - '2175' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:56 GMT + - Thu, 10 Sep 2026 06:50:16 GMT expires: - '-1' pragma: @@ -2952,23 +2941,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B2B1EE13F7D044258ACD139E2408B6CE Ref B: BN1AA2051014045 Ref C: 2026-04-03T02:33:57Z' + - 'Ref A: BDA0047EB21043FE9C7F7587DA29FEEB Ref B: SYD281080709062 Ref C: 2026-09-10T06:50:16Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "identity": {"type": "SystemAssigned"}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, "networkRuleSet": - {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, - "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": - "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", - "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": - false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", - "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": []}, "policies": + {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": {"type": "Notary", + "status": "disabled"}, "retentionPolicy": {"days": 7, "status": "disabled"}, + "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": + "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": + "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": + "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": + "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -2979,31 +2969,31 @@ interactions: Connection: - keep-alive Content-Length: - - '979' + - '1040' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:59.2223191+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:59.5637682+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:59.5638697+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:18.1310443+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:19.3448864+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:19.3449367+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-8e799027-2f05-11f1-aa98-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804397535745&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=hBD1_OT5WOSBW1F9TxjVORtRgVarGzQ-s71hRux1yC3RvTMEOnwB80D3Qeim158XzehF6Ud7AvYZBWluOrTjGmHIv00g8su5OkPaESMjXqpWub_m6iWU8E2modH0VijT3bOUknSAeTdd_OjA8a0melJ064j-LvNCHZUAOWTDnsTX1NhnXMHpzUVFcGM4SE9ETlF3T-zMZyXj71RV1gXMJKbhNjtaMXfZNbpd_iS1kA0ToL4UoGMUmSDaExGJdZuQIXzSLBRFa7z74YugjIqsci01mBqV4venO6h-wPBzwjQCFMOnYuV9c7IxRfwSjTuBQjS0pAbbgDQtdjKq94ihCg&h=bS6CWFsSdeyuPDCMH283o6vn_gG9AQdfU0saqLiotro + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e1ce7850-ace3-11f1-b85a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198207531072&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=H0NbnSnJ2nC4sYj2gdw6UrVOglKW2NPBRf48Y-DlB7JNT7aojSyIxTWdrqXxbsX4N6qn9wDOBI-vwYN6-roLRaMGdXSgnEj-UQ8s2dD5bYWcbKRVmpE27OQlQqMxoQ_5VAcKMYh2ZQTGEk8qCkiCMa_Xr9KmUitV-4XtKSZcaMVWwf0i_bY3UNAaRTFWJ_9eFLSPY3h5RFEkqYv92vQHBhtby-IBh9gZYPlm-K5g-y0tjexuvHQs_uzaaW-Rjv5qyNNP3p_Ytv8qvJNpCRAKkMxrs5AZ6X4qPmimgJuegrLpj0pPCBy0ZCi6FOs3s5mRw3grBZQ_wNXZSlg8tSvmyw&h=krn9MoXnNcPFJtQwVVzOGkXGtMpntRtHFh6VcwUKJZ4 cache-control: - no-cache content-length: - - '1807' + - '1864' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:59 GMT + - Thu, 10 Sep 2026 06:50:20 GMT expires: - '-1' pragma: @@ -3015,13 +3005,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5da52168-fbe7-40d2-a01a-c923d2e34f56 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/df5d8da3-b6c5-4deb-b8f6-e16d18d3de5e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E615FECA6C5F4802B3ACA8612C3BC72C Ref B: BN1AA2051014035 Ref C: 2026-04-03T02:33:58Z' + - 'Ref A: 4E06673E9AA5409AB849AF7B6A5C2E44 Ref B: SYD281080710034 Ref C: 2026-09-10T06:50:17Z' status: code: 201 message: Created @@ -3039,17 +3029,17 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-8e799027-2f05-11f1-aa98-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804397535745&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=hBD1_OT5WOSBW1F9TxjVORtRgVarGzQ-s71hRux1yC3RvTMEOnwB80D3Qeim158XzehF6Ud7AvYZBWluOrTjGmHIv00g8su5OkPaESMjXqpWub_m6iWU8E2modH0VijT3bOUknSAeTdd_OjA8a0melJ064j-LvNCHZUAOWTDnsTX1NhnXMHpzUVFcGM4SE9ETlF3T-zMZyXj71RV1gXMJKbhNjtaMXfZNbpd_iS1kA0ToL4UoGMUmSDaExGJdZuQIXzSLBRFa7z74YugjIqsci01mBqV4venO6h-wPBzwjQCFMOnYuV9c7IxRfwSjTuBQjS0pAbbgDQtdjKq94ihCg&h=bS6CWFsSdeyuPDCMH283o6vn_gG9AQdfU0saqLiotro + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e1ce7850-ace3-11f1-b85a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198207531072&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=H0NbnSnJ2nC4sYj2gdw6UrVOglKW2NPBRf48Y-DlB7JNT7aojSyIxTWdrqXxbsX4N6qn9wDOBI-vwYN6-roLRaMGdXSgnEj-UQ8s2dD5bYWcbKRVmpE27OQlQqMxoQ_5VAcKMYh2ZQTGEk8qCkiCMa_Xr9KmUitV-4XtKSZcaMVWwf0i_bY3UNAaRTFWJ_9eFLSPY3h5RFEkqYv92vQHBhtby-IBh9gZYPlm-K5g-y0tjexuvHQs_uzaaW-Rjv5qyNNP3p_Ytv8qvJNpCRAKkMxrs5AZ6X4qPmimgJuegrLpj0pPCBy0ZCi6FOs3s5mRw3grBZQ_wNXZSlg8tSvmyw&h=krn9MoXnNcPFJtQwVVzOGkXGtMpntRtHFh6VcwUKJZ4 response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-8e799027-2f05-11f1-aa98-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804415960633&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=RambCC3blYLomEbPcNXfIkB9jEgSlgvasa78IyHym3dZxT0fjuCJBMu_XFYe63ZEbWwDKk2STt8vj5wkb8YpYhvTHsvEoyR_po4pK5DbQCwHZwVAo2axGChU7qg_poApi2Ye-u1tumWrlyKCT8oZ6ipg0WfLbvrwcRC3Vayi6NOtHcGxHCl0Mzv3Q476UxmIJTCPTbOiN-sXVtpqwBsbYEtL9ihe-CIHOWhU3CvxT7fPFft5F7qzpol-Q8MkcpPlghUZUIRpBbCRFW8K-1OQy5jVl8ws3jijkjCjNoov_HGlWadjtvaplou0Rp9-Vq-igyuq0Zn9GPfFDwDDaRWicw&h=R6L_9eDZ_zPUG3wHDcS4CLNfMR8uNbLN5Y7B_RqTObw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e1ce7850-ace3-11f1-b85a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198214496147&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=s4ePOY5Czx8DfRLjg7g-a2RXF-9y5R7dQs7MwAzE9MfqofzRijpbDwzv12tVrbR9SNvf_f8GKOLpSjsZUbIWkvChUov2b1hPx_u2cFpFiI0Xts-tTI_N6fqKjCOK-qAz6pCRmt68bIR46vqnjO_gA_7GNb1Pyx3UIycSVlyAmmkvoL0ZHhCnAJ1AHhjfAzLf04L64feZruSMF3cRIOMXVRUQbQX7f1qV8AwZGsymGO7U76gCbOKNl0LFvnzdPKGERX15KMDbS_B0RelGCAq6coQhCU7RQuQQpyM0S-c72oPEVfnTkwz3eZstQ-yKmnoc6hH6qftU37wBvVEda_iwsQ&h=wjAMPPAfChSNjrpEzh1cN2UrEhuAIleDtP-FS16ipyw cache-control: - no-cache content-length: @@ -3057,7 +3047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:01 GMT + - Thu, 10 Sep 2026 06:50:20 GMT expires: - '-1' pragma: @@ -3069,11 +3059,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/43b5cc8f-bf2a-416e-8879-a5214372e298 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7d9c6e00-9909-49c5-8127-0b11e4ebcd19 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2E7AF6C8683442F983F582AF10AD1582 Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:34:01Z' + - 'Ref A: B8282B0639014083958B263883FD0A94 Ref B: SYD281080711054 Ref C: 2026-09-10T06:50:21Z' status: code: 200 message: OK @@ -3091,23 +3081,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:59.2223191+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:59.5637682+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:59.5638697+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:18.1310443+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:19.3448864+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:19.3449367+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1808' + - '1865' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:02 GMT + - Thu, 10 Sep 2026 06:50:21 GMT expires: - '-1' pragma: @@ -3121,7 +3111,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D0FA968B146F456F8F2B70A08100D172 Ref B: BN1AA2051014051 Ref C: 2026-04-03T02:34:03Z' + - 'Ref A: AD4CDE9FE45942E097F20018377F3BC2 Ref B: SYD281080710054 Ref C: 2026-09-10T06:50:21Z' status: code: 200 message: OK @@ -3139,22 +3129,21 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:59.2223191Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:18.1310443Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyz6smhi45risb5dwipvezh57waznfkynrizw7hienjgok2gxf5rb5tyn5mm3o7xz/providers/Microsoft.ContainerRegistry/registries/testregmpztbyovrdju3","name":"testregmpztbyovrdju3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792Z"}}]}' headers: cache-control: - no-cache content-length: - - '5351' + - '4131' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:05 GMT + - Thu, 10 Sep 2026 06:50:23 GMT expires: - '-1' pragma: @@ -3168,7 +3157,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 99A2F73EAC3A4803B59C89AFF1D1155C Ref B: BN1AA2051012025 Ref C: 2026-04-03T02:34:05Z' + - 'Ref A: 72E2E979FF92449D9A24C61ECE57A2CB Ref B: SYD281080709029 Ref C: 2026-09-10T06:50:22Z' status: code: 200 message: OK @@ -3186,23 +3175,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"8bfcb850-f58e-469f-acad-2475493d209a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:33:59.2223191+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:33:59.5637682+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:33:59.5638697+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"3f72d744-54ce-4cb4-9a45-e310284245fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:18.1310443+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:19.3448864+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:19.3449367+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1808' + - '1865' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:08 GMT + - Thu, 10 Sep 2026 06:50:22 GMT expires: - '-1' pragma: @@ -3216,23 +3205,24 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6033504A31564BB09089626D46DCD245 Ref B: BN1AA2051012025 Ref C: 2026-04-03T02:34:08Z' + - 'Ref A: A83A1E451E2846E0B127185E92256647 Ref B: SYD281080712034 Ref C: 2026-09-10T06:50:23Z' status: code: 200 message: OK - request: body: '{"sku": {"name": "Premium"}, "identity": {"type": "None"}, "location": "westus", "tags": {}, "properties": {"adminUserEnabled": false, "networkRuleSet": - {"defaultAction": "Allow", "ipRules": []}, "policies": {"quarantinePolicy": - {"status": "disabled"}, "trustPolicy": {"type": "Notary", "status": "disabled"}, - "retentionPolicy": {"days": 7, "status": "disabled"}, "exportPolicy": {"status": - "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": - {"retentionDays": 7, "status": "disabled"}}, "encryption": {"status": "disabled"}, - "dataEndpointEnabled": false, "regionalEndpoints": "Disabled", "endpointProtocol": - "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": "AzureServices", - "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": "Disabled", "anonymousPullEnabled": - false, "metadataSearch": "Disabled", "roleAssignmentMode": "LegacyRegistryPermissions", - "autoGeneratedDomainNameLabelScope": "Unsecure"}}' + {"defaultAction": "Allow", "virtualNetworkRules": [], "ipRules": []}, "policies": + {"quarantinePolicy": {"status": "disabled"}, "trustPolicy": {"type": "Notary", + "status": "disabled"}, "retentionPolicy": {"days": 7, "status": "disabled"}, + "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": + "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}, + "encryption": {"status": "disabled"}, "dataEndpointEnabled": false, "regionalEndpoints": + "Disabled", "endpointProtocol": "IPv4", "publicNetworkAccess": "Enabled", "networkRuleBypassOptions": + "AzureServices", "networkRuleBypassAllowedForTasks": false, "zoneRedundancy": + "Disabled", "anonymousPullEnabled": false, "metadataSearch": "Disabled", "roleAssignmentMode": + "LegacyRegistryPermissions", "autoGeneratedDomainNameLabelScope": "Unsecure", + "writableCacheRepos": "Disabled"}}' headers: Accept: - application/json @@ -3243,31 +3233,31 @@ interactions: Connection: - keep-alive Content-Length: - - '969' + - '1030' Content-Type: - application/json ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:34:11.4584043+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:34:12.1063835+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:34:12.106455+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:24.260223+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:24.7829989+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:24.7830586+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-943f0d15-2f05-11f1-8069-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804523334158&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=fNynfq4A5baefsZ5KxnUXs7pjMyKF-bVi1bPnQHwvG1kvJ76FR5yEVz9j6tr1JvXJq8XFdkfOqF7LqvPc_P7KgrTcDV8J0IbxkLF0jnTyNsQevNrL-6-JJ5zB2Dl2mrSd3Z2yzJIQbaGYfIkQ6V0PNhxeChfXY7LuxHeek9Buudb5Fv9yQBs7QF6ImEjxUIGlDmtwoo94asfXEQDofjN-y2V0X9vhIUFmxZHj8hCI13xVhjXGmkAk9pmrbBXEqgJnFpOEPEOjqUUovOQUhTbjBJAYgwhS9TFvJ0kvah0XM_e7e784uJR1mquk_KZ0qorM5GILJdzTxBVFrTL256wmA&h=bKtNGVtkbHariskS4WAe9tHaZArwrPIPT46ykDQA11M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e5cae8a3-ace3-11f1-b141-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198251196215&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=trFIjGYv6tuuiiEdXmQq_Pa0-otqfreoobNrPzUMw-MQZYZJdbuVYlvoHnnZCMNHutLEB9iZUbP9oEkhW30keZ7-fYPzm2E-ULxWon4M7JedvSCVr4gRVa-IdzgYC0TcaKXYSI_HGflp8X4Qmj_71DcKNdxqdrP4Mi_9-XCm2MfZRJOGNlmYM827t7O0iUHui_t0GUBEaMGhGYUxhyFd3zFre4OT2qaVO8pHaSiCjAlt6VnIuLw99zRVUi1lfC22J4G918OVpHpMajmBGn9yH1CPI_rMzm1mkZ0I9U5mOFlP0bhv6Ox7Xh5m_UN3stGU5gsGwLmmzSFX0iechOFVOQ&h=TKRsjZ16SdSL-M7fzSyNkFqm2ECnXEAcaPkDwFpwX14 cache-control: - no-cache content-length: - - '1666' + - '1723' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:11 GMT + - Thu, 10 Sep 2026 06:50:24 GMT expires: - '-1' pragma: @@ -3279,13 +3269,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/423df79c-9706-40cb-a62b-ba8ea6520ea2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/212aca4a-1bbf-4ea9-82b3-3755d988ff20 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4B0E9869D68B4900945EDA8C1059D84E Ref B: BN1AA2051013023 Ref C: 2026-04-03T02:34:11Z' + - 'Ref A: D049218A9AD5417BBFA5AF6AD8ADF646 Ref B: SYD281080706052 Ref C: 2026-09-10T06:50:24Z' status: code: 201 message: Created @@ -3303,17 +3293,69 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e5cae8a3-ace3-11f1-b141-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198251196215&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=trFIjGYv6tuuiiEdXmQq_Pa0-otqfreoobNrPzUMw-MQZYZJdbuVYlvoHnnZCMNHutLEB9iZUbP9oEkhW30keZ7-fYPzm2E-ULxWon4M7JedvSCVr4gRVa-IdzgYC0TcaKXYSI_HGflp8X4Qmj_71DcKNdxqdrP4Mi_9-XCm2MfZRJOGNlmYM827t7O0iUHui_t0GUBEaMGhGYUxhyFd3zFre4OT2qaVO8pHaSiCjAlt6VnIuLw99zRVUi1lfC22J4G918OVpHpMajmBGn9yH1CPI_rMzm1mkZ0I9U5mOFlP0bhv6Ox7Xh5m_UN3stGU5gsGwLmmzSFX0iechOFVOQ&h=TKRsjZ16SdSL-M7fzSyNkFqm2ECnXEAcaPkDwFpwX14 + response: + body: + string: '{"status":"Updating"}' + headers: + api-supported-versions: + - 2026-09-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e5cae8a3-ace3-11f1-b141-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198258120186&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=egJC5q-3P566YOznzDg0llPxhHdU8UpbLfhhEEtc6KVrmEOvOHjhniGYOFgGkZ552WpW38u5csZxIHffLC5R2JvqVl1-GPmG6fxdyiDalAIFgiT1cT8t01kV8L4C9rSH6ZSizBvl-Pa4Wd7iQuVOUmCr2-AR0gabRrytK35GpcBBpJ23SmASKSVrAjyv7R0oVKxYuTI25OzndZ92m0KaXaBYPiXgBZHBAvxkhM6BQvfbnr5G7E3lgr8VDjTf4qfHrHSNmdtpmImjjsyGmXRd5QCvJQQM46G7Ks3VZwmzrwo5OcZ7T_QYvwEVNEu6Dg74TPfrIC4AO0UuAukJCX5YFQ&h=0NxXaZsRCmHLCb6idcsLovuPD78cKQGV4UQkKOA_1-g + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:50:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/848c29c6-f01a-4bc6-97a6-df7f6ea7a277 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E87C766A36004F9A9EB3C8D40257A8AD Ref B: SYD281080705060 Ref C: 2026-09-10T06:50:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr identity remove + Connection: + - keep-alive + ParameterSetName: + - --name --identities + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-943f0d15-2f05-11f1-8069-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804523334158&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=fNynfq4A5baefsZ5KxnUXs7pjMyKF-bVi1bPnQHwvG1kvJ76FR5yEVz9j6tr1JvXJq8XFdkfOqF7LqvPc_P7KgrTcDV8J0IbxkLF0jnTyNsQevNrL-6-JJ5zB2Dl2mrSd3Z2yzJIQbaGYfIkQ6V0PNhxeChfXY7LuxHeek9Buudb5Fv9yQBs7QF6ImEjxUIGlDmtwoo94asfXEQDofjN-y2V0X9vhIUFmxZHj8hCI13xVhjXGmkAk9pmrbBXEqgJnFpOEPEOjqUUovOQUhTbjBJAYgwhS9TFvJ0kvah0XM_e7e784uJR1mquk_KZ0qorM5GILJdzTxBVFrTL256wmA&h=bKtNGVtkbHariskS4WAe9tHaZArwrPIPT46ykDQA11M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e5cae8a3-ace3-11f1-b141-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198251196215&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=trFIjGYv6tuuiiEdXmQq_Pa0-otqfreoobNrPzUMw-MQZYZJdbuVYlvoHnnZCMNHutLEB9iZUbP9oEkhW30keZ7-fYPzm2E-ULxWon4M7JedvSCVr4gRVa-IdzgYC0TcaKXYSI_HGflp8X4Qmj_71DcKNdxqdrP4Mi_9-XCm2MfZRJOGNlmYM827t7O0iUHui_t0GUBEaMGhGYUxhyFd3zFre4OT2qaVO8pHaSiCjAlt6VnIuLw99zRVUi1lfC22J4G918OVpHpMajmBGn9yH1CPI_rMzm1mkZ0I9U5mOFlP0bhv6Ox7Xh5m_UN3stGU5gsGwLmmzSFX0iechOFVOQ&h=TKRsjZ16SdSL-M7fzSyNkFqm2ECnXEAcaPkDwFpwX14 response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-943f0d15-2f05-11f1-8069-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107804549238431&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Ug9o1nfeCNbMy96JjcABaJRMh6oWM2Q9UecOmJCFaY5Gh8OXM_b5jNHXBkjI2ASqJEa2If3splJGruIS9pSO14FYHTqsEt-ElV1dFltfLR3riidjtBEB41gNs5_ddWnjoEpdciX_c74600e9ydMx-t-Z8yFkWTNXpuOF4ypssne5NBaomJddUCA1AMQ-sYIbpGu7dEmKbZZFQCprE97O67AaXXUf6TZnoNI03TLara0AfaajNHiiSbZIYoeaC2Z0GVeIKUIfsG7PJDqIbLF2USFSNya588md2FZujNYOLq3tO-HDGSrIB1DDwxH6E3e4lObk0ZRFyJdDv6vlZ_pVoQ&h=1dYXYtiEPh7hKOXhgoMXzF0kFzDDBDSQy6oOn2qM7qQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004/operationStatuses/registries-e5cae8a3-ace3-11f1-b141-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198365091173&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=BO6Y9S5Y5gH7naQI4Cwbx1MHEz3ppTiqPUOjvclfYPmDuQYp82hdc0X3SHi2on6l-Il1QL3Bmy-F4B623HLymfbRqfHhdv--jxKsp8Ij4seu86oCgmh5Z6tWghxFj7hJ6edj8h-DwI5k74DQRJJnkR_cPbjNxMgLX5HNnfJioXZ2U7EM9bPO0gnwf7GhY9G0EFpEQjamhBafnXLs8brf9Sjad2QTJZcH6nYgH-0rLTImxgvkTgI4Y7VWk5si5QBqbwkfOVcv03L0UwLaq045Fz1PDoTFc49PCMfCHbYY9YY4HMnS-JB5rrCK9u4EzCmjDbPZKl2y7NR6lf_K10W33g&h=wkL3w5hvfDJhpSggJ_F1eCVgbU28b6YnmkwQ53wBYvk cache-control: - no-cache content-length: @@ -3321,7 +3363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:14 GMT + - Thu, 10 Sep 2026 06:50:35 GMT expires: - '-1' pragma: @@ -3333,11 +3375,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b34c1f69-3be0-4762-adfa-3f4d3a08d1cf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6db16f73-2b4c-495e-bbac-cb38099eaf1b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5E64C8AD07CF4D0C8A83EC51155E171D Ref B: BN1AA2051014053 Ref C: 2026-04-03T02:34:14Z' + - 'Ref A: A56204BEADAD42DA98E309F63FC9E736 Ref B: SYD281080712054 Ref C: 2026-09-10T06:50:36Z' status: code: 200 message: OK @@ -3355,23 +3397,23 @@ interactions: ParameterSetName: - --name --identities User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:34:11.4584043+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-04-03T02:29:44.2701934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:34:12.1063835+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:34:12.106455+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000004","name":"testreg000004","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:03.0282382+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:24.260223+00:00"},"properties":{"loginServer":"testreg000004.azurecr.io","creationDate":"2026-09-10T06:48:03.0282382Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:50:24.7829989+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:50:24.7830586+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1667' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:16 GMT + - Thu, 10 Sep 2026 06:50:36 GMT expires: - '-1' pragma: @@ -3385,7 +3427,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 516A6296745D42C7B065BDD7E9AC2B12 Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:34:16Z' + - 'Ref A: 3A4A38AC182445679BEEC72BF6163CF5 Ref B: SYD281080708023 Ref C: 2026-09-10T06:50:36Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_no_wait.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_no_wait.yaml index 5b01eb72f44..11a8398af5e 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_no_wait.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_no_wait.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - -n -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resourcegroupsamesub?api-version=2024-11-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:37 GMT + - Thu, 10 Sep 2026 06:46:25 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F7BEAA8CC9E140DC807FC28FA114DC10 Ref B: BN1AA2051013035 Ref C: 2026-04-03T02:29:37Z' + - 'Ref A: A887BC9BA11C434B90FA0D59565FF6BF Ref B: SYD281080709023 Ref C: 2026-09-10T06:46:24Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1660' + - '1692' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:50 GMT + - Thu, 10 Sep 2026 06:46:33 GMT expires: - '-1' pragma: @@ -98,13 +98,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c02fd749-b9fb-4cd6-b893-e1bbdda8baa9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9e94dcdc-25b2-4fa4-8930-c6419b0d1888 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 69318A33D57F400E81FBE7436F5ED703 Ref B: BN1AA2051012037 Ref C: 2026-04-03T02:29:43Z' + - 'Ref A: 1C03105DC3934313AB85305E554167B4 Ref B: SYD281080706040 Ref C: 2026-09-10T06:46:25Z' status: code: 200 message: OK @@ -122,22 +122,21 @@ interactions: ParameterSetName: - -n -r --source --no-wait User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:49.5242554Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.1288554Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:42.4933257Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.5401873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.829285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","name":"cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}}]}' headers: cache-control: - no-cache content-length: - - '10038' + - '2845' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:55 GMT + - Thu, 10 Sep 2026 06:46:35 GMT expires: - '-1' pragma: @@ -151,7 +150,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B050A5E836FE41898D284D2CF7A67562 Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:29:55Z' + - 'Ref A: A96056F02D824D18BBEC02EB2CD2A4CF Ref B: SYD281080706023 Ref C: 2026-09-10T06:46:35Z' status: code: 200 message: OK @@ -169,23 +168,23 @@ interactions: ParameterSetName: - -n -r --source --no-wait User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1660' + - '1692' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:00 GMT + - Thu, 10 Sep 2026 06:46:35 GMT expires: - '-1' pragma: @@ -199,7 +198,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 19F1827CD677437497765C7DAFAF3091 Ref B: BN1AA2051013011 Ref C: 2026-04-03T02:29:59Z' + - 'Ref A: D11ECA69D44E4F96B79F0FC32F5BFA26 Ref B: SYD281080711054 Ref C: 2026-09-10T06:46:36Z' status: code: 200 message: OK @@ -223,9 +222,9 @@ interactions: ParameterSetName: - -n -r --source --no-wait User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -236,17 +235,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:30:04 GMT + - Thu, 10 Sep 2026 06:46:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-fdc731ea-2f04-11f1-9fb6-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802046996047&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=eA53ijPP2E_KOnDmrPdj1USbj42p2Nyu3BGKWYwoJhDolRaAJIo0yQdeskclMSDZF4eHkNt81qJRRGczEYEHmI-BoXmnFtmFkQIVkSTbkO4wKfnxa4tlHzJskeo34F9l8ULjhu-N7fein72xondPASUk9pPkNyBF4pNZ7K3rpJ5omdM6AyLWCa3UDGvec_Q-DRWtPwJ5Be_ZjfYppVPtqUknspEranp9zVVzHpwefx1qUQOKM4X2_UYnk1-TbzAvVYTiQD30OWi3-CNM8jixnWH6YOrBhw3bv8k4519-sRyhpaaMMv-BKy34Evh4vwZhSz-ifdWNFscBjxpxFyFMzw&h=ssO3rl3ioq_cFqgQjEMHYF-6oiptILiM5snisHGnzh8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-5e2758fd-ace3-11f1-aa8b-3cefa50a58cc?api-version=2026-09-01-preview&t=639246195974661402&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=xVl5d109WUfdz2E3lqNiPlM0pECdhsgEzYx_oQw23-agwUXroQID9xeEPWULOF_ZdCDf4L7jaeYDxR27On8iKWZZmfZo33NJgvxfZEL5W0dvXqDzawhG3c8W60CQZddc9QlMVHQgSQsGNLZ1XTEJqsxB5oIs1R5RdVaOVW9dr4b0i7RujStjLsudscNqK9oM0lYOqdMtl4I9QfIB361DYHf1R5ijIdMrMVaNhzp8MZT0qr5NJLnhjPrjkSLFLfm5RxZYeazMtEDWtO8fz6KgToMVH4pcv5QNxsk0QrzHsjwiPDQUSMe4goT_fjgw04ZJXlTHJkIY1JYIrDToerwmVg&h=yg1WAK3Mqs2gIFVx6aAprWCVemsvb-QtthTODseK5go pragma: - no-cache strict-transport-security: @@ -256,13 +255,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/8ed652bc-295d-4162-9040-25f295de8124 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7f260d41-a28a-4478-8a0e-603fe2b473e5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3008A9A028A34EBE96CF58EF028881C5 Ref B: BN1AA2051012053 Ref C: 2026-04-03T02:30:04Z' + - 'Ref A: 135D85AE5607464D9095B04A0BC8A31E Ref B: SYD281080708060 Ref C: 2026-09-10T06:46:37Z' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_with_regional_endpoints.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_with_regional_endpoints.yaml index 6b8b5c43c09..b7230874473 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_with_regional_endpoints.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_import_with_regional_endpoints.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-04-03T02:22:59.8740795Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915148+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915586+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-09-10T06:52:18.4428879Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205605+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205961+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1737' + - '1794' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:07 GMT + - Thu, 10 Sep 2026 06:52:21 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/e5f23c1b-c677-4c62-9394-ffa3a62155df + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/aa93d4cf-b34d-43e9-8341-bb59e9463c1c x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: 4A5964297A2F4C2592CC53A2C5FFEB8E Ref B: BN1AA2051014027 Ref C: 2026-04-03T02:22:59Z' + - 'Ref A: F053F052D32C4F70BA33D644CA431163 Ref B: SYD281080712062 Ref C: 2026-09-10T06:52:16Z' status: code: 200 message: OK @@ -70,22 +70,21 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_tp22rkwyqzlbvoarvk3ovl3aefo6ajtqw5ejljtzaqcombixoqrdvcdliuwk/providers/Microsoft.ContainerRegistry/registries/clitestred3okgpw","name":"clitestred3okgpw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.1856717Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:00.1856717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testregtdx3rarwoyys4","name":"testregtdx3rarwoyys4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:22.0823646Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6dkjfpzmcae4zxrmcxb5st7xm4zjexxafrglpfiisdzigqp3uvtnvhrcr5eizkt7m/providers/Microsoft.ContainerRegistry/registries/testreg2634uyiivsmnn","name":"testreg2634uyiivsmnn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:37.7034045Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:37.7034045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg655cu3gaqkh7glauf2faegro7zr7yrps7a5dzoh52gbxjl7u7jeaelbw6wjn27hpg/providers/Microsoft.ContainerRegistry/registries/testregyqmmvcqby7hmh","name":"testregyqmmvcqby7hmh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:52.1487214Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgui2huuotyid4pgxjjq5mm5knas2welbxiohh45ubnot4vu5faaiyexkeztiaa2hbr/providers/Microsoft.ContainerRegistry/registries/cliregcnwdlscspobgwj","name":"cliregcnwdlscspobgwj","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:09.3613522Z"}}]}' headers: cache-control: - no-cache content-length: - - '5235' + - '5804' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:09 GMT + - Thu, 10 Sep 2026 06:52:21 GMT expires: - '-1' pragma: @@ -99,7 +98,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C8477C4965634DCE818136ED9A588D05 Ref B: BN1AA2051015025 Ref C: 2026-04-03T02:23:09Z' + - 'Ref A: BA981E68C56447BA8507DD365FD885F7 Ref B: SYD281080708062 Ref C: 2026-09-10T06:52:21Z' status: code: 200 message: OK @@ -117,23 +116,23 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-04-03T02:22:59.8740795Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915148+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915586+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-09-10T06:52:18.4428879Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205605+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205961+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1737' + - '1794' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:10 GMT + - Thu, 10 Sep 2026 06:52:22 GMT expires: - '-1' pragma: @@ -147,7 +146,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CA4A629BC435453B938E1EE3F3A59FFE Ref B: BN1AA2051015033 Ref C: 2026-04-03T02:23:11Z' + - 'Ref A: A1A00C9392214AAA9D076C58BA8B9892 Ref B: SYD281080706036 Ref C: 2026-09-10T06:52:22Z' status: code: 200 message: OK @@ -171,9 +170,9 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -184,17 +183,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:12 GMT + - Thu, 10 Sep 2026 06:52:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-0d4f2d6e-2f04-11f1-aae9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797929644042&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=oKFBl_Ya6sZzPtj41PRccyjCU3mwTz5IZpmLRehDmmBRjKXOgWvjlZbdAcW5mPrqwJRqNY7--hleEypAZSL6zus2-Pn9qhKvsPyeKJQf3LuEaqcfHC_H_nAbQb6h_ch829lyUYP3iH6U5WS2XzzdE8YcF2kQexGK1J406AP6dVD14W93n8DccfOBTEfj2GElTse5umzjbmJTGjKYn8e8nWXC8BvxI1_WvG9VNnEhSEkqDOQpNMyWam9n0Wlb5XrvPZasgIlbeRJcYZniGaXEzQDCS7fupTH7l4wP9r9xZ9xuZCTVI3XgR6PCbW8aKmu2KWt2c2McLleuXFBqwXfHKw&h=yZjrBWcLim0UsMYbSwX2pnBjvX0oJqMwMIg-6Kt7OAk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-2cbd60f6-ace4-11f1-ba67-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199438537316&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=KNpqcfGRIhl4XwgpftOVNZkg0Fj9WhFfWF67DQAZvMnR5a-UAzNAXAwFSrQMhguw5nxYdSmGS4RkGaZ5VZAXGsmZg44UGklB8JKKo_rxY73PYRstb9newANswF6BHWkQPHtl_ll3m8l_BizfqBqAFLvgS0A-vV5a8zgAYg8odNbP1pzxOstgrg8GpQ2it4D1MbghvqbLLZ8Ay9ANqATZZ74hvBc8FMvDa9qrbO0EXN62mo4tgT_ZHor8yQqs6AA3Q2GAi7I28HDE2ecXXJs6jpFTDmZQ0czCRfne6APjNshdhnso0Ole2BFlbSR2n8wZQoe7pfO2m9aZbjXcnJb58g&h=tC5kvrg-gXFqZOXs327n5t3-L0jTJ-94ue1RTBaH1Ug pragma: - no-cache strict-transport-security: @@ -204,13 +203,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/4c792997-3dcb-43ac-8008-19efe7046455 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c6d784f3-b0ae-4ef9-a75c-2702650de5d3 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 7EF66440EE10405DA36A8CBF77974141 Ref B: BN1AA2051015037 Ref C: 2026-04-03T02:23:12Z' + - 'Ref A: 2EF763E7BB434918B296CA911CA98AA1 Ref B: SYD281080711034 Ref C: 2026-09-10T06:52:23Z' status: code: 202 message: Accepted @@ -228,9 +227,9 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-0d4f2d6e-2f04-11f1-aae9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797929644042&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=oKFBl_Ya6sZzPtj41PRccyjCU3mwTz5IZpmLRehDmmBRjKXOgWvjlZbdAcW5mPrqwJRqNY7--hleEypAZSL6zus2-Pn9qhKvsPyeKJQf3LuEaqcfHC_H_nAbQb6h_ch829lyUYP3iH6U5WS2XzzdE8YcF2kQexGK1J406AP6dVD14W93n8DccfOBTEfj2GElTse5umzjbmJTGjKYn8e8nWXC8BvxI1_WvG9VNnEhSEkqDOQpNMyWam9n0Wlb5XrvPZasgIlbeRJcYZniGaXEzQDCS7fupTH7l4wP9r9xZ9xuZCTVI3XgR6PCbW8aKmu2KWt2c2McLleuXFBqwXfHKw&h=yZjrBWcLim0UsMYbSwX2pnBjvX0oJqMwMIg-6Kt7OAk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-2cbd60f6-ace4-11f1-ba67-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199438537316&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=KNpqcfGRIhl4XwgpftOVNZkg0Fj9WhFfWF67DQAZvMnR5a-UAzNAXAwFSrQMhguw5nxYdSmGS4RkGaZ5VZAXGsmZg44UGklB8JKKo_rxY73PYRstb9newANswF6BHWkQPHtl_ll3m8l_BizfqBqAFLvgS0A-vV5a8zgAYg8odNbP1pzxOstgrg8GpQ2it4D1MbghvqbLLZ8Ay9ANqATZZ74hvBc8FMvDa9qrbO0EXN62mo4tgT_ZHor8yQqs6AA3Q2GAi7I28HDE2ecXXJs6jpFTDmZQ0czCRfne6APjNshdhnso0Ole2BFlbSR2n8wZQoe7pfO2m9aZbjXcnJb58g&h=tC5kvrg-gXFqZOXs327n5t3-L0jTJ-94ue1RTBaH1Ug response: body: string: '{"microsoft:azure-cli":"Pending","status":"Accepted"}' @@ -242,11 +241,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:14 GMT + - Thu, 10 Sep 2026 06:52:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-0d4f2d6e-2f04-11f1-aae9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797951889609&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=GeVxxV85RzhWIfuWUbdkLurP3wbdqHCz0gDwMuhwV_O-rmwbt85wGyW7_E7rF3Pk7J_NVjr9SyJ-v7vv_BiaUvsQ0xXnTTWNlpgm90kCk9pBuY6hw0KG4C_MXftbew5QA6uWqkEPR7I-jaQe_Q-mLZkEabZz7Qv4-vGgCIc9-aiIELb88KkYmaZ3-PYGachVDh6Vwc7JyE5Riwvb6XBVRo5B8bCC9balBnvmOXsOLnvWJfGrdpXj7BHvrUQrQxOktIXTByuvR3isazHATlpjhMRJ-T3Xp2SjgYYs0UmtaVQyGf3fSC6guUxZF94-YUN0Q8SpUOH03rQyvt1_Sf07pQ&h=YfaCrqLp5L7k4NQ-ENaOwm-4rV_F8uuaAgUJbmXStg8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-2cbd60f6-ace4-11f1-ba67-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199448782201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=cicL8HRNYB6AjxJmMS6JxjFOq2kLJjKMl_06Jw1ArgDwbdsLsX80crQQnaBlmfYl8FuV5XjjQfGDQJ5zqbipGLkoPZLr5tZFe2RFAybw7m_bT6Wd-qD_68wP60bjAMaXkybXcIT5UUjC0Cy5BDyCkJDSFlvEfUxmVp7ZwKokxLqB-zXOlct0Ehd5AtjqasVzwnm-5dCe0JWk3AwpPMnvzRovrvDYdHNB7gscZGKuuKmLhwc3rN07SzyeClRJe-oRA4ru7odTdOMSevxVsElZpGNZbV7XBgJryubUI5IQ0uVQlbQkOG-ygEnsK3gl3wZm1yj_CwK-ng11NU6uECAKUg&h=TVbft5Y-AW9d6bX05y16mcZ9hqoZxAzHCHXf6ZTmFDY pragma: - no-cache strict-transport-security: @@ -256,11 +255,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/032fe3ca-464b-474d-a637-786fd199ff66 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/2d0442e0-371f-41f6-8b15-dda07a6a4762 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9675EF989A194D7EA8A5F5EC65786C0E Ref B: BN1AA2051015025 Ref C: 2026-04-03T02:23:14Z' + - 'Ref A: 58F8480D57164411954084CD2EF7D713 Ref B: SYD281080708029 Ref C: 2026-09-10T06:52:24Z' status: code: 202 message: Accepted @@ -278,9 +277,9 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-0d4f2d6e-2f04-11f1-aae9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797951889609&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=GeVxxV85RzhWIfuWUbdkLurP3wbdqHCz0gDwMuhwV_O-rmwbt85wGyW7_E7rF3Pk7J_NVjr9SyJ-v7vv_BiaUvsQ0xXnTTWNlpgm90kCk9pBuY6hw0KG4C_MXftbew5QA6uWqkEPR7I-jaQe_Q-mLZkEabZz7Qv4-vGgCIc9-aiIELb88KkYmaZ3-PYGachVDh6Vwc7JyE5Riwvb6XBVRo5B8bCC9balBnvmOXsOLnvWJfGrdpXj7BHvrUQrQxOktIXTByuvR3isazHATlpjhMRJ-T3Xp2SjgYYs0UmtaVQyGf3fSC6guUxZF94-YUN0Q8SpUOH03rQyvt1_Sf07pQ&h=YfaCrqLp5L7k4NQ-ENaOwm-4rV_F8uuaAgUJbmXStg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-2cbd60f6-ace4-11f1-ba67-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199448782201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=cicL8HRNYB6AjxJmMS6JxjFOq2kLJjKMl_06Jw1ArgDwbdsLsX80crQQnaBlmfYl8FuV5XjjQfGDQJ5zqbipGLkoPZLr5tZFe2RFAybw7m_bT6Wd-qD_68wP60bjAMaXkybXcIT5UUjC0Cy5BDyCkJDSFlvEfUxmVp7ZwKokxLqB-zXOlct0Ehd5AtjqasVzwnm-5dCe0JWk3AwpPMnvzRovrvDYdHNB7gscZGKuuKmLhwc3rN07SzyeClRJe-oRA4ru7odTdOMSevxVsElZpGNZbV7XBgJryubUI5IQ0uVQlbQkOG-ygEnsK3gl3wZm1yj_CwK-ng11NU6uECAKUg&h=TVbft5Y-AW9d6bX05y16mcZ9hqoZxAzHCHXf6ZTmFDY response: body: string: '{"status":"Succeeded"}' @@ -292,7 +291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:26 GMT + - Thu, 10 Sep 2026 06:52:36 GMT expires: - '-1' pragma: @@ -304,11 +303,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/b61f7659-672f-4c99-8238-87131de88c47 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/0d64a6b7-11e7-4a73-8c7f-f5818bf84e68 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D0FDAB6FB2FD47E4AC349A8E81F03D8E Ref B: BN1AA2051012019 Ref C: 2026-04-03T02:23:26Z' + - 'Ref A: 06E309CEA4F6417E8A65381D38042D9F Ref B: SYD281080711025 Ref C: 2026-09-10T06:52:35Z' status: code: 200 message: OK @@ -331,23 +330,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T02:23:30.2467994Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387514+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T06:52:37.5842741Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1640' + - '1672' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:42 GMT + - Thu, 10 Sep 2026 06:52:44 GMT expires: - '-1' pragma: @@ -359,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/a6c25e2b-a62d-4bf6-8e9f-d9c9d0b10906 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f1ac9d70-1dc8-4731-95c0-05451043f9a3 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: CF76B23FBCD6486F8DF600E0DD183025 Ref B: BN1AA2051013033 Ref C: 2026-04-03T02:23:29Z' + - 'Ref A: D5BA56EEF1824A7FA4AE7BA46F46EDBF Ref B: SYD281080711042 Ref C: 2026-09-10T06:52:37Z' status: code: 200 message: OK @@ -383,22 +382,21 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg655cu3gaqkh7glauf2faegro7zr7yrps7a5dzoh52gbxjl7u7jeaelbw6wjn27hpg/providers/Microsoft.ContainerRegistry/registries/testregyqmmvcqby7hmh","name":"testregyqmmvcqby7hmh","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:52.1487214Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgui2huuotyid4pgxjjq5mm5knas2welbxiohh45ubnot4vu5faaiyexkeztiaa2hbr/providers/Microsoft.ContainerRegistry/registries/cliregcnwdlscspobgwj","name":"cliregcnwdlscspobgwj","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:09.3613522Z"}}]}' headers: cache-control: - no-cache content-length: - - '5191' + - '5156' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:43 GMT + - Thu, 10 Sep 2026 06:52:45 GMT expires: - '-1' pragma: @@ -412,7 +410,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 141442C6DACC4EEB98A1456C30A05A1E Ref B: BN1AA2051012025 Ref C: 2026-04-03T02:23:43Z' + - 'Ref A: EBFA1294BE1747878315FE0A093BC6C8 Ref B: SYD281080708054 Ref C: 2026-09-10T06:52:45Z' status: code: 200 message: OK @@ -430,23 +428,23 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T02:23:30.2467994Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387514+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T06:52:37.5842741Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1640' + - '1672' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:44 GMT + - Thu, 10 Sep 2026 06:52:46 GMT expires: - '-1' pragma: @@ -460,7 +458,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9141156ABF6341E997162240C684A74F Ref B: BN1AA2051014045 Ref C: 2026-04-03T02:23:45Z' + - 'Ref A: 77D7879182504FECA995E9674562D560 Ref B: SYD281080712052 Ref C: 2026-09-10T06:52:46Z' status: code: 200 message: OK @@ -478,22 +476,21 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-04-03T02:22:59.8740795Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915148+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915586+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T02:23:30.2467994Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387514+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-09-10T06:52:18.4428879Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205605+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205961+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T06:52:37.5842741Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504+00:00"},"properties":{"loginServer":"cliregfckivn52alvx7u.azurecr.io","creationDate":"2026-09-10T06:44:17.4380504Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:19.6260655+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:19.6261047+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"cliregtvuvqhf6pqchnl.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["cliregtvuvqhf6pqchnl.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '15769' + - '12296' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:46 GMT + - Thu, 10 Sep 2026 06:52:47 GMT expires: - '-1' pragma: @@ -509,11 +506,10 @@ interactions: - '' - '' - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8B7527C2F1EE4DEAB9B483F451B7FDC8 Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:23:46Z' + - 'Ref A: E989FF97492F4CB9A0D23BFDBFE436CE Ref B: SYD281080707062 Ref C: 2026-09-10T06:52:47Z' status: code: 200 message: OK @@ -536,9 +532,9 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -549,17 +545,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:48 GMT + - Thu, 10 Sep 2026 06:52:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-21f44f2b-2f04-11f1-a9cb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798286274608&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=dzy_ARe7kID39SAttHBZUNZl2MOe4Zzlk-j6_QebP8qeHvvm1U9KmHMmdusj3LtrmOC_mUYoGL9uxMXhRr_MlmIAXxGfPi_Q2dI5MA5TI4imVwIqSqBnshKyuOrsP5byVWQy3T-XSbw94fXMWJyklOQbJl7ZZIxTd7qBHvq4JGLOEnZNY_-EMif5AFcr1QrKa6xGz1z9bMyK6uZA7Chqa2WaPN-pmncL5Vu5M2Swmrh3AZeD7A1WQj1Yt4lRVuCiVJlLMM07Qqn7J2TZeH4rsoy3D7ksQg6mWXdE_Gtr7O5_PTNJ4oDVzjcD2c8A6OYNR880XuA44WaZ3rAGAimdsw&h=7C7XgmNCbEEKYtt9_tNUBIcfS2UV7m5w7qKuiQQEU-Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-3ad5a86e-ace4-11f1-b462-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199691648587&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=U2_cm5B2c5qbFYf-dVqd7TFFg8cmaVwxjzmxCaEgDN0jDQekZBDBjcy23E1FFOI4EqN1_jc2rD0U367_bMkDstbpeVxN5rL6Wscxm0MCgM-QsnRJxmzPk07V6EkrxElMapT2K-5x05qn5V-1JvLEmklmPQxSzChjqOiOzfFKqeaoLIVSDasW8hzvklj0N5TUAKUzH_lwFh_lLdPAEYrbGr89QVkqqvnfo5OqAdWna-2hDbTG5qhcqLnkxx2yPeKEIYDH7JzziPRnA8Z25Y6YYAivHy5CmfDcBEgLdOJDr86EG6bC2BpHhmUpikjtUcsT7IQCov2sFBoaDk3BUr3igQ&h=XAthO2CfmSiNyFouXpxv0Q1pfhgEYQOfPMgfoCESER4 pragma: - no-cache strict-transport-security: @@ -569,13 +565,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a6f98451-08f4-4487-8f19-b9e029c8352d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/50110a52-2580-4950-8c89-573b9987b15c x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C393172600E443D8B68CB4B641FAD306 Ref B: BN1AA2051012051 Ref C: 2026-04-03T02:23:48Z' + - 'Ref A: AD23DFC2C0324878BF80B6B2B98945C4 Ref B: SYD281080709042 Ref C: 2026-09-10T06:52:48Z' status: code: 202 message: Accepted @@ -593,9 +589,9 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-21f44f2b-2f04-11f1-a9cb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798286274608&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=dzy_ARe7kID39SAttHBZUNZl2MOe4Zzlk-j6_QebP8qeHvvm1U9KmHMmdusj3LtrmOC_mUYoGL9uxMXhRr_MlmIAXxGfPi_Q2dI5MA5TI4imVwIqSqBnshKyuOrsP5byVWQy3T-XSbw94fXMWJyklOQbJl7ZZIxTd7qBHvq4JGLOEnZNY_-EMif5AFcr1QrKa6xGz1z9bMyK6uZA7Chqa2WaPN-pmncL5Vu5M2Swmrh3AZeD7A1WQj1Yt4lRVuCiVJlLMM07Qqn7J2TZeH4rsoy3D7ksQg6mWXdE_Gtr7O5_PTNJ4oDVzjcD2c8A6OYNR880XuA44WaZ3rAGAimdsw&h=7C7XgmNCbEEKYtt9_tNUBIcfS2UV7m5w7qKuiQQEU-Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-3ad5a86e-ace4-11f1-b462-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199691648587&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=U2_cm5B2c5qbFYf-dVqd7TFFg8cmaVwxjzmxCaEgDN0jDQekZBDBjcy23E1FFOI4EqN1_jc2rD0U367_bMkDstbpeVxN5rL6Wscxm0MCgM-QsnRJxmzPk07V6EkrxElMapT2K-5x05qn5V-1JvLEmklmPQxSzChjqOiOzfFKqeaoLIVSDasW8hzvklj0N5TUAKUzH_lwFh_lLdPAEYrbGr89QVkqqvnfo5OqAdWna-2hDbTG5qhcqLnkxx2yPeKEIYDH7JzziPRnA8Z25Y6YYAivHy5CmfDcBEgLdOJDr86EG6bC2BpHhmUpikjtUcsT7IQCov2sFBoaDk3BUr3igQ&h=XAthO2CfmSiNyFouXpxv0Q1pfhgEYQOfPMgfoCESER4 response: body: string: '{"repo:v1":"Pending","status":"Accepted"}' @@ -607,11 +603,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:49 GMT + - Thu, 10 Sep 2026 06:52:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-21f44f2b-2f04-11f1-a9cb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798300413789&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=fG_lrTlm0qGoMQ11jNOB9FwNPn1DWjZjODHSGtfsfOK5EZxjAq0ymE27iLwPvzN233oqBLHLHqWnPk3vgkWezBaDsBMJHo_dpeo-uxESujuoR1OzF2j23Fu-Yd1BvlzPQTe-5yxsNeAJdjPwq1mHnU7d2n2IGrWAcsk5pRZnFiGbKX7d9gA1Kr4mjgvkCF1XSwGRL7SBx2-Mh3J72k1E1zL1okfsaCRECNf2wLhN34aHEL0Kc54u7iyY4xb1TF7tfxH93eK3HxPOWKHcx_bSh50ms5wnDe9drxyBm-flOjedbZS2kifwFg2o0rHLQ5e2nKG5oe933YI36n6wOusGuw&h=CPsXKqOodkwqGlE9gMeYuQuzyGsxy8ubrIl0wFF4jII + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-3ad5a86e-ace4-11f1-b462-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199703745360&c=MIIHwDCCBqigAwIBAgIRAOMNQF9fKgnMBmWT2zSqRoMwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDgxNDAwNTgzNloXDTI3MDIwOTA2NTgzNlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDD3ceSm9rwKlXIJDtd7E2GfmfDuHpnM25pBk1mC_BHD8w0eh_86HDPGn15irT5yBTwIz8Fb1FofcySZBb5QRrtz4nEKgyCwU9B5qAW_8RJzlugk3xLerkjHG2C4BAm59YruwtlOi67BUtUyxQ_fd2q3x1arJmV3KyeQd404po8wGAIljLbz_s0WRY8OvYsss6ENNbmLs6LuIkL1Tm5x9A60BCEhGqjZ-pwI40xJugAbyaWLsJGLMXhcafeFIAzo6zsy5g_NA4UPeb2-EiUDUztvkfCGt_KwVg7UvXVpg-k1Gb9ak6oVKWTwvjUcFhxaHHKa84WSIwmhYqQrv6xj6R5AgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSgdQzgjqxRIl_9jzMFuD4b2jVoJjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzgvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS84L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABrYVQZ4I1hRNoRluTy54IdtVIpebQ1h0kRyuuk_P7mbw5E4_pVyLmCLbWcmCzkLjVkpOUi5--ovELvo0nLeCG7jg61H3D0InM0u1WcWFeK5iu3hcvy38XGZUxfrLMwVgQp4vlR3UeTzk63g5dLiQhPLB8Y3MC4DpPaQNN_ZfTv2z0FnriHDlZM89I9PXHWTRKdbduJ0cietbKvi73ZdHtUrTKgpzNjeRv1X6pTtsw1Q_84pl7MyOdQTBUvb5bElgHWcdOLSfNwlrklRndoDg5dMN5ttz6hso-U2QzIwN2HsdFPIwsI7yxOUk_wHs-UiadXcv_xF23odRohVU2t0pSk&s=P3B2yBOxdtH9vgwEanegBaJ2OB-MoakZt1dCPiPa_T93hYwYbfYvWBrpSVbZJHMKnMYHOXegsSPwi2j0inFrZO2cNrGe-KdxrZSLeovZMzw3V0aKemijzP0zdwtUFdQGJHzbFjsXNZeDs---N6RB_wVBECQmKP0qAWkSFmZtC_oIXpsmJjhWkuFr9cAF52IbfXvu49qKwM2wEl2dcfkVm6tFOq48gBnL-rFxT-B92dM5XjOvKxfH8PT60euuU9aZBDGzGZoTDq0BwRQZ7nxZEEnXAjGSNVqvSs-zw9tKNDzuntqhGIv2DHs_BcAoOFMBqH54Eqkvg2ct9hJ_Eoj4XA&h=yqQPDgPegZSbLubr-MZVKVcCqBOB4CxjUypqrfu-5Tc pragma: - no-cache strict-transport-security: @@ -621,11 +617,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/23490eb9-fc1e-4331-8a10-0ef016399b62 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/a6871015-7479-4394-a251-f16312c40bd7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FDF911254BBB47DAA9C0C2FA1EFC88D0 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:23:49Z' + - 'Ref A: 62F1074BB8754F18BE3AA0BDD68D9903 Ref B: SYD281080706036 Ref C: 2026-09-10T06:52:49Z' status: code: 202 message: Accepted @@ -643,9 +639,9 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-21f44f2b-2f04-11f1-a9cb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798300413789&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=fG_lrTlm0qGoMQ11jNOB9FwNPn1DWjZjODHSGtfsfOK5EZxjAq0ymE27iLwPvzN233oqBLHLHqWnPk3vgkWezBaDsBMJHo_dpeo-uxESujuoR1OzF2j23Fu-Yd1BvlzPQTe-5yxsNeAJdjPwq1mHnU7d2n2IGrWAcsk5pRZnFiGbKX7d9gA1Kr4mjgvkCF1XSwGRL7SBx2-Mh3J72k1E1zL1okfsaCRECNf2wLhN34aHEL0Kc54u7iyY4xb1TF7tfxH93eK3HxPOWKHcx_bSh50ms5wnDe9drxyBm-flOjedbZS2kifwFg2o0rHLQ5e2nKG5oe933YI36n6wOusGuw&h=CPsXKqOodkwqGlE9gMeYuQuzyGsxy8ubrIl0wFF4jII + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-3ad5a86e-ace4-11f1-b462-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199703745360&c=MIIHwDCCBqigAwIBAgIRAOMNQF9fKgnMBmWT2zSqRoMwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDgxNDAwNTgzNloXDTI3MDIwOTA2NTgzNlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDD3ceSm9rwKlXIJDtd7E2GfmfDuHpnM25pBk1mC_BHD8w0eh_86HDPGn15irT5yBTwIz8Fb1FofcySZBb5QRrtz4nEKgyCwU9B5qAW_8RJzlugk3xLerkjHG2C4BAm59YruwtlOi67BUtUyxQ_fd2q3x1arJmV3KyeQd404po8wGAIljLbz_s0WRY8OvYsss6ENNbmLs6LuIkL1Tm5x9A60BCEhGqjZ-pwI40xJugAbyaWLsJGLMXhcafeFIAzo6zsy5g_NA4UPeb2-EiUDUztvkfCGt_KwVg7UvXVpg-k1Gb9ak6oVKWTwvjUcFhxaHHKa84WSIwmhYqQrv6xj6R5AgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSgdQzgjqxRIl_9jzMFuD4b2jVoJjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzgvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS84L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABrYVQZ4I1hRNoRluTy54IdtVIpebQ1h0kRyuuk_P7mbw5E4_pVyLmCLbWcmCzkLjVkpOUi5--ovELvo0nLeCG7jg61H3D0InM0u1WcWFeK5iu3hcvy38XGZUxfrLMwVgQp4vlR3UeTzk63g5dLiQhPLB8Y3MC4DpPaQNN_ZfTv2z0FnriHDlZM89I9PXHWTRKdbduJ0cietbKvi73ZdHtUrTKgpzNjeRv1X6pTtsw1Q_84pl7MyOdQTBUvb5bElgHWcdOLSfNwlrklRndoDg5dMN5ttz6hso-U2QzIwN2HsdFPIwsI7yxOUk_wHs-UiadXcv_xF23odRohVU2t0pSk&s=P3B2yBOxdtH9vgwEanegBaJ2OB-MoakZt1dCPiPa_T93hYwYbfYvWBrpSVbZJHMKnMYHOXegsSPwi2j0inFrZO2cNrGe-KdxrZSLeovZMzw3V0aKemijzP0zdwtUFdQGJHzbFjsXNZeDs---N6RB_wVBECQmKP0qAWkSFmZtC_oIXpsmJjhWkuFr9cAF52IbfXvu49qKwM2wEl2dcfkVm6tFOq48gBnL-rFxT-B92dM5XjOvKxfH8PT60euuU9aZBDGzGZoTDq0BwRQZ7nxZEEnXAjGSNVqvSs-zw9tKNDzuntqhGIv2DHs_BcAoOFMBqH54Eqkvg2ct9hJ_Eoj4XA&h=yqQPDgPegZSbLubr-MZVKVcCqBOB4CxjUypqrfu-5Tc response: body: string: '{"status":"Succeeded"}' @@ -657,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:24:01 GMT + - Thu, 10 Sep 2026 06:53:01 GMT expires: - '-1' pragma: @@ -669,11 +665,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/25664369-06e1-4267-a00c-5ab803d02dc3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6557af4a-7adf-4916-9fb7-dfb5adfcbb75 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 95C40B15A50C404DABBB79E0722FA8EC Ref B: BN1AA2051012035 Ref C: 2026-04-03T02:24:01Z' + - 'Ref A: F054EE5D9C1248D8AA4E6290214806A8 Ref B: SYD281080709052 Ref C: 2026-09-10T06:53:01Z' status: code: 200 message: OK @@ -691,22 +687,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:09.9971403Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741Z"}}]}' headers: cache-control: - no-cache content-length: - - '5191' + - '3957' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:24:02 GMT + - Thu, 10 Sep 2026 06:53:01 GMT expires: - '-1' pragma: @@ -720,7 +715,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D5F05095F3DB422BBF590A4D01357B5B Ref B: BN1AA2051014029 Ref C: 2026-04-03T02:24:02Z' + - 'Ref A: C0B802F058814151B8496302D59086E2 Ref B: SYD281080711034 Ref C: 2026-09-10T06:53:02Z' status: code: 200 message: OK @@ -738,23 +733,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T02:23:30.2467994Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387514+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T06:52:37.5842741Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1640' + - '1672' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:24:04 GMT + - Thu, 10 Sep 2026 06:53:03 GMT expires: - '-1' pragma: @@ -768,7 +763,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8CC1544B83D946BEAC41E0D181641205 Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:24:04Z' + - 'Ref A: E02AB10DFF6E47C6A13A51FDF36CF78F Ref B: SYD281080712036 Ref C: 2026-09-10T06:53:03Z' status: code: 200 message: OK @@ -786,22 +781,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-04-03T02:22:59.8740795Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915148+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915586+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T02:23:30.2467994Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387514+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-09-10T06:52:18.4428879Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205605+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205961+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T06:52:37.5842741Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504+00:00"},"properties":{"loginServer":"cliregfckivn52alvx7u.azurecr.io","creationDate":"2026-09-10T06:44:17.4380504Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:44:19.6260655+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:44:19.6261047+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghyw4hpz3rm7mqu77b2kz6nqr7zdsv5ywxve2wzb4wgh3iotgei6t6fkhig7qovg2e/providers/Microsoft.ContainerRegistry/registries/cliregtvuvqhf6pqchnl","name":"cliregtvuvqhf6pqchnl","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:09.9971403+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:21.4155469+00:00"},"properties":{"loginServer":"cliregtvuvqhf6pqchnl.azurecr.io","creationDate":"2026-09-10T06:49:09.9971403Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790543+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:49:16.9790889+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["cliregtvuvqhf6pqchnl.eastus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '15769' + - '12296' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:24:06 GMT + - Thu, 10 Sep 2026 06:53:05 GMT expires: - '-1' pragma: @@ -816,12 +810,10 @@ interactions: - '' - '' - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E55A65F8ED824A329E31B866C5F01B60 Ref B: BN1AA2051013049 Ref C: 2026-04-03T02:24:05Z' + - 'Ref A: 6F9D76890DD54F2AB7FA72E8A6C7A733 Ref B: SYD281080712025 Ref C: 2026-09-10T06:53:04Z' status: code: 200 message: OK @@ -845,9 +837,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -858,17 +850,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:24:06 GMT + - Thu, 10 Sep 2026 06:53:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-2d66b0f8-2f04-11f1-ada9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798474658976&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=bXlr21HVcptmS16d_JI45BW97uAog9oFJVABSLPyLpN4S8D_dPngwqVSy4GPdAuIwNfes17_pmuN_YA4vr3nyrTpF0wv66MsRh0blhGoVrZkfzVAAuWDtDyay732qZWdjCcDlwpu_pIVCoDK8uSOrX7tlaIBRr_t8YCdGg2oNe3h-k65eFlSyS96dwp8OAuu0hDCgkJPcO9uK7ENkTR3q90fiwQz3T-wPiS82yuTlNlHg5IgDmaco31SRxKCSAN8lnLnCWdSXQUUFc_1qa0tGSHJ2f13n63bgVh0stFKgWr35JSCbL6ZhejEFYdSQDJf5AuoPylzBX57OOjsKLSq6A&h=nriZOg00FTIkLwKmcKzFK6m5PhXrRRddvJ-6-Nn0SI0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-44d2559a-ace4-11f1-94f5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199863197324&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=FayoQJr7JK8SrWp7XA9dBmvZ-m9uopXnyzopGXN5meip21xQH4whOP2j3cP0-7Os3Wioz9_OOs2q89B8PTS_8cQHGaLgJPIZUgoODp8w1wRjM-Dn4DpFe67RS8HX7S4TOnhohTaXp4RMR1e4PcIjJBd_8x4ci9ZQkRhC-4OVbNWd8qotqblK7cTq3fuFLbyeElwGcfCB1-suOFhEma7olv9yJgLjfDyyw0gsXL19T2KaLdruYTLLcH2_0FnOg4PErRvsd8DO8iNYLV4wBBdxCLoKK9ZlQdI4bsGEZgYlIA_ba42XyuGbDBMR9dnQfNP7QMeexBJNsxEXD_UaoYdRMw&h=iqKSDPci4w0DD5Rd39pDia2ddrxv9QGqbw63A4EoJRg pragma: - no-cache strict-transport-security: @@ -878,13 +870,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9e585f66-0f71-4178-a433-bde43d76c3fa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4156e84a-4efc-4ff0-a857-a608d1e44308 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 0559EA873FE64DF0B5E367292FDB24A0 Ref B: BN1AA2051013025 Ref C: 2026-04-03T02:24:07Z' + - 'Ref A: F535FAF127DC4EB8B6191D7C81C97EB3 Ref B: SYD281080712036 Ref C: 2026-09-10T06:53:06Z' status: code: 202 message: Accepted @@ -902,9 +894,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-2d66b0f8-2f04-11f1-ada9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798474658976&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=bXlr21HVcptmS16d_JI45BW97uAog9oFJVABSLPyLpN4S8D_dPngwqVSy4GPdAuIwNfes17_pmuN_YA4vr3nyrTpF0wv66MsRh0blhGoVrZkfzVAAuWDtDyay732qZWdjCcDlwpu_pIVCoDK8uSOrX7tlaIBRr_t8YCdGg2oNe3h-k65eFlSyS96dwp8OAuu0hDCgkJPcO9uK7ENkTR3q90fiwQz3T-wPiS82yuTlNlHg5IgDmaco31SRxKCSAN8lnLnCWdSXQUUFc_1qa0tGSHJ2f13n63bgVh0stFKgWr35JSCbL6ZhejEFYdSQDJf5AuoPylzBX57OOjsKLSq6A&h=nriZOg00FTIkLwKmcKzFK6m5PhXrRRddvJ-6-Nn0SI0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-44d2559a-ace4-11f1-94f5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199863197324&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=FayoQJr7JK8SrWp7XA9dBmvZ-m9uopXnyzopGXN5meip21xQH4whOP2j3cP0-7Os3Wioz9_OOs2q89B8PTS_8cQHGaLgJPIZUgoODp8w1wRjM-Dn4DpFe67RS8HX7S4TOnhohTaXp4RMR1e4PcIjJBd_8x4ci9ZQkRhC-4OVbNWd8qotqblK7cTq3fuFLbyeElwGcfCB1-suOFhEma7olv9yJgLjfDyyw0gsXL19T2KaLdruYTLLcH2_0FnOg4PErRvsd8DO8iNYLV4wBBdxCLoKK9ZlQdI4bsGEZgYlIA_ba42XyuGbDBMR9dnQfNP7QMeexBJNsxEXD_UaoYdRMw&h=iqKSDPci4w0DD5Rd39pDia2ddrxv9QGqbw63A4EoJRg response: body: string: '{"status":"Succeeded"}' @@ -916,7 +908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:24:08 GMT + - Thu, 10 Sep 2026 06:53:07 GMT expires: - '-1' pragma: @@ -928,11 +920,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/f172f475-6aea-4379-a429-9b56e1fa8b69 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/264bc1f8-2b69-4d5b-b359-d376b83b79e3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 733244BEBE7744419478488EFB056803 Ref B: BN1AA2051015053 Ref C: 2026-04-03T02:24:08Z' + - 'Ref A: FF24973822984EE3AED0C2F1172FE1CC Ref B: SYD281080711025 Ref C: 2026-09-10T06:53:07Z' status: code: 200 message: OK @@ -952,27 +944,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:30.2467994+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:30.2467994+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T02:23:30.2467994Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387514+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:42.3387945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:37.5842741+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.5842741+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T06:52:37.5842741Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:44.8181903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1639' + - '1671' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:24:10 GMT + - Thu, 10 Sep 2026 06:53:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-3204788d-2f04-11f1-ad24-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798510047961&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Kncwm-0OJmfqwNK3-nBo1_A579Dn9JHz7trg5Z0Zx_kjJOnDAfHQLF1rn4Q8zSl-D2GEmdDJN0y9C8jwTptPow90YsZiUPoDpyk6ED_yi9r_qHELrkKfCf9PcCR7VrSIsvEwx3x32PfVhOSsyJQ4O8T9eh1XvI8i9-dzfaNC-E5JBrcoWCtj7UUYgXkaBmzE2yoUaHG5C6XgEeK29uUQNpyu-aJ3JRJln3LaYfbwHgU-L-jrlKfQai1jsejRYMeG0CEo0TYybMhtCfhH7dCtrvqutTZTlJj6tZLcBOI7dpxCSxBrkSh-PSOxLnGo4dTkBA3mpNRSPCmYTTBWSegL9w&h=2QGltox0meiT815njuRqFFFjuM9aBdb5pth_IX39l-I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-48785f0a-ace4-11f1-a115-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199911625299&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=X2Ra_kIjGMjC8sAPJJy_ygsgKFzRIETe2dA6_kI3UMlNbkMO2WT59ClRkhpjvXBJflOxYyHXlLNGIBPCQ1YQbiBMKfUkJ7lBZfg-q5ziJFM9_keAv6pG351VJQsnWoTq7cPGX-kKunZ4KFZyZ-mBG8gUglJhvsEUyVgYijG9AwDjxpf5rIKuc0f9_jWLJA59iygXgI5L0qxxrnYSPCSrOXiVhbqETg4pjeHIlWU2oqY7JNfRRLbyDLTUSzmjhU7OUy9e5E0NL-q4ipt1KvEXEUX2rvui5-inaEWQTvj0Qx1RZ4KK8ZOhOggyl0R3b77KnchKcxOazvKNQlZ0sNMULg&h=0IWk2AHc03CukpcBSlefXf2HrPTSyVJFrbGAQRDbRHo pragma: - no-cache strict-transport-security: @@ -982,13 +974,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/055fb24f-30c6-41d6-8957-e9fd44039c46 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4a9a4fa5-260a-4872-a20a-4cb3116cedbe x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 3905CCE11C3C40FEA96DC9A93E2240BD Ref B: BN1AA2051015051 Ref C: 2026-04-03T02:24:10Z' + - 'Ref A: 3BFC928E8E2F43C797421D9D9975D56B Ref B: SYD281080707025 Ref C: 2026-09-10T06:53:08Z' status: code: 202 message: Accepted @@ -1006,9 +998,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-3204788d-2f04-11f1-ad24-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798510047961&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Kncwm-0OJmfqwNK3-nBo1_A579Dn9JHz7trg5Z0Zx_kjJOnDAfHQLF1rn4Q8zSl-D2GEmdDJN0y9C8jwTptPow90YsZiUPoDpyk6ED_yi9r_qHELrkKfCf9PcCR7VrSIsvEwx3x32PfVhOSsyJQ4O8T9eh1XvI8i9-dzfaNC-E5JBrcoWCtj7UUYgXkaBmzE2yoUaHG5C6XgEeK29uUQNpyu-aJ3JRJln3LaYfbwHgU-L-jrlKfQai1jsejRYMeG0CEo0TYybMhtCfhH7dCtrvqutTZTlJj6tZLcBOI7dpxCSxBrkSh-PSOxLnGo4dTkBA3mpNRSPCmYTTBWSegL9w&h=2QGltox0meiT815njuRqFFFjuM9aBdb5pth_IX39l-I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-48785f0a-ace4-11f1-a115-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199911625299&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=X2Ra_kIjGMjC8sAPJJy_ygsgKFzRIETe2dA6_kI3UMlNbkMO2WT59ClRkhpjvXBJflOxYyHXlLNGIBPCQ1YQbiBMKfUkJ7lBZfg-q5ziJFM9_keAv6pG351VJQsnWoTq7cPGX-kKunZ4KFZyZ-mBG8gUglJhvsEUyVgYijG9AwDjxpf5rIKuc0f9_jWLJA59iygXgI5L0qxxrnYSPCSrOXiVhbqETg4pjeHIlWU2oqY7JNfRRLbyDLTUSzmjhU7OUy9e5E0NL-q4ipt1KvEXEUX2rvui5-inaEWQTvj0Qx1RZ4KK8ZOhOggyl0R3b77KnchKcxOazvKNQlZ0sNMULg&h=0IWk2AHc03CukpcBSlefXf2HrPTSyVJFrbGAQRDbRHo response: body: string: '' @@ -1018,11 +1010,11 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:24:12 GMT + - Thu, 10 Sep 2026 06:53:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-3204788d-2f04-11f1-ad24-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798524998914&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=NVq2xTRgvnUTmKessDgcDfce8eaK1ke47TggQcphF5g5gZH4fezBrAIGRZW0Xd4uqASmgK4QmLL3FGWf_D9jFqufyuqYv_1B6NPmuR6zAxdYf7rxX2XZmQGwNoHC9f4r4tRiTBTsazuWQ_2nQ7_52wk3UMGH481r8zyfX1SHfwLRbn-oXq4SOK7lISiDTzUhUD0Ai3GEW-4VWxwwv-PlBZbkPwSkVcNMyl4AIjIC7bMmElo1c0i2YYlmkKcqcGZY1TH_q9uNpebzd8W5har_U_4qUYBhZgQ9IXY4lWzL-wFYutkmwduXxxs_idNWnqab05OepDx22xyN4idziqFLGw&h=matLGowh1zwkuSwThC7LkAPd1DtEFNRH8dgDkp1YEhY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-48785f0a-ace4-11f1-a115-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199924722062&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=qXcP_IvPN7a582BASlsYtNA5jimViJ4W4b8MhyR1DtCkbaYMOJdfGbba887buiPhKSCt7bS6lhtILq755W4dLlhEUDnvcEuDWPHU8t0VAa2U8ON_W3_4danqaI0evcxj2RN4JQbjPl6Xy4jk1oOu2HRraiqyx3ABcCpT-cU27O49D_k9f9iTr41miaVDdSgyY6csWLC1CKI-s5Dsnkl-oj5EwoexAVlQZ0bVhTgD-b_kczutWFggMrTc0MkjMI8RXoj71oIjL0lA_aq3mgPPRbVp6KBC-XapzDUConJdjGVzssQHa8P3-3hCL7sAwatxvqxfWK5YGYt2dXmRQIkBJA&h=FnnXp15D3kta7keE2dfFvJ4kTRPqHYhQ5Uww-KaLhs0 pragma: - no-cache strict-transport-security: @@ -1032,11 +1024,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/c21485d0-4784-4f51-8431-336641d59696 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/fbbd6654-13e7-4012-85f5-1de82d1af549 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 75AE738ABF774EEF9DEBA51083D05250 Ref B: BN1AA2051013047 Ref C: 2026-04-03T02:24:12Z' + - 'Ref A: 4696A8D5D8524D81AAD50D406B4E1DA5 Ref B: SYD281080705025 Ref C: 2026-09-10T06:53:11Z' status: code: 202 message: Accepted @@ -1054,9 +1046,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-3204788d-2f04-11f1-ad24-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798524998914&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=NVq2xTRgvnUTmKessDgcDfce8eaK1ke47TggQcphF5g5gZH4fezBrAIGRZW0Xd4uqASmgK4QmLL3FGWf_D9jFqufyuqYv_1B6NPmuR6zAxdYf7rxX2XZmQGwNoHC9f4r4tRiTBTsazuWQ_2nQ7_52wk3UMGH481r8zyfX1SHfwLRbn-oXq4SOK7lISiDTzUhUD0Ai3GEW-4VWxwwv-PlBZbkPwSkVcNMyl4AIjIC7bMmElo1c0i2YYlmkKcqcGZY1TH_q9uNpebzd8W5har_U_4qUYBhZgQ9IXY4lWzL-wFYutkmwduXxxs_idNWnqab05OepDx22xyN4idziqFLGw&h=matLGowh1zwkuSwThC7LkAPd1DtEFNRH8dgDkp1YEhY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-targetregistry000003-48785f0a-ace4-11f1-a115-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199924722062&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=qXcP_IvPN7a582BASlsYtNA5jimViJ4W4b8MhyR1DtCkbaYMOJdfGbba887buiPhKSCt7bS6lhtILq755W4dLlhEUDnvcEuDWPHU8t0VAa2U8ON_W3_4danqaI0evcxj2RN4JQbjPl6Xy4jk1oOu2HRraiqyx3ABcCpT-cU27O49D_k9f9iTr41miaVDdSgyY6csWLC1CKI-s5Dsnkl-oj5EwoexAVlQZ0bVhTgD-b_kczutWFggMrTc0MkjMI8RXoj71oIjL0lA_aq3mgPPRbVp6KBC-XapzDUConJdjGVzssQHa8P3-3hCL7sAwatxvqxfWK5YGYt2dXmRQIkBJA&h=FnnXp15D3kta7keE2dfFvJ4kTRPqHYhQ5Uww-KaLhs0 response: body: string: '' @@ -1066,7 +1058,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:24:23 GMT + - Thu, 10 Sep 2026 06:53:23 GMT expires: - '-1' pragma: @@ -1078,11 +1070,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/c02fd6e2-c7e7-4f9c-bb90-55672eeeaac3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/94114bbd-6a11-40a9-8a99-ee90edfc8ac7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 65657A96EBFF454FA0F39F08892F0500 Ref B: BN1AA2051012011 Ref C: 2026-04-03T02:24:24Z' + - 'Ref A: 89E2FC951D974DBCA7C13B058F5EF03E Ref B: SYD281080705023 Ref C: 2026-09-10T06:53:23Z' status: code: 200 message: OK @@ -1102,27 +1094,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:22:59.8740795+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:22:59.8740795+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-04-03T02:22:59.8740795Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915148+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:07.5915586+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/sourceregistry000002","name":"sourceregistry000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:18.4428879+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.4428879+00:00"},"properties":{"loginServer":"sourceregistry000002.azurecr.io","creationDate":"2026-09-10T06:52:18.4428879Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205605+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:21.0205961+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["sourceregistry000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1736' + - '1793' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:24:25 GMT + - Thu, 10 Sep 2026 06:53:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-3b0478b0-2f04-11f1-8b96-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798665756380&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=X7RThS_LaeAWfcduqgJXzt69Fls7b2yOaUFro6-jS04B_Hlz5mK5bvjT2qKKG8I6udIUHvZWeFmbb9GafnqhXD4wPXbjlGuM55iyHKnTfzpKN2PjDqFuEebtj75NDFrIFokQ5JCzm3dVvb7okgceHvb_tSgUayVE6K3K08hRJvehhGHf-LMCZ-KPFPCPm92JTVxU1iAYQ5eoNLvZGcUjbyQ_X3VBBsowbhSa1CYkkgVu_BpGH-BxYX4yfDzcC42FMgrK3RLs1riwoUM42eM0ZV5gbUI743EtO3w-v_JDSVkh9ZjUS7Pkb-XZnjCqxTGgTzTNhz_swyO4b-5ST8j_zQ&h=cFZyPBo5yKFnUD_T5Fy7vnKKiX1VopmhXG6wVGSXeIg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-51e8963e-ace4-11f1-8ccc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200051545166&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=lhrOwqExqPNj-gx7Yj0uTaVF3ywRBuKPNRzU0sdhQxGM8ikSI_igTtXFzMxn3Cx3ntSNfbQ_vptHnCzCvTZOnwWYTk2tCsUIv-XrHmo1x_Ox3t0Zo2LzLdh9Ei2ThjsT0D-Beno_gZ0cn2J7o3jZzdfxe3_obtPskNVdLVSxsJ_3aZlxXejJ734zIPwGf27m0pteHVd_9lb5wcqi-GLvTt_ReoZJyvANPuWTMkSQ04Q2fznPcvBDXQkUbwyNmFXGvlY1iBNjlPnKE2FezWYG_sUQitNh6gtAvk73yRTZmaNTxXd8YKCiyupQMr-6b-9kC30f3bK5FBMxmq9gaLXEUw&h=DkKWFKcdWu_1YK5L9834SJBXTqqnw3LCZJ1IBmGINcs pragma: - no-cache strict-transport-security: @@ -1132,13 +1124,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c51cb926-a227-4376-b96b-7e810d0675df + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7482ec15-696d-4c48-b27a-cca05cf0b903 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: FE1C12925F7B44D5A257E2438EBA973F Ref B: BN1AA2051012051 Ref C: 2026-04-03T02:24:26Z' + - 'Ref A: F4D4969F47384E528D92B1B8D70FA4F6 Ref B: SYD281080712054 Ref C: 2026-09-10T06:53:24Z' status: code: 202 message: Accepted @@ -1156,9 +1148,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-3b0478b0-2f04-11f1-8b96-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798665756380&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=X7RThS_LaeAWfcduqgJXzt69Fls7b2yOaUFro6-jS04B_Hlz5mK5bvjT2qKKG8I6udIUHvZWeFmbb9GafnqhXD4wPXbjlGuM55iyHKnTfzpKN2PjDqFuEebtj75NDFrIFokQ5JCzm3dVvb7okgceHvb_tSgUayVE6K3K08hRJvehhGHf-LMCZ-KPFPCPm92JTVxU1iAYQ5eoNLvZGcUjbyQ_X3VBBsowbhSa1CYkkgVu_BpGH-BxYX4yfDzcC42FMgrK3RLs1riwoUM42eM0ZV5gbUI743EtO3w-v_JDSVkh9ZjUS7Pkb-XZnjCqxTGgTzTNhz_swyO4b-5ST8j_zQ&h=cFZyPBo5yKFnUD_T5Fy7vnKKiX1VopmhXG6wVGSXeIg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-51e8963e-ace4-11f1-8ccc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200051545166&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=lhrOwqExqPNj-gx7Yj0uTaVF3ywRBuKPNRzU0sdhQxGM8ikSI_igTtXFzMxn3Cx3ntSNfbQ_vptHnCzCvTZOnwWYTk2tCsUIv-XrHmo1x_Ox3t0Zo2LzLdh9Ei2ThjsT0D-Beno_gZ0cn2J7o3jZzdfxe3_obtPskNVdLVSxsJ_3aZlxXejJ734zIPwGf27m0pteHVd_9lb5wcqi-GLvTt_ReoZJyvANPuWTMkSQ04Q2fznPcvBDXQkUbwyNmFXGvlY1iBNjlPnKE2FezWYG_sUQitNh6gtAvk73yRTZmaNTxXd8YKCiyupQMr-6b-9kC30f3bK5FBMxmq9gaLXEUw&h=DkKWFKcdWu_1YK5L9834SJBXTqqnw3LCZJ1IBmGINcs response: body: string: '' @@ -1168,11 +1160,11 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:24:27 GMT + - Thu, 10 Sep 2026 06:53:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-3b0478b0-2f04-11f1-8b96-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798684974524&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=BmI8gtTsV7i7lA4GDbM44DKGNTz8cQulIvfHPZ0NvkDYG7ceriqgPw4HEGNZDy4rNvQRf6i_zGdd4cNU1_ttXyMYvebI6vq8RmsOwM7hqsrVroM9jc8W9mhlseyNDdwF-r6P6Gtdu01bLiO5FkoGry7ayamD5hlo896Xov1hz8MK_gxXCsZpwLYTFScDb_ksomi8L_2eoe2-R_T9a3lCCHLWpolq_Y5LCtwMIb7mpO1PPchHivhlO1OTXV0EqN2ntoIym58VQsIyqkrIvRU-hZ6sti7wv1Gfz2WJ2lUOgPVCKZpx9OIa3WSOkJTrEN7xnFnJGezQwUf0lgR_43c6sQ&h=xDsSmg89I1FqINSNpQwNlYzawApCf8hpor24DNvB3GE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-51e8963e-ace4-11f1-8ccc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200067408860&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=U1EAINrd-v4oBm2n63BHJjEwt1wcSQVAUWS0w6PVZ_e_kYk8AcB__uw4aAqytkCc-gTcJUGoZf63oLq3sp9F_owiUlnAFtgmGkgLgFkonx8JmmeYrv1s0qCJMR_151k7zVww6dpQQ6j_383liam6rR3MVPQB-k3ZiJBIDgWHki9ggMXqS8bhuxGESPU3VX5hLf_adbZpfR1xozQ2l8lcvEcqQk9PDwSQL0TW7E7Yh6fsmKXcsY_obWPo8jYHIBfQsXfSAT_r58Te73vuedTAe2ltDifPfSF7Cles8z2cYoH18ESRio0IuummSgBJNDMkwcXCsVuDKVuj4aFKFNekIw&h=X-maD5z3ibhTsRSVBSLa64-hmnHYFUp1_8zVW98ufk0 pragma: - no-cache strict-transport-security: @@ -1182,11 +1174,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/dc37a2c0-01ce-44a7-af20-007c2c2008ad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/05552993-d9f2-4d98-a789-0369253e7b0d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 03EBAA992F734B5B834BA5BF0DDB1E91 Ref B: BN1AA2051014025 Ref C: 2026-04-03T02:24:28Z' + - 'Ref A: A24DD29CC49F404388641BFC88310D33 Ref B: SYD281080708031 Ref C: 2026-09-10T06:53:26Z' status: code: 202 message: Accepted @@ -1204,9 +1196,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-3b0478b0-2f04-11f1-8b96-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107798684974524&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=BmI8gtTsV7i7lA4GDbM44DKGNTz8cQulIvfHPZ0NvkDYG7ceriqgPw4HEGNZDy4rNvQRf6i_zGdd4cNU1_ttXyMYvebI6vq8RmsOwM7hqsrVroM9jc8W9mhlseyNDdwF-r6P6Gtdu01bLiO5FkoGry7ayamD5hlo896Xov1hz8MK_gxXCsZpwLYTFScDb_ksomi8L_2eoe2-R_T9a3lCCHLWpolq_Y5LCtwMIb7mpO1PPchHivhlO1OTXV0EqN2ntoIym58VQsIyqkrIvRU-hZ6sti7wv1Gfz2WJ2lUOgPVCKZpx9OIa3WSOkJTrEN7xnFnJGezQwUf0lgR_43c6sQ&h=xDsSmg89I1FqINSNpQwNlYzawApCf8hpor24DNvB3GE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-sourceregistry000002-51e8963e-ace4-11f1-8ccc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200067408860&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=U1EAINrd-v4oBm2n63BHJjEwt1wcSQVAUWS0w6PVZ_e_kYk8AcB__uw4aAqytkCc-gTcJUGoZf63oLq3sp9F_owiUlnAFtgmGkgLgFkonx8JmmeYrv1s0qCJMR_151k7zVww6dpQQ6j_383liam6rR3MVPQB-k3ZiJBIDgWHki9ggMXqS8bhuxGESPU3VX5hLf_adbZpfR1xozQ2l8lcvEcqQk9PDwSQL0TW7E7Yh6fsmKXcsY_obWPo8jYHIBfQsXfSAT_r58Te73vuedTAe2ltDifPfSF7Cles8z2cYoH18ESRio0IuummSgBJNDMkwcXCsVuDKVuj4aFKFNekIw&h=X-maD5z3ibhTsRSVBSLa64-hmnHYFUp1_8zVW98ufk0 response: body: string: '' @@ -1216,7 +1208,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:24:40 GMT + - Thu, 10 Sep 2026 06:53:37 GMT expires: - '-1' pragma: @@ -1228,11 +1220,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/72d78759-6ccb-49c2-934a-d17ddb6fa1d7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/5b66844d-eea4-40c9-a59b-d21f6bf21f5e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1D6FA9E489EC47228C881C52D2AB3C3E Ref B: BN1AA2051012037 Ref C: 2026-04-03T02:24:40Z' + - 'Ref A: 5DA85B22368D4275BBCDB3F201230BB8 Ref B: SYD281080706062 Ref C: 2026-09-10T06:53:37Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login.yaml index 8893421fdf8..df6701b5121 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g --sku --location --regional-endpoints User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.0166259+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:00.0166259+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:23:00.0166259Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:13.2210444+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:13.2210742+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clireg000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:47.3308679+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:47.3308679+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:47.3308679Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.8253413+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.8253831+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clireg000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1705' + - '1762' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:14 GMT + - Thu, 10 Sep 2026 06:53:54 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/326fbc58-fb08-4199-b528-2dc009c32554 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e7b6bd07-d18c-4544-b8bb-96cc13a5ff15 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: D9D04E27DD064AE4A13D8847E7E1DF7C Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:22:58Z' + - 'Ref A: 51110D0E0E2A45199C04199381BCF12C Ref B: SYD281080709025 Ref C: 2026-09-10T06:53:42Z' status: code: 200 message: OK @@ -72,27 +72,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:23:00.0166259+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:23:00.0166259+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:23:00.0166259Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:23:13.2210444+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:23:13.2210742+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clireg000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrre_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:53:47.3308679+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:53:47.3308679+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:53:47.3308679Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:53:54.8253413+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:53:54.8253831+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["clireg000002.westus.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1704' + - '1761' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:23:16 GMT + - Thu, 10 Sep 2026 06:53:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-11240aa5-2f04-11f1-a988-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797969416279&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Cn6c-uLECepsTERjcOr-8y7oqtycCJnGBAO48VIx79h_6mwdJJDKxUdL3Fm6SEYbpKfEEmj6FzwNpnNu0k4XpXUCvF7ZlT1vbvtWUqxoR_xy3PzzdZWLn4Ga25axD7OF_sz3LFj5O04wX1xYG7hBB1ND39tgHr5uYtIIo318P2Q9R8buyaiqiLnrMf142y1tKVEdVMoohEijr9FDsgijN6_mEeGWqgCAdJ8Z8QG0p5S9bOqwzimaOV0X9BPTKAvtjOBawjpVqbayQlN_4V2tIJhzth0cdR49yJCHubXKNUAfgcoFBUoQdkzOHJxh7QesLJKvdHTQktfZH-O0qh7S7Q&h=Tcthy40PSjmcjbmNy61qLz0NmrK_i7lkiJ_qKXwciKc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-649e6b4d-ace4-11f1-a37d-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200388238454&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=WlHFU-1O_0ToxQwZ06KxruAqTyclsGdBT9U_dXcWCaVpiYiQeP2vBYBn_tuTW3XSfTXORntFuHfFTyAXLM4opqEFClKrgCBpXU6LWCXUw-yBMLfQ4b7qyML86CnO5aA5c_09Lm2pzawnIJzwja-LpsCD_rx9jjZfGzJA3emMN4wrBJKOF60b6dr89xF-ztl52hXBRhO35DP9jqQwb7LuW7mlnCxzZ3poDhLLzMWF3fmj8RgTPafunzJJ9RMABAAn1jul-Xampm3DNYsF_V6GtxozdZagg2MTIyRl1IcRti46o2VZY2woHU-29L3oJIBX5Hpi2NfM8ipnDhCMg8btcg&h=eOds_d_C1v-CJ8KTwHgUJqneDTSIvlxg1VAr5AHhyws pragma: - no-cache strict-transport-security: @@ -102,13 +102,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/102f5859-ebf6-4f45-bdab-d22ed81b4ef4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/7fcc4305-cb12-4417-a029-ba1bb1aa43d0 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 3A8F7F1B669D4E80BA98F38956F7D9E2 Ref B: BN1AA2051013047 Ref C: 2026-04-03T02:23:16Z' + - 'Ref A: 2748F36DC8504A249B1E8EB60E7F3AE1 Ref B: SYD281080710031 Ref C: 2026-09-10T06:53:55Z' status: code: 202 message: Accepted @@ -126,9 +126,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-11240aa5-2f04-11f1-a988-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797969416279&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Cn6c-uLECepsTERjcOr-8y7oqtycCJnGBAO48VIx79h_6mwdJJDKxUdL3Fm6SEYbpKfEEmj6FzwNpnNu0k4XpXUCvF7ZlT1vbvtWUqxoR_xy3PzzdZWLn4Ga25axD7OF_sz3LFj5O04wX1xYG7hBB1ND39tgHr5uYtIIo318P2Q9R8buyaiqiLnrMf142y1tKVEdVMoohEijr9FDsgijN6_mEeGWqgCAdJ8Z8QG0p5S9bOqwzimaOV0X9BPTKAvtjOBawjpVqbayQlN_4V2tIJhzth0cdR49yJCHubXKNUAfgcoFBUoQdkzOHJxh7QesLJKvdHTQktfZH-O0qh7S7Q&h=Tcthy40PSjmcjbmNy61qLz0NmrK_i7lkiJ_qKXwciKc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-649e6b4d-ace4-11f1-a37d-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200388238454&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=WlHFU-1O_0ToxQwZ06KxruAqTyclsGdBT9U_dXcWCaVpiYiQeP2vBYBn_tuTW3XSfTXORntFuHfFTyAXLM4opqEFClKrgCBpXU6LWCXUw-yBMLfQ4b7qyML86CnO5aA5c_09Lm2pzawnIJzwja-LpsCD_rx9jjZfGzJA3emMN4wrBJKOF60b6dr89xF-ztl52hXBRhO35DP9jqQwb7LuW7mlnCxzZ3poDhLLzMWF3fmj8RgTPafunzJJ9RMABAAn1jul-Xampm3DNYsF_V6GtxozdZagg2MTIyRl1IcRti46o2VZY2woHU-29L3oJIBX5Hpi2NfM8ipnDhCMg8btcg&h=eOds_d_C1v-CJ8KTwHgUJqneDTSIvlxg1VAr5AHhyws response: body: string: '' @@ -138,11 +138,11 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:18 GMT + - Thu, 10 Sep 2026 06:53:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-11240aa5-2f04-11f1-a988-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797990879034&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=UoaQZtvhc_1BpKyYGMtQSpj3yCpMl5OlAbaZQ-3KQaWRUcOuSf6iCI2Q7jpmOVBzY1RzfHD29WyUEjTkqQuwezECODFf35DDODsvDwIfgVGvmUxNkhnfV8STjgSpQbgLjFDmYLXhUeMZACVuqM8mvKn3F0wliYQlZQfMo7lKVJSi-mVBoj5BafYYUYuKHQb62tCVppI5vNQsXYHZ-YYIfszlabhDkGbAgmwAv7G3Sxgru3nY-d_Tg5SYsWW9_5HXAB_gfkcoCnT3vPLW01etKjmsrs_eZV4_ybIA9M5cRbasj_aS9CgS0ksa-nYrdDSOlkwgRvMBXO81hBOy-Yhe4A&h=0e4COPW1fUJm1LRp2aRpmf_7TK206SUqvch08j9ssdc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-649e6b4d-ace4-11f1-a37d-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200401154303&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=C_3l-cPzg2_4fsSXwnvb2qGsB-pxq1F2wB7hZEcZFThmJUkyT8RYvPUXh5U_Ra9fTR6hxM08aML8OvASfdH8vUwlvPThxA9s8NOAeQpdlYjjLqM6Fg6qL6iQM_7oX0nl7Bj8dquQz55WpSYDhsA-_ANTwwZnJA8hGjKiJJvqzu6AR_g08aOnrHnmwrCAlvvlti0MsEgK9NL2GY1J-E-BoIBFPAxvjIqGTLjnZviHAcrMLJAQWgShIVkO0XkmF_TIW_AqYLrx0GKF9wDhdW7WuzCyZSur22nsq4EI-fB63T8CNOr9mfi-MHyDAc3mdzZxA7SBerce2k2Mx4Ep_HPVGQ&h=WFH-LEIO6SG4ScwWFA5-V6WBX4_r8kmDqq6Z4369SK4 pragma: - no-cache strict-transport-security: @@ -152,11 +152,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/ea162620-4713-4957-b3cc-03f2d057a530 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/ff99595e-8eeb-467a-bce5-5975a0aa3c53 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1E84BB76E097407385C88F9995B6B0BF Ref B: BN1AA2051013031 Ref C: 2026-04-03T02:23:18Z' + - 'Ref A: 8F5AFABEA9F4455F8F38760F8A97BD9B Ref B: SYD281080711034 Ref C: 2026-09-10T06:53:59Z' status: code: 202 message: Accepted @@ -174,9 +174,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-11240aa5-2f04-11f1-a988-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107797990879034&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=UoaQZtvhc_1BpKyYGMtQSpj3yCpMl5OlAbaZQ-3KQaWRUcOuSf6iCI2Q7jpmOVBzY1RzfHD29WyUEjTkqQuwezECODFf35DDODsvDwIfgVGvmUxNkhnfV8STjgSpQbgLjFDmYLXhUeMZACVuqM8mvKn3F0wliYQlZQfMo7lKVJSi-mVBoj5BafYYUYuKHQb62tCVppI5vNQsXYHZ-YYIfszlabhDkGbAgmwAv7G3Sxgru3nY-d_Tg5SYsWW9_5HXAB_gfkcoCnT3vPLW01etKjmsrs_eZV4_ybIA9M5cRbasj_aS9CgS0ksa-nYrdDSOlkwgRvMBXO81hBOy-Yhe4A&h=0e4COPW1fUJm1LRp2aRpmf_7TK206SUqvch08j9ssdc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-649e6b4d-ace4-11f1-a37d-3cefa50a58cc?api-version=2026-09-01-preview&t=639246200401154303&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=C_3l-cPzg2_4fsSXwnvb2qGsB-pxq1F2wB7hZEcZFThmJUkyT8RYvPUXh5U_Ra9fTR6hxM08aML8OvASfdH8vUwlvPThxA9s8NOAeQpdlYjjLqM6Fg6qL6iQM_7oX0nl7Bj8dquQz55WpSYDhsA-_ANTwwZnJA8hGjKiJJvqzu6AR_g08aOnrHnmwrCAlvvlti0MsEgK9NL2GY1J-E-BoIBFPAxvjIqGTLjnZviHAcrMLJAQWgShIVkO0XkmF_TIW_AqYLrx0GKF9wDhdW7WuzCyZSur22nsq4EI-fB63T8CNOr9mfi-MHyDAc3mdzZxA7SBerce2k2Mx4Ep_HPVGQ&h=WFH-LEIO6SG4ScwWFA5-V6WBX4_r8kmDqq6Z4369SK4 response: body: string: '' @@ -186,7 +186,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:23:30 GMT + - Thu, 10 Sep 2026 06:54:10 GMT expires: - '-1' pragma: @@ -198,11 +198,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/734bcaee-5712-4f27-98aa-adcc66744c27 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6539a32c-19cc-4dba-9916-e85cfd1e0e28 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59CA50C644614FF48526E25020B6F1AD Ref B: BN1AA2051014047 Ref C: 2026-04-03T02:23:30Z' + - 'Ref A: 50B40E84172F4D08853A52A2C1848393 Ref B: SYD281080712023 Ref C: 2026-09-10T06:54:10Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login_expose_token.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login_expose_token.yaml index 06b038c6474..39541d38612 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login_expose_token.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_login_expose_token.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_login_expose_token","date":"2026-04-03T02:32:29Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_login_expose_token","date":"2026-09-10T06:46:41Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:34 GMT + - Thu, 10 Sep 2026 06:46:44 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3F050AADCB064C8C993AF321E8C7C6EB Ref B: BN1AA2051013051 Ref C: 2026-04-03T02:32:35Z' + - 'Ref A: 9263ABE12D1F403CBF89A9AAE8B475BE Ref B: SYD281080706054 Ref C: 2026-09-10T06:46:44Z' status: code: 200 message: OK @@ -64,23 +64,23 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:38.4115761+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:38.4115761+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:32:38.4115761Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:50.1732394+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:50.1732859+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:47.5158938+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:47.5158938+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:46:47.5158938Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:54.6837011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:54.683738+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:49 GMT + - Thu, 10 Sep 2026 06:46:54 GMT expires: - '-1' pragma: @@ -92,13 +92,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/733ae15b-e0fc-481c-a5b0-68540dd0038e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b0083a0b-7b78-4189-b9b7-1ea685ad980c x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: A45ED830B0904243980D4FC87AE6B3E2 Ref B: BN1AA2051014037 Ref C: 2026-04-03T02:32:38Z' + - 'Ref A: A2A7EE4AB5D74AAEA617498F0DDF3481 Ref B: SYD281080707025 Ref C: 2026-09-10T06:46:45Z' status: code: 200 message: OK @@ -116,22 +116,21 @@ interactions: ParameterSetName: - -n --expose-token User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityn6fndszynarctkhxxb":{"principalId":"6d0e4351-db6e-4eb3-8241-bd02e49be2d3","clientId":"16b01e2c-dacc-4704-af7e-72dcfec357a6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:35.4627489Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwx746vu7dluofxfbt3emvzfyrerrjrb3zhnryqgy2zohddhucdmhnnzhgxhkfel3a/providers/Microsoft.ContainerRegistry/registries/testregab7oinshhhxeg","name":"testregab7oinshhhxeg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv7velr7dqw6acbztw2z77gkrqut2daah3lc4742zv4m7dpxjrwd7r3acyac2nwg3j/providers/Microsoft.ContainerRegistry/registries/testregysc3m6e6afvlx","name":"testregysc3m6e6afvlx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:20.5036465Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ContainerRegistry/registries/testreggdfu2vybmmjpi","name":"testreggdfu2vybmmjpi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgnqd27yz3gsipcwlxo4j5hgyygdfeoy4zxemhouvfm3lm5hsahocnofxi7qcy3tusq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity5uatbqkp":{"principalId":"faf57c49-f552-41a3-b9f1-9317f5059fa1","clientId":"52af17ae-88d0-4382-9c77-a3bd70957ee2"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:22.6789286Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:22.6789286Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:38.4115761Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:38.4115761Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"name":"magic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"name":"cliregfckivn52alvx7u","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"name":"cliregnzljctjaxp6de4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb375iyfuo62wfim7ph7uzfymjevsishcwyrn3zsmwki2lvxvpsojvrtxmsywk32d7/providers/Microsoft.ContainerRegistry/registries/cliregnzljctjaxp6de4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:40.3977371Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:40.3977371Z"}},{"name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"name":"clireg000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:47.5158938Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:47.5158938Z"}}]}' headers: cache-control: - no-cache content-length: - - '8993' + - '3392' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:52 GMT + - Thu, 10 Sep 2026 06:46:55 GMT expires: - '-1' pragma: @@ -145,7 +144,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1202B38B6C2141F0B365110D1857356C Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:32:52Z' + - 'Ref A: EB10078B661643F488E9D113685505FD Ref B: SYD281080710060 Ref C: 2026-09-10T06:46:55Z' status: code: 200 message: OK @@ -163,23 +162,23 @@ interactions: ParameterSetName: - -n --expose-token User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:38.4115761+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:38.4115761+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-03T02:32:38.4115761Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:50.1732394+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:50.1732859+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:47.5158938+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:47.5158938+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:46:47.5158938Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:54.6837011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:54.683738+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:54 GMT + - Thu, 10 Sep 2026 06:46:55 GMT expires: - '-1' pragma: @@ -193,7 +192,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23F57CFFABEC43C58E9CCF4EABE708CB Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:32:54Z' + - 'Ref A: D649609CDC854DC5AF6ED31C78549362 Ref B: SYD281080707060 Ref C: 2026-09-10T06:46:56Z' status: code: 200 message: OK @@ -229,16 +228,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:57 GMT + - Thu, 10 Sep 2026 06:46:57 GMT docker-distribution-api-version: - registry/2.0 server: - - AzureContainerRegistry + - openresty strict-transport-security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://cliregaakdfi6tljaitd.azurecr.io/oauth2/token",service="cliregaakdfi6tljaitd.azurecr.io" + - Bearer realm="https://cliregej7jyzpv4psu52.azurecr.io/oauth2/token",service="cliregej7jyzpv4psu52.azurecr.io" x-content-type-options: - nosniff status: @@ -276,23 +275,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:59 GMT + - Thu, 10 Sep 2026 06:46:58 GMT docker-distribution-api-version: - registry/2.0 server: - - AzureContainerRegistry + - openresty strict-transport-security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://cliregaakdfi6tljaitd.azurecr.io/oauth2/token",service="cliregaakdfi6tljaitd.azurecr.io" + - Bearer realm="https://cliregej7jyzpv4psu52.azurecr.io/oauth2/token",service="cliregej7jyzpv4psu52.azurecr.io" x-content-type-options: - nosniff status: code: 401 message: Unauthorized - request: - body: grant_type=access_token&service=cliregaakdfi6tljaitd.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=*** + body: grant_type=access_token&service=cliregej7jyzpv4psu52.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCIsImtpZCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCJ9.eyJhdWQiOiJodHRwczovL2NvbnRhaW5lcnJlZ2lzdHJ5LmF6dXJlLm5ldCIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny8iLCJpYXQiOjE3ODkwMjI1MTksIm5iZiI6MTc4OTAyMjUxOSwiZXhwIjoxNzg5MDI3NTI4LCJfY2xhaW1fbmFtZXMiOnsiZ3JvdXBzIjoic3JjMSJ9LCJfY2xhaW1fc291cmNlcyI6eyJzcmMxIjp7ImVuZHBvaW50IjoiaHR0cHM6Ly9ncmFwaC53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvdXNlcnMvNGI1YjBjZWYtY2Y4Mi00Y2Y1LTlhYjEtZmY4NGM5ZjExZjM1L2dldE1lbWJlck9iamVjdHMifX0sImFjciI6IjEiLCJhaW8iOiJBY1FBTy84ZUFBQUEwengzWk8xNnAyamw1dmU4UnZrRkpqaHk3TDdhd0lOb3RMaDRDNjZLZjRvcGRKSENvSUdFMWlDUitKMU5OTG53bUo4bDFIeXA3bVFyVGMvTnpVRkdSblIwSUdJcDlXZmNuNnZxUFV0RE03TWZtdkFvTWtaSHl0bDloR2JIZ1YrUUlEYXI3NXVDVVBHdDBrbUJvOVRXQURSdkpSSHlUQzRlMXF5SEh0UFJrdWRCczBqKyt3RFNOTXdsNEpXY0xoWElGbTdDdTlPZmFaN0dSWHcvc1Zla3ZKMEVVRTlRY2pLVnBjNXpHMFdhUWV1bjlsSEVXMWVsNlNhV1BXNjgyNUk3IiwiYW1yIjpbInJzYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWJjMmViNjEtMTliYi00NWY3LWJmZWQtYTdiZjU4NDA2ZDFlIiwiZmFtaWx5X25hbWUiOiJWYXJhZGFjaGFyaSIsImdpdmVuX25hbWUiOiJOaWhhbCIsImlkdHlwIjoidXNlciIsImlwYWRkciI6IjEzLjcyLjI0MS4yMzkiLCJuYW1lIjoiTmloYWwgVmFyYWRhY2hhcmkiLCJvaWQiOiI0YjViMGNlZi1jZjgyLTRjZjUtOWFiMS1mZjg0YzlmMTFmMzUiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctODcwODE1MDIiLCJwdWlkIjoiMTAwMzIwMDU5M0IyNjc0MiIsInB3ZF91cmwiOiJodHRwczovL2dvLm1pY3Jvc29mdC5jb20vZndsaW5rLz9saW5raWQ9MjIyNDE5OCIsInJoIjoiMS5BUm9BdjRqNWN2R0dyMEdScXkxODBCSGJSMUlqeVhaWHdNSk1teDd6VERLOFdMMEFBTmthQUEuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic2lkIjoiMDAyMjM1ZWEtYmIyYi04NjY1LTBhNDItNDVlYThkOTMzZjQ3Iiwic3ViIjoiLTJBb3I4aU00b1pwZ2NoYnhKMzRzUEM0XzlBbTNEVVRRS3hhT253RWg2RSIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoibnZhcmFkYWNoYXJpQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJudmFyYWRhY2hhcmlAbWljcm9zb2Z0LmNvbSIsInV0aSI6Il9La0tXNkZXaTAtUnJORl80YU04QUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSJdLCJ4bXNfYWN0X2ZjdCI6IjUgMyIsInhtc19mdGQiOiJROVY5LTVPTjNhUTJoR1dmLU9lLUVmQjhpcHRSMlhTem5UdjVtRFZhMVg0QmEyOXlaV0ZqWlc1MGNtRnNMV1J6YlhNIiwieG1zX2lkcmVsIjoiMSAxMCIsInhtc19zdWJfZmN0IjoiNCAzIn0.hixmLI1jV_NSjA66r_5_yvvpkTc4kDrS9Bk5kj1oWhO5hdkrFXjeTg8hlh3p1sTWinUTAxbTsoumSqttQMNunr3Kx929NJEoVqqL84caqbo5vI0oy_L6RnTEmCeqsMHbh4JgkoXtjvTBUiAIh2TzATzLo1ZJav5EYUjB8UclvpsovU9ZJneLi9UBpzVfwyh3HXKdSI3QlNx8vwP-CWann4CFHE5GjMMIm2lEfwkLPx90MvWM3kVr2L6qrC4T6fcQthceJ8eup8Dv3drgwLJfhW1P-0khxSjhp0T8m3AlsppuIc8xHbGQ_JXqajC0jiCkdgvYWOykYvJ74wI_4FRD9Q headers: Accept: - '*/*' @@ -301,7 +300,7 @@ interactions: Connection: - keep-alive Content-Length: - - '2727' + - '2780' Content-Type: - application/x-www-form-urlencoded User-Agent: @@ -310,22 +309,20 @@ interactions: uri: https://clireg000002.azurecr.io/oauth2/exchange response: body: - string: '{"refresh_token":"***"}' + string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkJRTlc6SUZTNzpPM1VBOkwzSko6SjNVVzoyRVM3OldVM0c6M1lRRjozV0o3OlRCWUc6UUpRVDoyT0VIIn0.eyJqdGkiOiI1MDNlOTcyYS0xYWVhLTQ1ZTUtODdkYy1lNGVmMDNjMzZjYzkiLCJzdWIiOiJudmFyYWRhY2hhcmlAbWljcm9zb2Z0LmNvbSIsIm5iZiI6MTc4OTAyMTkyMCwiZXhwIjoxNzg5MDMzNjIwLCJpYXQiOjE3ODkwMjE5MjAsImlzcyI6IkF6dXJlIENvbnRhaW5lciBSZWdpc3RyeSIsImF1ZCI6ImNsaXJlZ2VqN2p5enB2NHBzdTUyLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiYTE4YjU3ZTJiMzYzNDI5OGExYWRlYTllNzA5NmM3NGYiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwidGVuYW50IjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwicGVybWlzc2lvbnMiOnsiYWN0aW9ucyI6WyJyZWFkIiwid3JpdGUiLCJkZWxldGUiLCJtZXRhZGF0YS9yZWFkIiwibWV0YWRhdGEvd3JpdGUiLCJkZWxldGVkL3JlYWQiLCJkZWxldGVkL3Jlc3RvcmUvYWN0aW9uIl19LCJyb2xlcyI6W119.btrLW32qgMW9fssxJTdSxXMqB7xZifAGmR6Rz_MAqx1L3fy5JWNPeFystQmgzBVwjcJYrifpngdBzwCkRcSk3lDy4BhFzBt-OK9U5sF8DyBLvj3mHe2_swlu9R7vmWQ1suB24y_N9at8ohXVIyjSW9gL0FS3CxqS1TFTX383teAvKwLnl4RIhw_LW1l-7LFVOO5f0QDgt-g8rjzmxp73Z_CT2KMauWCZ6Doy_0r64EczGfcw_XebI8x8NRtXaQmfgsL9vx88V9Rh-k1Vwcy9V6JL7H5wptHj0ZfgB4otEAqwwHAKWPk4zmfpQPmo_CdlJAX-3SsyiYJ8fR0OzRMVhQ"}' headers: connection: - keep-alive content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:33:02 GMT + - Thu, 10 Sep 2026 06:47:00 GMT server: - - AzureContainerRegistry + - openresty strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked - x-ms-ratelimit-remaining-calls-per-second: - - '333.316667' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_network_rule.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_network_rule.yaml index 2037c6f056a..63f54435b5d 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_network_rule.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_network_rule.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_network_rule","date":"2026-08-10T22:01:06Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_network_rule","date":"2026-09-10T06:51:27Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:09 GMT + - Thu, 10 Sep 2026 06:51:30 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 63D178F6B6F64972A57EDE1C4FCE93DA Ref B: SN4AA2022301019 Ref C: 2026-08-10T22:01:10Z' + - 'Ref A: 3CB0397443CB4918A77055419F39DA5B Ref B: SYD281080711034 Ref C: 2026-09-10T06:51:31Z' status: code: 200 message: OK @@ -65,17 +65,17 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet?api-version=2025-07-01 response: body: - string: '{"name":"cliregvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet","etag":"W/\"55de08f7-e50f-40e4-876b-69e471fb1af1\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","properties":{"provisioningState":"Updating","resourceGuid":"7d80cfc2-b1ea-4d46-b336-7b030c702660","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"55de08f7-e50f-40e4-876b-69e471fb1af1\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"cliregvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet","etag":"W/\"0266fdd9-cf73-44b5-b436-e03364f4f7bd\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","properties":{"provisioningState":"Updating","resourceGuid":"931176a9-3b0c-43dc-bbd4-fa77b1b0c7ce","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"0266fdd9-cf73-44b5-b436-e03364f4f7bd\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/027e222f-7830-4b39-ba1c-bd3490e7909f?api-version=2025-07-01&t=639219960713820824&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=CajFdcO4CLRCjrrHTCf8jhcgqZC6mKLKx8ZKHxO5D6cyrOsFfu9MCN81HocWA8zYFE6ITEAJ2pa8YYOuoMkStzcB6p4_9vUS_VmCmDBRnx2ptEAQxt3O5bn0LO6aan04_ngaxUqszRDJO3x_exiriltihTBLrowwzevnL2sW95RJrZD1FNGrDl7X3KhZTYho1QkdoMJVc_4GemOVZYEY6tCdvqV6JKPQ5w52stmbRtMLYyG16_ugrEeCv52FCvpDSn9ohZ7VDQDDlbycUSWMm4twHqEFb0T5px7YMT-j4ALBiXItU-8zrgOf5Nv6o_Z5EzwQ3KkEPdG6rAw7dZJrzw&h=SXwo7gyc_W6OGzeYOKkaIRxoz0O0YWKyzHaDe3mccAo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b4a28405-c660-4091-a233-5927df6be51c?api-version=2025-07-01&t=639246198951974643&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=DQz3LHQ3ntxtnsSMmfYHz_enp4-delImxeIju32bn3uyQv7nHg7pIBSqsNf272Lm7PZW2tZVOJ5gLlakw-xXGFfsfUaqcd8BV-bIHDj84HEtOQaaduvZqG-BwiS5g_96DpBxLvWSEPgpY-BcwirN6XrCu6lYc5_dylrRxb53dgGBQLadrCYixElTLyqO-tmIU3WNCRmT7goB4xDP7NQ1oF0ugON8K03yjuaUDFFZn2GSriF0Wd9mtMSmGTQC9KYXpKIXeiFjPwuWjdogDVveTx3XGeLEjchlwgVoTbhClm-OOIiqZZP8mkYCnvwfG82rxwtBf4ChU7z1jzT2UhIQrA&h=KzWGoJQVuDSpIXKK_x7yIWGBAHgzwoAOD1UGKZo8W1Y cache-control: - no-cache content-length: @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:10 GMT + - Thu, 10 Sep 2026 06:51:35 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc4e8b86-d248-41c5-ba82-461f51f076f7 + - 671f7c7b-a4c8-4ee1-ba39-f4bb778e5786 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/36f82652-9889-457f-8cc1-90bbd83f9eec + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/88f532aa-20e5-452b-87d7-849d1f42ada4 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: @@ -106,10 +106,10 @@ interactions: - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 953F2F01D0664621A287D17FD6247C28 Ref B: SN4AA2022301047 Ref C: 2026-08-10T22:01:10Z' + - 'Ref A: 18AAACC1582F4AE2ACDB1190CD28A369 Ref B: SYD281080710052 Ref C: 2026-09-10T06:51:32Z' status: code: 201 - message: Created + message: '' - request: body: null headers: @@ -124,9 +124,9 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/027e222f-7830-4b39-ba1c-bd3490e7909f?api-version=2025-07-01&t=639219960713820824&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=CajFdcO4CLRCjrrHTCf8jhcgqZC6mKLKx8ZKHxO5D6cyrOsFfu9MCN81HocWA8zYFE6ITEAJ2pa8YYOuoMkStzcB6p4_9vUS_VmCmDBRnx2ptEAQxt3O5bn0LO6aan04_ngaxUqszRDJO3x_exiriltihTBLrowwzevnL2sW95RJrZD1FNGrDl7X3KhZTYho1QkdoMJVc_4GemOVZYEY6tCdvqV6JKPQ5w52stmbRtMLYyG16_ugrEeCv52FCvpDSn9ohZ7VDQDDlbycUSWMm4twHqEFb0T5px7YMT-j4ALBiXItU-8zrgOf5Nv6o_Z5EzwQ3KkEPdG6rAw7dZJrzw&h=SXwo7gyc_W6OGzeYOKkaIRxoz0O0YWKyzHaDe3mccAo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b4a28405-c660-4091-a233-5927df6be51c?api-version=2025-07-01&t=639246198951974643&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=DQz3LHQ3ntxtnsSMmfYHz_enp4-delImxeIju32bn3uyQv7nHg7pIBSqsNf272Lm7PZW2tZVOJ5gLlakw-xXGFfsfUaqcd8BV-bIHDj84HEtOQaaduvZqG-BwiS5g_96DpBxLvWSEPgpY-BcwirN6XrCu6lYc5_dylrRxb53dgGBQLadrCYixElTLyqO-tmIU3WNCRmT7goB4xDP7NQ1oF0ugON8K03yjuaUDFFZn2GSriF0Wd9mtMSmGTQC9KYXpKIXeiFjPwuWjdogDVveTx3XGeLEjchlwgVoTbhClm-OOIiqZZP8mkYCnvwfG82rxwtBf4ChU7z1jzT2UhIQrA&h=KzWGoJQVuDSpIXKK_x7yIWGBAHgzwoAOD1UGKZo8W1Y response: body: string: '{"status":"InProgress"}' @@ -138,7 +138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:11 GMT + - Thu, 10 Sep 2026 06:51:36 GMT expires: - '-1' pragma: @@ -150,18 +150,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 068f1f16-3de5-4e0b-b9bd-50f804a0370e + - 3c86b97d-6521-4e9e-a4cb-53cf916939c2 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/fc9a541c-4da3-43ec-b69f-e5c94ed6aba1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/243b3574-7bd1-4c7b-9ef0-4c2fc22ac16a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: DA81103E0CBC448DBC3C3FFC81994F90 Ref B: SN4AA2022301029 Ref C: 2026-08-10T22:01:11Z' + - 'Ref A: 9E38FB811CFF462C87707D0C45A2C405 Ref B: SYD281080711023 Ref C: 2026-09-10T06:51:35Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -176,9 +176,9 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/027e222f-7830-4b39-ba1c-bd3490e7909f?api-version=2025-07-01&t=639219960713820824&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=CajFdcO4CLRCjrrHTCf8jhcgqZC6mKLKx8ZKHxO5D6cyrOsFfu9MCN81HocWA8zYFE6ITEAJ2pa8YYOuoMkStzcB6p4_9vUS_VmCmDBRnx2ptEAQxt3O5bn0LO6aan04_ngaxUqszRDJO3x_exiriltihTBLrowwzevnL2sW95RJrZD1FNGrDl7X3KhZTYho1QkdoMJVc_4GemOVZYEY6tCdvqV6JKPQ5w52stmbRtMLYyG16_ugrEeCv52FCvpDSn9ohZ7VDQDDlbycUSWMm4twHqEFb0T5px7YMT-j4ALBiXItU-8zrgOf5Nv6o_Z5EzwQ3KkEPdG6rAw7dZJrzw&h=SXwo7gyc_W6OGzeYOKkaIRxoz0O0YWKyzHaDe3mccAo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b4a28405-c660-4091-a233-5927df6be51c?api-version=2025-07-01&t=639246198951974643&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=DQz3LHQ3ntxtnsSMmfYHz_enp4-delImxeIju32bn3uyQv7nHg7pIBSqsNf272Lm7PZW2tZVOJ5gLlakw-xXGFfsfUaqcd8BV-bIHDj84HEtOQaaduvZqG-BwiS5g_96DpBxLvWSEPgpY-BcwirN6XrCu6lYc5_dylrRxb53dgGBQLadrCYixElTLyqO-tmIU3WNCRmT7goB4xDP7NQ1oF0ugON8K03yjuaUDFFZn2GSriF0Wd9mtMSmGTQC9KYXpKIXeiFjPwuWjdogDVveTx3XGeLEjchlwgVoTbhClm-OOIiqZZP8mkYCnvwfG82rxwtBf4ChU7z1jzT2UhIQrA&h=KzWGoJQVuDSpIXKK_x7yIWGBAHgzwoAOD1UGKZo8W1Y response: body: string: '{"status":"Succeeded"}' @@ -190,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:21 GMT + - Thu, 10 Sep 2026 06:51:47 GMT expires: - '-1' pragma: @@ -202,15 +202,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 570ae274-b703-4b33-9cb0-913289e115ab + - 1b7a851c-07a2-46ca-8332-071b4e3eeb49 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/63d4dc89-8d26-4259-94b1-3253e76d8dd0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/150c272a-8540-46fc-89eb-683034d3305d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: AC63E0FA086046C18F792F2A31637443 Ref B: SN4AA2022304023 Ref C: 2026-08-10T22:01:22Z' + - 'Ref A: A569E96961054E298CB0EE1AAB64FEC5 Ref B: SYD281080709023 Ref C: 2026-09-10T06:51:47Z' status: code: 200 message: OK @@ -228,12 +228,12 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet?api-version=2025-07-01 response: body: - string: '{"name":"cliregvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet","etag":"W/\"43685103-7172-4b6c-bc42-f510b5bcdc9e\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","properties":{"provisioningState":"Succeeded","resourceGuid":"7d80cfc2-b1ea-4d46-b336-7b030c702660","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"43685103-7172-4b6c-bc42-f510b5bcdc9e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"cliregvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet","etag":"W/\"3fb6e67d-5944-4549-81cc-04952bbf4307\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","properties":{"provisioningState":"Succeeded","resourceGuid":"931176a9-3b0c-43dc-bbd4-fa77b1b0c7ce","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"3fb6e67d-5944-4549-81cc-04952bbf4307\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache @@ -242,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:22 GMT + - Thu, 10 Sep 2026 06:51:48 GMT expires: - '-1' pragma: @@ -254,16 +254,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a220ec9-c8ea-4c68-bf8a-772972601ef3 + - 43b302ce-a036-464f-bfc6-c26d01ac8cea x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - - operationRatePct=0.2, operationConcurrencyPct=2.0, etc + - operationRatePct=0.1, operationConcurrencyPct=2.0, etc x-msedge-ref: - - 'Ref A: 0504704C7CD149B4998401910FA1094C Ref B: SN4AA2022301045 Ref C: 2026-08-10T22:01:22Z' + - 'Ref A: 72294D0C3B17460D97A5E2153F77420C Ref B: SYD281080709029 Ref C: 2026-09-10T06:51:48Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -278,12 +278,12 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet?api-version=2024-07-01 response: body: - string: '{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"43685103-7172-4b6c-bc42-f510b5bcdc9e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"3fb6e67d-5944-4549-81cc-04952bbf4307\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -292,9 +292,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:22 GMT + - Thu, 10 Sep 2026 06:51:49 GMT etag: - - W/"43685103-7172-4b6c-bc42-f510b5bcdc9e" + - W/"3fb6e67d-5944-4549-81cc-04952bbf4307" expires: - '-1' pragma: @@ -306,18 +306,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fed027a7-ef54-4a55-a9ce-3d2d098ba9fc + - 03ad4c63-af2a-45c0-9602-69f18b4f4cd1 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/18cf6641-afc4-4845-902f-77d021989a3e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/47773d3a-09c8-4656-bcb3-9914f37346ab x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 4B5F5F41A2074B15A57BD999916BD45B Ref B: SN4AA2022302021 Ref C: 2026-08-10T22:01:23Z' + - 'Ref A: B870CBFDED454A0EAB5FB35034C358FF Ref B: SYD281080712029 Ref C: 2026-09-10T06:51:49Z' status: code: 200 - message: OK + message: '' - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet", "name": "cliregsubnet", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": @@ -340,17 +340,17 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet?api-version=2024-07-01 response: body: - string: '{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"f60c7192-ed6f-4b94-8bac-9b5cfd80523e\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Updating","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"5f2864ab-3dda-445a-a5e1-d95f62f87786\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Updating","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4d337dd4-1519-4e12-8bbb-6943a754a399?api-version=2024-07-01&t=639219960840090384&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=e1P9JXSlBt1buJb8e_vwEATjNoDrpY9stZXoJCpFc5_xa7Lk3xfx9Y3oC1neOF35OFEmlNsu6Somga020NGhU-s7W0ugWBxGUKWd6uUXaiuMuHak3NAQN7XiNr-MgG8uexNaQhtqwZK4Bvsip99sr6OAEQdZ67WJU-B5Reb7EqtYywcgGcgQW5cWcbkrtMYBMAfd7UEHVJFtW7kPfG1LvEGt2AaONLiT-7akjUN_KJ-nvxF4N6zd51QiUWw-cYwDxj3O2e59X3wuprO6NsAK2x-oVkRowCL6VT4Gc1OehLv6LFkCHvjG5S65UayGnicOiB1m8td2XeqvZ4hpl4Qh8A&h=zHl7OQea4Oarpm1B7fPUreUCL7rWMUFdDUKkKwKqaXs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d6c33582-b513-4953-b6b7-983f9c8976e5?api-version=2024-07-01&t=639246199131285444&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=h92X3X9X8xpU1Do5C2EkmdENnNHnIf_cKc4XmXHhYz-IDPmQaTp3sqgAXn3DtILOANW11dt1IrluDdsR2cF-WEEuexc1jhaJwT4xmKQyNfgdfipgmd0JaCOvx3Qh0bELhiuTvU49kBQjc0an_orjCt_oPx2FUZa1RxbpT6qmzuOSylBvZcbRLcgClglF6UvrgSIkvP3dksARMnalFjHFQdn0UoaH98Y7r97_ZaGEzAFt6sviXw0YqhpYD8FSK8rMubip3M62UUFfn_jY9OHPw6KKwCDx5TUqFJgucCn0uFNEcKaDD85JwuRUWWvMna8B0dv13PXqR-T_aBkof89KDw&h=WhzebH3VE5qHGb_mAQTDxZtX9A5o4PTvGo8bT1C2laM cache-control: - no-cache content-length: @@ -358,7 +358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:23 GMT + - Thu, 10 Sep 2026 06:51:52 GMT expires: - '-1' pragma: @@ -370,9 +370,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 71bf4b2c-ca0c-4c5a-8ee1-b8aef8d26029 + - 243b90bd-9618-461c-8745-577b7ac23b70 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/9f39877b-ead5-4f29-82e7-1cd2c620a696 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4fd07e1e-e4c0-47cf-ad1c-5fd21ed18c04 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: @@ -381,10 +381,10 @@ interactions: - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, etc x-msedge-ref: - - 'Ref A: 8C00D4103F994474949B0110EEFDFFBA Ref B: SN4AA2022305019 Ref C: 2026-08-10T22:01:23Z' + - 'Ref A: B717C9D914074BF88D857168A6B5FAFB Ref B: SYD281080707023 Ref C: 2026-09-10T06:51:50Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -399,9 +399,9 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4d337dd4-1519-4e12-8bbb-6943a754a399?api-version=2024-07-01&t=639219960840090384&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=e1P9JXSlBt1buJb8e_vwEATjNoDrpY9stZXoJCpFc5_xa7Lk3xfx9Y3oC1neOF35OFEmlNsu6Somga020NGhU-s7W0ugWBxGUKWd6uUXaiuMuHak3NAQN7XiNr-MgG8uexNaQhtqwZK4Bvsip99sr6OAEQdZ67WJU-B5Reb7EqtYywcgGcgQW5cWcbkrtMYBMAfd7UEHVJFtW7kPfG1LvEGt2AaONLiT-7akjUN_KJ-nvxF4N6zd51QiUWw-cYwDxj3O2e59X3wuprO6NsAK2x-oVkRowCL6VT4Gc1OehLv6LFkCHvjG5S65UayGnicOiB1m8td2XeqvZ4hpl4Qh8A&h=zHl7OQea4Oarpm1B7fPUreUCL7rWMUFdDUKkKwKqaXs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d6c33582-b513-4953-b6b7-983f9c8976e5?api-version=2024-07-01&t=639246199131285444&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=h92X3X9X8xpU1Do5C2EkmdENnNHnIf_cKc4XmXHhYz-IDPmQaTp3sqgAXn3DtILOANW11dt1IrluDdsR2cF-WEEuexc1jhaJwT4xmKQyNfgdfipgmd0JaCOvx3Qh0bELhiuTvU49kBQjc0an_orjCt_oPx2FUZa1RxbpT6qmzuOSylBvZcbRLcgClglF6UvrgSIkvP3dksARMnalFjHFQdn0UoaH98Y7r97_ZaGEzAFt6sviXw0YqhpYD8FSK8rMubip3M62UUFfn_jY9OHPw6KKwCDx5TUqFJgucCn0uFNEcKaDD85JwuRUWWvMna8B0dv13PXqR-T_aBkof89KDw&h=WhzebH3VE5qHGb_mAQTDxZtX9A5o4PTvGo8bT1C2laM response: body: string: '{"status":"InProgress"}' @@ -413,7 +413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:23 GMT + - Thu, 10 Sep 2026 06:51:53 GMT expires: - '-1' pragma: @@ -425,18 +425,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65197e8f-8f69-4aed-b4ca-1e95d14929f6 + - c154a086-efec-4c58-8927-2c676b5ffe81 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/95680460-be3f-4b55-9ab3-775e8916937d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4761a79c-2dcc-42a0-b830-6159e395513f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 15C953A740F44596BE0630915D263F3E Ref B: SN4AA2022301011 Ref C: 2026-08-10T22:01:24Z' + - 'Ref A: EC3EE72AE8154110A37D390489701703 Ref B: SYD281080708031 Ref C: 2026-09-10T06:51:54Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -451,9 +451,9 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4d337dd4-1519-4e12-8bbb-6943a754a399?api-version=2024-07-01&t=639219960840090384&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=e1P9JXSlBt1buJb8e_vwEATjNoDrpY9stZXoJCpFc5_xa7Lk3xfx9Y3oC1neOF35OFEmlNsu6Somga020NGhU-s7W0ugWBxGUKWd6uUXaiuMuHak3NAQN7XiNr-MgG8uexNaQhtqwZK4Bvsip99sr6OAEQdZ67WJU-B5Reb7EqtYywcgGcgQW5cWcbkrtMYBMAfd7UEHVJFtW7kPfG1LvEGt2AaONLiT-7akjUN_KJ-nvxF4N6zd51QiUWw-cYwDxj3O2e59X3wuprO6NsAK2x-oVkRowCL6VT4Gc1OehLv6LFkCHvjG5S65UayGnicOiB1m8td2XeqvZ4hpl4Qh8A&h=zHl7OQea4Oarpm1B7fPUreUCL7rWMUFdDUKkKwKqaXs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d6c33582-b513-4953-b6b7-983f9c8976e5?api-version=2024-07-01&t=639246199131285444&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=h92X3X9X8xpU1Do5C2EkmdENnNHnIf_cKc4XmXHhYz-IDPmQaTp3sqgAXn3DtILOANW11dt1IrluDdsR2cF-WEEuexc1jhaJwT4xmKQyNfgdfipgmd0JaCOvx3Qh0bELhiuTvU49kBQjc0an_orjCt_oPx2FUZa1RxbpT6qmzuOSylBvZcbRLcgClglF6UvrgSIkvP3dksARMnalFjHFQdn0UoaH98Y7r97_ZaGEzAFt6sviXw0YqhpYD8FSK8rMubip3M62UUFfn_jY9OHPw6KKwCDx5TUqFJgucCn0uFNEcKaDD85JwuRUWWvMna8B0dv13PXqR-T_aBkof89KDw&h=WhzebH3VE5qHGb_mAQTDxZtX9A5o4PTvGo8bT1C2laM response: body: string: '{"status":"Succeeded"}' @@ -465,7 +465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:34 GMT + - Thu, 10 Sep 2026 06:52:04 GMT expires: - '-1' pragma: @@ -477,19 +477,19 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e792885-b4b4-4e94-b711-c58a4fda18fe + - e8cdf3c8-e533-4b94-b92a-26d11506af91 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/aa8d4d78-315d-4375-accb-53e3946268aa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/5c3ab2a4-1459-4443-8327-82a5d910a405 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 62419BA75A4D4DCF9FC983F99919F949 Ref B: SN4AA2022303035 Ref C: 2026-08-10T22:01:34Z' + - 'Ref A: C6A1E28476F14C5F97CE7DCEDCA53127 Ref B: SYD281080707023 Ref C: 2026-09-10T06:52:05Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -504,12 +504,12 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet?api-version=2024-07-01 response: body: - string: '{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"d7fa4bd3-f3dc-4ab3-959b-54d223de9ef4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"cliregsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet","etag":"W/\"9e8d6100-f654-4e61-9b2d-e9e74da4d28a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -518,9 +518,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:35 GMT + - Thu, 10 Sep 2026 06:52:05 GMT etag: - - W/"d7fa4bd3-f3dc-4ab3-959b-54d223de9ef4" + - W/"9e8d6100-f654-4e61-9b2d-e9e74da4d28a" expires: - '-1' pragma: @@ -532,18 +532,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e978d15d-906b-4024-ae32-4deb370b3de8 + - 50c9a474-ec5d-4f20-80c2-44a5b8190ed2 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/4d46423c-ec6c-416e-b667-51536ad52bb1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/b0c35461-f5f1-4717-abc6-f06ab6b1ba2a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: E88AE1BF2A2A4719AEC4C799B7075B97 Ref B: SN4AA2022302019 Ref C: 2026-08-10T22:01:35Z' + - 'Ref A: 79A76636F15D4355BF0237B5690291A8 Ref B: SYD281080712029 Ref C: 2026-09-10T06:52:05Z' status: code: 200 - message: OK + message: '' - request: body: '{"location": "westcentralus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": false, "networkRuleSet": {"defaultAction": "Deny"}}}' @@ -563,23 +563,23 @@ interactions: ParameterSetName: - -n -g -l --sku --default-action User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:36.238254+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:09.3613522+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1725' + - '1728' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:43 GMT + - Thu, 10 Sep 2026 06:52:16 GMT expires: - '-1' pragma: @@ -591,13 +591,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/a0f95b41-8c81-46a5-af85-8bdafa55b823 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/207de75c-e5bc-46ff-8d04-9ccfed0d9c85 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 0F5040E65FE548DA99D9500B4DF3C9C8 Ref B: SN4AA2022302051 Ref C: 2026-08-10T22:01:35Z' + - 'Ref A: F76FE5394A794310BE653659688316F2 Ref B: SYD281080705062 Ref C: 2026-09-10T06:52:06Z' status: code: 200 message: OK @@ -615,23 +615,23 @@ interactions: ParameterSetName: - -g -n --vnet-name --subnet User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:36.238254+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:09.3613522+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1725' + - '1728' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:44 GMT + - Thu, 10 Sep 2026 06:52:16 GMT expires: - '-1' pragma: @@ -645,7 +645,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5017B4E958F6458E9E0C3D9D7F3A578A Ref B: SN4AA2022305027 Ref C: 2026-08-10T22:01:44Z' + - 'Ref A: 29F348F2048D4A4EBEC065921D59B9BD Ref B: SYD281080705036 Ref C: 2026-09-10T06:52:17Z' status: code: 200 message: OK @@ -669,23 +669,23 @@ interactions: ParameterSetName: - -g -n --vnet-name --subnet User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:45.7980597+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.3515029+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1939' + - '1941' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:46 GMT + - Thu, 10 Sep 2026 06:52:18 GMT expires: - '-1' pragma: @@ -697,13 +697,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/0ba19308-59a3-4dc3-a14b-b050e1cb56cb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/49c56c60-70ee-414b-adaa-cb5e230de062 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3E8D9B39601D4180A10D8B879296718C Ref B: SN4AA2022304029 Ref C: 2026-08-10T22:01:45Z' + - 'Ref A: F3C3586ECEC24EBA9A3526ED2BC377B4 Ref B: SYD281080706060 Ref C: 2026-09-10T06:52:18Z' status: code: 200 message: OK @@ -721,23 +721,23 @@ interactions: ParameterSetName: - -g -n --ip-address User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:45.7980597+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:18.3515029+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1939' + - '1941' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:46 GMT + - Thu, 10 Sep 2026 06:52:19 GMT expires: - '-1' pragma: @@ -751,7 +751,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2867A53EA1E942BE9DFCEFC3C529872C Ref B: SN4AA2022301045 Ref C: 2026-08-10T22:01:47Z' + - 'Ref A: AE69336F36694427AC995BD851014404 Ref B: SYD281080712042 Ref C: 2026-09-10T06:52:19Z' status: code: 200 message: OK @@ -775,23 +775,23 @@ interactions: ParameterSetName: - -g -n --ip-address User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:48.1203627+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:21.0570607+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1981' + - '1983' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:47 GMT + - Thu, 10 Sep 2026 06:52:21 GMT expires: - '-1' pragma: @@ -803,13 +803,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/8e3abdf8-38ad-4611-9d39-6041c52039b2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/ba18cbaa-7e65-4273-a4fd-0f004507ede2 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: EBE519236CF64485AB0A63211AC1C974 Ref B: SN4AA2022302035 Ref C: 2026-08-10T22:01:47Z' + - 'Ref A: D0111E7EBA9440DF95A735A2A9643FB0 Ref B: SYD281080711025 Ref C: 2026-09-10T06:52:20Z' status: code: 200 message: OK @@ -827,23 +827,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:48.1203627+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:21.0570607+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1981' + - '1983' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:48 GMT + - Thu, 10 Sep 2026 06:52:21 GMT expires: - '-1' pragma: @@ -857,7 +857,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 27F8329F550A45A9B4E5CCC8167E9780 Ref B: SN4AA2022303029 Ref C: 2026-08-10T22:01:48Z' + - 'Ref A: 629FFD96E26D4153AB4FF6FF834065D4 Ref B: SYD281080710042 Ref C: 2026-09-10T06:52:21Z' status: code: 200 message: OK @@ -875,23 +875,23 @@ interactions: ParameterSetName: - -n -g --default-action User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:48.1203627+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:21.0570607+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1981' + - '1983' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:49 GMT + - Thu, 10 Sep 2026 06:52:21 GMT expires: - '-1' pragma: @@ -905,7 +905,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4BEACBC59EB244C6B166E92413A17F05 Ref B: SN4AA2022301049 Ref C: 2026-08-10T22:01:49Z' + - 'Ref A: 7BEB781DFA78430882548844BD558231 Ref B: SYD281080706023 Ref C: 2026-09-10T06:52:22Z' status: code: 200 message: OK @@ -927,23 +927,23 @@ interactions: ParameterSetName: - -n -g --default-action User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:50.0068498+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:23.2664523+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1982' + - '1984' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:49 GMT + - Thu, 10 Sep 2026 06:52:22 GMT expires: - '-1' pragma: @@ -955,13 +955,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/0a89de95-f23a-4569-8ea1-38d8251da644 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/1400be54-7172-4a51-8afb-c69dc9baf316 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 0AA3E06586384F85BB6712EE7BB77285 Ref B: SN4AA2022302053 Ref C: 2026-08-10T22:01:49Z' + - 'Ref A: 01CC702DFA8F4EAC81A541868ADC8CFD Ref B: SYD281080712034 Ref C: 2026-09-10T06:52:22Z' status: code: 200 message: OK @@ -979,23 +979,23 @@ interactions: ParameterSetName: - -g -n --vnet-name --subnet User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:50.0068498+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:23.2664523+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[{"action":"Allow","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet/subnets/cliregsubnet"}],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1982' + - '1984' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:01:49 GMT + - Thu, 10 Sep 2026 06:52:23 GMT expires: - '-1' pragma: @@ -1009,7 +1009,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8E4903DB573E40378992E3673BB232AA Ref B: SN4AA2022305019 Ref C: 2026-08-10T22:01:50Z' + - 'Ref A: 36EDCAC1E2714393BCEC7FD69EB9655D Ref B: SYD281080705029 Ref C: 2026-09-10T06:52:23Z' status: code: 200 message: OK @@ -1032,23 +1032,23 @@ interactions: ParameterSetName: - -g -n --vnet-name --subnet User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:51.3004198+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:24.9933466+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1769' + - '1771' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:02:01 GMT + - Thu, 10 Sep 2026 06:52:35 GMT expires: - '-1' pragma: @@ -1060,13 +1060,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/60b466ca-e7a8-49e4-9617-207b15807efc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/bfb6137d-7896-466c-8baf-cf33ef50a5d1 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 2216091B93CA43F799AAB637A450EBD5 Ref B: SN4AA2022305023 Ref C: 2026-08-10T22:01:50Z' + - 'Ref A: 137938F74E764A9AAD7AB43FFA09CA59 Ref B: SYD281080705042 Ref C: 2026-09-10T06:52:24Z' status: code: 200 message: OK @@ -1084,23 +1084,23 @@ interactions: ParameterSetName: - -g -n --ip-address User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:01:51.3004198+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:24.9933466+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[{"action":"Allow","value":"16.17.18.0/24"}]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1769' + - '1771' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:02:03 GMT + - Thu, 10 Sep 2026 06:52:36 GMT expires: - '-1' pragma: @@ -1114,7 +1114,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23B9337B57974921AD6C5C67C5884281 Ref B: SN4AA2022301029 Ref C: 2026-08-10T22:02:02Z' + - 'Ref A: FBE7728C111C4045A81851D74D631316 Ref B: SYD281080710062 Ref C: 2026-09-10T06:52:36Z' status: code: 200 message: OK @@ -1137,23 +1137,23 @@ interactions: ParameterSetName: - -g -n --ip-address User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:02:04.6673698+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.897846+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1727' + - '1728' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:02:04 GMT + - Thu, 10 Sep 2026 06:52:37 GMT expires: - '-1' pragma: @@ -1165,13 +1165,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/fcaf8750-1f7f-4261-91ca-4e8319634fb6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/0d84e641-96da-40ca-add1-cc5be917e9e9 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BBB0EDFDEB93410B8A80BEBE24836E7F Ref B: SN4AA2022304039 Ref C: 2026-08-10T22:02:04Z' + - 'Ref A: E4155709983E4CA587FE852090C76655 Ref B: SYD281080712042 Ref C: 2026-09-10T06:52:37Z' status: code: 200 message: OK @@ -1189,23 +1189,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:02:04.6673698+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.897846+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1727' + - '1728' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:02:04 GMT + - Thu, 10 Sep 2026 06:52:38 GMT expires: - '-1' pragma: @@ -1219,7 +1219,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 32742C9DF8724AF49473332FE4A27BF6 Ref B: SN4AA2022301017 Ref C: 2026-08-10T22:02:05Z' + - 'Ref A: C95ABDC5B9A945FD9979A2CE17B250B3 Ref B: SYD281080709034 Ref C: 2026-09-10T06:52:38Z' status: code: 200 message: OK @@ -1239,27 +1239,27 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-08-10T22:01:36.238254+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-08-10T22:02:04.6673698+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-08-10T22:01:36.238254Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-08-10T22:01:44.3553935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-08-10T22:01:44.3554343+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:52:09.3613522+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:37.897846+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:52:09.3613522Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494058+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:16.6494454+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1726' + - '1727' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:02:05 GMT + - Thu, 10 Sep 2026 06:52:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-1f9cf7e4-9507-11f1-94ac-1e2217a8e842?api-version=2026-03-01-preview&t=639219961259568335&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=cZltn3v4cfd6naTNbE_cUeN06sN69scM1XJWu_1YGs5pUoGbYS41HOW_rjYwnoOHkK61MH-bcB9YPC690BLfZptiDaZ1DmbsPO63r3gUPnxl0jhu9UUiwB4LeWpPN53fQLJmLpjzAemnxmWT7BWzPj1QPdn1YifM0z31ucGlw30VP9vU0gu-eEGDeaihDrx1BnDBgCN8WfpmX0W7xF-sA-Ady-0kokloVupLG3LS2y2MZFR-tNsGP-vQhKqGHDp7gaWxTMfGjfhk5GGNd34wmaAdVDTu9MhCgK_USO7ZBPZlHFMwGVdmnk8tz_FJD4cZbf7bi--JZpP1yVGLZhq03g&h=XRSY53L3_RpOfTotGHI1tV6rr_3vDfrcVU5ty5G_l4Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-3734363e-ace4-11f1-897e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199617972007&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=vZXs3jD0EPnlNvKbtevayzGbqMpiTkTBSNHogrI2R6YpqxmWjNFnyQOw_M0ilp8L3te3VWnw9jb7aTZb4GYlnVcZw4ChXorYHsJU-1yNqM4AghLcML6x59DDb7cl0YajV0q93sgTxj-byDZ9kK7VGt8uJABQgCs8dTvlBpt5Dowvr6SWANEKUx0SdkxEpqV2opNrSSxgKTSMQUQ_rf11s5aPjJa6iQ3J88UaJ914GOATefjKHn-B9FBbPPzaPo9oIq0GKop0MdViWVcSM_jHQiroi6Q7Hwu9JJhiktYz6eNzx2P5ZVflY35BNY58C9-bwNksNG_Qn9EyDvkojCDjpg&h=RYpCgU_6kxRcAbJWv0_VPcHpzEGvHBj7BvPaKZHk638 pragma: - no-cache strict-transport-security: @@ -1269,13 +1269,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/58a1dae7-725d-4cd8-8926-fc89a0d685c5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/62cdfc97-218b-475f-a239-bacb6b928d10 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: EA5FE2A846864321B0D058DADE60872F Ref B: SN4AA2022304031 Ref C: 2026-08-10T22:02:05Z' + - 'Ref A: AF3D9090D474451180FD5627DA59390D Ref B: SYD281080707029 Ref C: 2026-09-10T06:52:39Z' status: code: 202 message: Accepted @@ -1293,9 +1293,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-1f9cf7e4-9507-11f1-94ac-1e2217a8e842?api-version=2026-03-01-preview&t=639219961259568335&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=cZltn3v4cfd6naTNbE_cUeN06sN69scM1XJWu_1YGs5pUoGbYS41HOW_rjYwnoOHkK61MH-bcB9YPC690BLfZptiDaZ1DmbsPO63r3gUPnxl0jhu9UUiwB4LeWpPN53fQLJmLpjzAemnxmWT7BWzPj1QPdn1YifM0z31ucGlw30VP9vU0gu-eEGDeaihDrx1BnDBgCN8WfpmX0W7xF-sA-Ady-0kokloVupLG3LS2y2MZFR-tNsGP-vQhKqGHDp7gaWxTMfGjfhk5GGNd34wmaAdVDTu9MhCgK_USO7ZBPZlHFMwGVdmnk8tz_FJD4cZbf7bi--JZpP1yVGLZhq03g&h=XRSY53L3_RpOfTotGHI1tV6rr_3vDfrcVU5ty5G_l4Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-3734363e-ace4-11f1-897e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199617972007&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=vZXs3jD0EPnlNvKbtevayzGbqMpiTkTBSNHogrI2R6YpqxmWjNFnyQOw_M0ilp8L3te3VWnw9jb7aTZb4GYlnVcZw4ChXorYHsJU-1yNqM4AghLcML6x59DDb7cl0YajV0q93sgTxj-byDZ9kK7VGt8uJABQgCs8dTvlBpt5Dowvr6SWANEKUx0SdkxEpqV2opNrSSxgKTSMQUQ_rf11s5aPjJa6iQ3J88UaJ914GOATefjKHn-B9FBbPPzaPo9oIq0GKop0MdViWVcSM_jHQiroi6Q7Hwu9JJhiktYz6eNzx2P5ZVflY35BNY58C9-bwNksNG_Qn9EyDvkojCDjpg&h=RYpCgU_6kxRcAbJWv0_VPcHpzEGvHBj7BvPaKZHk638 response: body: string: '' @@ -1305,11 +1305,11 @@ interactions: content-length: - '0' date: - - Mon, 10 Aug 2026 22:02:06 GMT + - Thu, 10 Sep 2026 06:52:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-1f9cf7e4-9507-11f1-94ac-1e2217a8e842?api-version=2026-03-01-preview&t=639219961267886478&c=MIIHlTCCBn2gAwIBAgIRAPJcAXyj4PVuWaPsZt01Ea8wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTMxMDI3MjdaFw0yNjEwMDgxNjI3MjdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvGh44O6OT9eV5zBoE7LVtpq9r87ylQlFliZM7nTFJS6yTj-Ehw3wVWNvnoX-mNFNhmSwdl67kN8W7qk2b-xaDQGvIByXgc0l_A0_66drbjOLw0cVSofjs2VuaxmZRXhJFvM-pt3sXePdevW81JLjMk1YjICdX1r66KxgNYw9bCx-F6txnRsnbEUxeVuuTSII1T4pd9kSGMoM0XsK6OuAWsqAD44880TL7KnfxAAzvx4vR90NSV3y0uLJa8HaKT-yziXCH7CgXY0sGB68jGkpbM3IU2ZOoV259sHfU5b9LAPFIMS11xuvr6G4i-bYfmc-Yd9iBvPW4J94HCylLRHUMQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUC7Fq4o2xVsICe40dVrso6r4tnS4wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82OC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjgvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAdA_pc38CxGkQIQwsCCkLD0bJLoyzIBBC9aOoZt_62ikFeWcKd4MODmGv5o67rlzoqG9qLks5cPaFQwJhg3L5V1bsM5ZXEPy95fL7WHprXALxsLOSFbQBHXan_PGzM8uR9YuYncRSDnWjShzs9tbd9T0Q67l77KYnEN9Hd0eLLkAPXn2AZVICXD1p0uIWNRLn1zDuKStSoEt2WiHS5Yt--0O_iZ77Bdk_aJ83VwOt8SKlGc74nyEIqYek4f2bSDaw99S97Zm10aCosKcDSLj7j7TNKhKPcgpic_bQq12NL8Nlh0jxmzIbSLV3LIjmpBqH1257FEVU4DUx_nJAP03fEg&s=GVq639qUyGHJop7MS_4QIP2hEjPr62Gf84iKtBYXSQCa9UQxmJ5q1rZkD23D1lTnjsN1NCKAOZNYgI-mYXOUqP7nlBQoQ5DZUs3taBpnZmZTpglD3SaXz38NTWRfjbbu8h4llKrYS00hNbnezhpEC_UAYv7Hkgz5xMXyH-pJtZ6leM-PikSeHjXRRGMAZi4T7VtQNvbXnO8DymXBLQPByoPNct4zxuDPyJVRIFXIBdCmnkrR4N2Iams1-T2HUuQ700-Hmy4q15_HqrcX4ukZOSYiCwz83xjZ7uoxiMcvkeg6d-Tk9Or72NiwpqoW7stjcwXDlLxfrmWOg4Ekikp0zg&h=ZbUK_LH_cm4VhdE-2lzCI5tsozn9u6PQrZAtb_Ng0Co + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-3734363e-ace4-11f1-897e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199632316604&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=VyjQCvAVVC4o-VHOHCIsdsjxuAyCff08Df6iSbqXAH_5kFldpGCRaAtzPYeAD2NDQ_zSsQ0pWbTecFxSOaAzCkABtDDZ1v6qb_KZ3cxYQOze6AQrccR9vlTJR8VRzun6ATQxZU8TgZ_baOpSZnZaxJH0TWz04DB-OZDkj8_VCxplp1yOe1OrtGogHDWbUcst_qnTC3yadNFDnmkXyU5LxfVq8idkAf-D4q6HncscGuPlZT7L6QTOLO02tDBXfE0Vezaj-X5FkI-ob42cL3dLoeoDmv4iQoWK7MkwVx6m3H9igR2OXfZsXYVgmzU6X-bokUWV4SRwG5_797yRDKa3pQ&h=t9tBgxmBjoDhEeHEtaGngE3GSBAE-AL_WfB_Ekkr8p0 pragma: - no-cache strict-transport-security: @@ -1319,11 +1319,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/0b10385b-b4b7-426b-9f83-cbd1ba359013 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1f38ee98-840d-4317-a22e-d4fdd2506365 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0E287EB834D24850B50EC88360562F5D Ref B: SN4AA2022304031 Ref C: 2026-08-10T22:02:06Z' + - 'Ref A: 150C98862FB94AB9A5A0ED6D982C516B Ref B: SYD281080711025 Ref C: 2026-09-10T06:52:42Z' status: code: 202 message: Accepted @@ -1341,9 +1341,9 @@ interactions: ParameterSetName: - -g -n -y User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-1f9cf7e4-9507-11f1-94ac-1e2217a8e842?api-version=2026-03-01-preview&t=639219961267886478&c=MIIHlTCCBn2gAwIBAgIRAPJcAXyj4PVuWaPsZt01Ea8wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTMxMDI3MjdaFw0yNjEwMDgxNjI3MjdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvGh44O6OT9eV5zBoE7LVtpq9r87ylQlFliZM7nTFJS6yTj-Ehw3wVWNvnoX-mNFNhmSwdl67kN8W7qk2b-xaDQGvIByXgc0l_A0_66drbjOLw0cVSofjs2VuaxmZRXhJFvM-pt3sXePdevW81JLjMk1YjICdX1r66KxgNYw9bCx-F6txnRsnbEUxeVuuTSII1T4pd9kSGMoM0XsK6OuAWsqAD44880TL7KnfxAAzvx4vR90NSV3y0uLJa8HaKT-yziXCH7CgXY0sGB68jGkpbM3IU2ZOoV259sHfU5b9LAPFIMS11xuvr6G4i-bYfmc-Yd9iBvPW4J94HCylLRHUMQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUC7Fq4o2xVsICe40dVrso6r4tnS4wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82OC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjgvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAdA_pc38CxGkQIQwsCCkLD0bJLoyzIBBC9aOoZt_62ikFeWcKd4MODmGv5o67rlzoqG9qLks5cPaFQwJhg3L5V1bsM5ZXEPy95fL7WHprXALxsLOSFbQBHXan_PGzM8uR9YuYncRSDnWjShzs9tbd9T0Q67l77KYnEN9Hd0eLLkAPXn2AZVICXD1p0uIWNRLn1zDuKStSoEt2WiHS5Yt--0O_iZ77Bdk_aJ83VwOt8SKlGc74nyEIqYek4f2bSDaw99S97Zm10aCosKcDSLj7j7TNKhKPcgpic_bQq12NL8Nlh0jxmzIbSLV3LIjmpBqH1257FEVU4DUx_nJAP03fEg&s=GVq639qUyGHJop7MS_4QIP2hEjPr62Gf84iKtBYXSQCa9UQxmJ5q1rZkD23D1lTnjsN1NCKAOZNYgI-mYXOUqP7nlBQoQ5DZUs3taBpnZmZTpglD3SaXz38NTWRfjbbu8h4llKrYS00hNbnezhpEC_UAYv7Hkgz5xMXyH-pJtZ6leM-PikSeHjXRRGMAZi4T7VtQNvbXnO8DymXBLQPByoPNct4zxuDPyJVRIFXIBdCmnkrR4N2Iams1-T2HUuQ700-Hmy4q15_HqrcX4ukZOSYiCwz83xjZ7uoxiMcvkeg6d-Tk9Or72NiwpqoW7stjcwXDlLxfrmWOg4Ekikp0zg&h=ZbUK_LH_cm4VhdE-2lzCI5tsozn9u6PQrZAtb_Ng0Co + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westcentralus/operationResults/delete-clireg000002-3734363e-ace4-11f1-897e-3cefa50a58cc?api-version=2026-09-01-preview&t=639246199632316604&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=VyjQCvAVVC4o-VHOHCIsdsjxuAyCff08Df6iSbqXAH_5kFldpGCRaAtzPYeAD2NDQ_zSsQ0pWbTecFxSOaAzCkABtDDZ1v6qb_KZ3cxYQOze6AQrccR9vlTJR8VRzun6ATQxZU8TgZ_baOpSZnZaxJH0TWz04DB-OZDkj8_VCxplp1yOe1OrtGogHDWbUcst_qnTC3yadNFDnmkXyU5LxfVq8idkAf-D4q6HncscGuPlZT7L6QTOLO02tDBXfE0Vezaj-X5FkI-ob42cL3dLoeoDmv4iQoWK7MkwVx6m3H9igR2OXfZsXYVgmzU6X-bokUWV4SRwG5_797yRDKa3pQ&h=t9tBgxmBjoDhEeHEtaGngE3GSBAE-AL_WfB_Ekkr8p0 response: body: string: '' @@ -1353,7 +1353,7 @@ interactions: content-length: - '0' date: - - Mon, 10 Aug 2026 22:02:16 GMT + - Thu, 10 Sep 2026 06:52:53 GMT expires: - '-1' pragma: @@ -1365,11 +1365,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/c6aae145-f645-4ec3-921d-1761903ecdb6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/52354eeb-f752-4078-a2c7-e614bcc0b69d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2B58E2D235C54884AA0F7116B2360903 Ref B: SN4AA2022301019 Ref C: 2026-08-10T22:02:17Z' + - 'Ref A: 57172E572C974A338F8D902BADFF7548 Ref B: SYD281080711052 Ref C: 2026-09-10T06:52:54Z' status: code: 200 message: OK @@ -1389,7 +1389,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cliregvnet?api-version=2025-07-01 response: @@ -1399,17 +1399,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bc06cd9f-f5cf-493d-a747-d96a7660d71a?api-version=2025-07-01&t=639219961383568179&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=kELlLZ2wm8yYPQ5nF39H5o2AlMR996RpR403Pp3MmLJgEBbxFPTQjN8gYCQXrMH_hYj7Qu7HKRtwLHx9ZbZ9eDpe0r-3dlfJlejKnovP2-j0Scio5tMz_VkmWIeGm2X0hrbV7gkBkCiCtd8NqNK-eyCQq9RgxB1EfYgKbpOF8Ajc0XYfBagR_Rq3k-w3CYK5hjnRnbsrHJYQmLWXGzFKxBuK6gnqPLUQOUjPJpf2vL6Y7Zfxmyoket3EEaWZtHD43soDUt6rDfPzYhoayhMFWq-xBDia8I6cB0kBGA2sb1RhKLT3HFQ0Vu6QBhdBR7fdcgQB82-kV3crxgkKNao6wg&h=xKIgrL71Vl6woHVAmUabjobC9JM02Prr6QBpSEW3o-k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/12bbcc12-194b-4132-a4a0-dc0a7b758357?api-version=2025-07-01&t=639246199766535802&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=Vh7BcEXNT8evr6pp16OZL66ehiR2VQQLE7BB0s5_AjCL4e3JTXPwx3srpsMEZCAA_mGd9eOTvd9tG3WWFl0nzMhGoT2CQkB9nvu30uV566VFd0C1Lx2a5fK-whPRC-KvjoTFgVHQo4G_6EVq1Fk5ipdss40yDfd0Hcmg5wJT9RKg9ugQTReTgCgLrMhYYb6nmlJfT_HLSqpNM0HJv-HILVEWxrt7OZkHPJfk-1I8ubtNWW1J0GxHQKWDcZltat9MEYBLos3yMNtQLNeyRcy5Y4s1cw4pc6XvMywFFDIIAHgCp973wf74IzNPmjZkvAcXknLpDa5uKqOvufaUv71jcw&h=F5B1F7U1UQtYyNRKGmUFHyxFQ8XAqZPGp1uJJMi3Y90 cache-control: - no-cache content-length: - '0' date: - - Mon, 10 Aug 2026 22:02:18 GMT + - Thu, 10 Sep 2026 06:52:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bc06cd9f-f5cf-493d-a747-d96a7660d71a?api-version=2025-07-01&t=639219961383568179&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=eSIYH4dukXUEsrS95eaqrwAfENMoWuqpEn3Y_SJ_5uoEs9EC28vPYL3wA5klYrzn_XvvmZaW68ZCtPXrCo0PhmpCfpcvwh-Z58rk7TTUrZGJLo5_CFe8TRgvw7JLQnPROCHt8JnjF-RKOxTLn2Kwd2zxXZ3uTM87GrunWt4psM9nJqMyalYNLAH07bI_BjFqWIWd9lVpK11Br-pxmE8uKjyNMQK7t9BElxwdnngLCDmAw-Y2ESsw6LEPP2vMf8QTS6s5fAIYEGXmS9TU-rK58O4tu2Evt6BahvRl6aLlGgEto1BSwAkt8v2HU38I-a8gxYNY1CSwFjSFNWof8pZmFQ&h=sGzI56CWxXYk-jnVbfxDGRtOobVxh87unjg5MpMTkBA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/12bbcc12-194b-4132-a4a0-dc0a7b758357?api-version=2025-07-01&t=639246199766691097&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=K75cOdMSNo7NxY6FAxv6VnxXRzuRjMfpjaJJ10Gqt_W1G7dghF5VI-TvLNSwMx27KEORNjRoVbPeqNoJrZ4E_ygzFpnfHuwJQOHic4cJ-IvPpJ94w7Yucyp3V8n87AZwILf3hnvq3e3msPXOyI-f-KyUKTuU4cO_hya-qXD1pKtH6FLANf2do7FWHchqBLbKVcZbGtfXIHBMT6cbiAzSHIcgCRn041qZnZtVnX2OzM_nKTOBIiH-cmsRU6LJbligd5bEjWunwtv83hqypySeD5e4_-u-818iFkp7B43WA9uUFByJqLnomTFzWzYVkg5Fa30xaSvZtQ2POTI-TbKLaw&h=MfSEptj9M21AJ1lG-wL4C2UZ6EHAbffGlrwmO-RHhyE pragma: - no-cache strict-transport-security: @@ -1419,9 +1419,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f6927edf-5a4c-460e-9ced-41956ba690a8 + - 71a67c67-3814-4166-a173-24df6f3ceee7 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/westcentralus/b7728df2-9036-4e2d-a2bc-4f4ad161455d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westcentralus/927d74a4-4e3d-4bad-92b8-9db6d23809f5 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: @@ -1430,10 +1430,10 @@ interactions: - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.6, etc x-msedge-ref: - - 'Ref A: FF0002F0C5E1491283E0E6C49102A42D Ref B: SN4AA2022303027 Ref C: 2026-08-10T22:02:17Z' + - 'Ref A: B64A63E525E941138F9981AB6AF1199B Ref B: SYD281080705040 Ref C: 2026-09-10T06:52:55Z' status: code: 202 - message: Accepted + message: '' - request: body: null headers: @@ -1448,9 +1448,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bc06cd9f-f5cf-493d-a747-d96a7660d71a?api-version=2025-07-01&t=639219961383568179&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=kELlLZ2wm8yYPQ5nF39H5o2AlMR996RpR403Pp3MmLJgEBbxFPTQjN8gYCQXrMH_hYj7Qu7HKRtwLHx9ZbZ9eDpe0r-3dlfJlejKnovP2-j0Scio5tMz_VkmWIeGm2X0hrbV7gkBkCiCtd8NqNK-eyCQq9RgxB1EfYgKbpOF8Ajc0XYfBagR_Rq3k-w3CYK5hjnRnbsrHJYQmLWXGzFKxBuK6gnqPLUQOUjPJpf2vL6Y7Zfxmyoket3EEaWZtHD43soDUt6rDfPzYhoayhMFWq-xBDia8I6cB0kBGA2sb1RhKLT3HFQ0Vu6QBhdBR7fdcgQB82-kV3crxgkKNao6wg&h=xKIgrL71Vl6woHVAmUabjobC9JM02Prr6QBpSEW3o-k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/12bbcc12-194b-4132-a4a0-dc0a7b758357?api-version=2025-07-01&t=639246199766535802&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=Vh7BcEXNT8evr6pp16OZL66ehiR2VQQLE7BB0s5_AjCL4e3JTXPwx3srpsMEZCAA_mGd9eOTvd9tG3WWFl0nzMhGoT2CQkB9nvu30uV566VFd0C1Lx2a5fK-whPRC-KvjoTFgVHQo4G_6EVq1Fk5ipdss40yDfd0Hcmg5wJT9RKg9ugQTReTgCgLrMhYYb6nmlJfT_HLSqpNM0HJv-HILVEWxrt7OZkHPJfk-1I8ubtNWW1J0GxHQKWDcZltat9MEYBLos3yMNtQLNeyRcy5Y4s1cw4pc6XvMywFFDIIAHgCp973wf74IzNPmjZkvAcXknLpDa5uKqOvufaUv71jcw&h=F5B1F7U1UQtYyNRKGmUFHyxFQ8XAqZPGp1uJJMi3Y90 response: body: string: '{"status":"Succeeded"}' @@ -1462,7 +1462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:02:18 GMT + - Thu, 10 Sep 2026 06:52:56 GMT expires: - '-1' pragma: @@ -1474,18 +1474,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9311093f-fc86-4eca-a60a-37fe90a088b0 + - de860595-2aca-4501-8ece-65343494ec73 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/b3433c7a-553c-4e87-92c3-2dd44203f667 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/09c1bdab-290e-405a-a9bd-a4694fafdb52 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc x-msedge-ref: - - 'Ref A: 86915348EA744E49ACE596C21005AEE5 Ref B: SN4AA2022305033 Ref C: 2026-08-10T22:02:18Z' + - 'Ref A: C8A64E2A88D542F39F7E7D68F5F3A5C1 Ref B: SYD281080705062 Ref C: 2026-09-10T06:52:57Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1500,9 +1500,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.89.0 azsdk-python-core/1.39.0 Python/3.13.15 (macOS-26.6-arm64-arm-64bit-Mach-O) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bc06cd9f-f5cf-493d-a747-d96a7660d71a?api-version=2025-07-01&t=639219961383568179&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=eSIYH4dukXUEsrS95eaqrwAfENMoWuqpEn3Y_SJ_5uoEs9EC28vPYL3wA5klYrzn_XvvmZaW68ZCtPXrCo0PhmpCfpcvwh-Z58rk7TTUrZGJLo5_CFe8TRgvw7JLQnPROCHt8JnjF-RKOxTLn2Kwd2zxXZ3uTM87GrunWt4psM9nJqMyalYNLAH07bI_BjFqWIWd9lVpK11Br-pxmE8uKjyNMQK7t9BElxwdnngLCDmAw-Y2ESsw6LEPP2vMf8QTS6s5fAIYEGXmS9TU-rK58O4tu2Evt6BahvRl6aLlGgEto1BSwAkt8v2HU38I-a8gxYNY1CSwFjSFNWof8pZmFQ&h=sGzI56CWxXYk-jnVbfxDGRtOobVxh87unjg5MpMTkBA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/12bbcc12-194b-4132-a4a0-dc0a7b758357?api-version=2025-07-01&t=639246199766691097&c=MIIHlDCCBnygAwIBAgIQdihCASSXG-dKfI_D-VVlqTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDcwNjE5MTk1OVoXDTI3MDEwMjAxMTk1OVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCzjzGCVexW-mQdIfXmvE0Vt_P4-9YdQhyjMqo7G6WcBLzwzBfqXK0uIcnMBRepVKLYh_mPxAV2P2GCfKEZbu_KmSa0zuX4fJ1qZo2za_48297xAhNszXRLP4zIi66J_gcILVC4uuA8KDZdsN34MmmaNato73BvNvXzzSHliKdZFig5HWRCYUHLudu_K-iZXTmHO1-u4BDHSY2xEcO2Wi5tGJ1AZ4fgyKCSxFulPoxqtClK1Ek6Mpa2sMjLT2pr-ffHy0NipMNi07iHdm9n4ZRkBw18gJOeF1ShpgcOAFrfLaag-2rp7W4nVBHuyY--Dtf50SIb-FsnYfuVqCBWB-FAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRXALftRFmjY1LQNbXJ0uYzMnCCqzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzQzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNDMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS80My9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAZrjmWibEuK6QF0t_B1WxpWLqYTQIVZbMw_NyEFtCc_8S5LYZrHcsmMsKZtXs7xqOJiF1TIettwqIw_qlbKRXIQohsTkAni2agjO-3qncnQkDsxz4WyJ0gXt7kfy-kEn9MQRaKjnnaXjhKb3sEpluTCbYgGO6F4Cx3q2vlJVPqlSdRys7ZivOGAtX1woiYL14Oc3MsaafYpdQVaWZ_pX3ZzF2UIq4udNkmPInHLdrIi5qfOi4nQy_XShbwqfvhz4mcqaooZQYbFX57jgSSBbrGsBLpe9SZYEOzi0p11hbbbKVre54QjlO8hGAiyPGTkW28VeoP4NXb9gdJ1-CKzw7l&s=K75cOdMSNo7NxY6FAxv6VnxXRzuRjMfpjaJJ10Gqt_W1G7dghF5VI-TvLNSwMx27KEORNjRoVbPeqNoJrZ4E_ygzFpnfHuwJQOHic4cJ-IvPpJ94w7Yucyp3V8n87AZwILf3hnvq3e3msPXOyI-f-KyUKTuU4cO_hya-qXD1pKtH6FLANf2do7FWHchqBLbKVcZbGtfXIHBMT6cbiAzSHIcgCRn041qZnZtVnX2OzM_nKTOBIiH-cmsRU6LJbligd5bEjWunwtv83hqypySeD5e4_-u-818iFkp7B43WA9uUFByJqLnomTFzWzYVkg5Fa30xaSvZtQ2POTI-TbKLaw&h=MfSEptj9M21AJ1lG-wL4C2UZ6EHAbffGlrwmO-RHhyE response: body: string: '' @@ -1510,17 +1510,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bc06cd9f-f5cf-493d-a747-d96a7660d71a?api-version=2025-07-01&t=639219961394106130&c=MIIHlTCCBn2gAwIBAgIRAPJcAXyj4PVuWaPsZt01Ea8wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTMxMDI3MjdaFw0yNjEwMDgxNjI3MjdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvGh44O6OT9eV5zBoE7LVtpq9r87ylQlFliZM7nTFJS6yTj-Ehw3wVWNvnoX-mNFNhmSwdl67kN8W7qk2b-xaDQGvIByXgc0l_A0_66drbjOLw0cVSofjs2VuaxmZRXhJFvM-pt3sXePdevW81JLjMk1YjICdX1r66KxgNYw9bCx-F6txnRsnbEUxeVuuTSII1T4pd9kSGMoM0XsK6OuAWsqAD44880TL7KnfxAAzvx4vR90NSV3y0uLJa8HaKT-yziXCH7CgXY0sGB68jGkpbM3IU2ZOoV259sHfU5b9LAPFIMS11xuvr6G4i-bYfmc-Yd9iBvPW4J94HCylLRHUMQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUC7Fq4o2xVsICe40dVrso6r4tnS4wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82OC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjgvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAdA_pc38CxGkQIQwsCCkLD0bJLoyzIBBC9aOoZt_62ikFeWcKd4MODmGv5o67rlzoqG9qLks5cPaFQwJhg3L5V1bsM5ZXEPy95fL7WHprXALxsLOSFbQBHXan_PGzM8uR9YuYncRSDnWjShzs9tbd9T0Q67l77KYnEN9Hd0eLLkAPXn2AZVICXD1p0uIWNRLn1zDuKStSoEt2WiHS5Yt--0O_iZ77Bdk_aJ83VwOt8SKlGc74nyEIqYek4f2bSDaw99S97Zm10aCosKcDSLj7j7TNKhKPcgpic_bQq12NL8Nlh0jxmzIbSLV3LIjmpBqH1257FEVU4DUx_nJAP03fEg&s=tg95tmpf7ZW1IVFzgvOiKqWRV4Irhz4WkDJyMXo0SrpOlitxa9GuaKr6pqbttaE3kHpRYfLhznGAGpIXHU8ijZFI_sbrhWjfK6wmAoFFeAT6seqi19jfisHHJ1bUCL3yuf0uNkF8jc_FhPO60MQsaNLi1OVMHK_d_NnK16jciaQt3luwWEnmNUdlwEPyShr_HoUhxlsPFTZCgSN_erObRdIRyeo0VZtu4o98vSYgRUpr0aWpD7scNy0AQsjwtJ_DVuENfLR4Azn31jx4wBRu3fmc0J2PyrIZFKRY3ldYXJ1bgdl2Mu7kbijhaZksWcvBKD0Af756FJeQpe2tATYmgA&h=EnxcmylxSAdFih2HNW9t058KSNRNEQPELqGjy1s6jvM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/12bbcc12-194b-4132-a4a0-dc0a7b758357?api-version=2025-07-01&t=639246199785245231&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=JkZwTEcu2AP1e_RZPwpoG8zo4PLSoWkeYyJjXPsx6TjmfVgZFz3Kg8KcG9D_B857H0gUmrOS8m1PX1G7LSJLff2cy1setjcUpcWO_b8iQ4aJqdGDzG08wUwwYjd7UAspF9at_-e_TPZUAulEzTxyomCHcWi85wZ8eTbv4VmLjI-bJMbcTOwL-S0Pm46ZP6LDWWFOoWEcmg2zAMyihmiLs9uvp69B1lBnLBaaHMPg6jHuDagJ12B_SRKE2y1OYmjuqmKjW8GTpGv-I2gv7vBTOKcN1GBQzMVCeuDhfLzpYLCNnhLaoK-aSz9bjc6fjywJgxHk7-_wKbAPHQKA2lXGzw&h=NYyowRLLuEinU2PTwqNMbGE-bK9lpRwnDvg3c-ueUtI cache-control: - no-cache content-type: - application/json; charset=utf-8 date: - - Mon, 10 Aug 2026 22:02:18 GMT + - Thu, 10 Sep 2026 06:52:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/bc06cd9f-f5cf-493d-a747-d96a7660d71a?api-version=2025-07-01&t=639219961394106130&c=MIIHlTCCBn2gAwIBAgIRAPJcAXyj4PVuWaPsZt01Ea8wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTMxMDI3MjdaFw0yNjEwMDgxNjI3MjdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvGh44O6OT9eV5zBoE7LVtpq9r87ylQlFliZM7nTFJS6yTj-Ehw3wVWNvnoX-mNFNhmSwdl67kN8W7qk2b-xaDQGvIByXgc0l_A0_66drbjOLw0cVSofjs2VuaxmZRXhJFvM-pt3sXePdevW81JLjMk1YjICdX1r66KxgNYw9bCx-F6txnRsnbEUxeVuuTSII1T4pd9kSGMoM0XsK6OuAWsqAD44880TL7KnfxAAzvx4vR90NSV3y0uLJa8HaKT-yziXCH7CgXY0sGB68jGkpbM3IU2ZOoV259sHfU5b9LAPFIMS11xuvr6G4i-bYfmc-Yd9iBvPW4J94HCylLRHUMQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUC7Fq4o2xVsICe40dVrso6r4tnS4wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82OC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzY4L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjgvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAdA_pc38CxGkQIQwsCCkLD0bJLoyzIBBC9aOoZt_62ikFeWcKd4MODmGv5o67rlzoqG9qLks5cPaFQwJhg3L5V1bsM5ZXEPy95fL7WHprXALxsLOSFbQBHXan_PGzM8uR9YuYncRSDnWjShzs9tbd9T0Q67l77KYnEN9Hd0eLLkAPXn2AZVICXD1p0uIWNRLn1zDuKStSoEt2WiHS5Yt--0O_iZ77Bdk_aJ83VwOt8SKlGc74nyEIqYek4f2bSDaw99S97Zm10aCosKcDSLj7j7TNKhKPcgpic_bQq12NL8Nlh0jxmzIbSLV3LIjmpBqH1257FEVU4DUx_nJAP03fEg&s=bfHnvg2Zn2_8CgQXGxde3d9iAtZOWyBQxSWmEZ1X4QiyLl9Y2NI8D3tcVmHQ3BT1K2Dh9kYbryJK7nxGq14txHtzVcw4mVrDCpWJ4WQmozPLvbfCNxlyvK3H375slgY87xvFoUlJqv0qmbIxXHa4icaqY-CsmtHLa6gr376BsyAJfJjv5-4TvSOJI-TMGothgDG768SiGwJfE8q8yz2BgGY-ZPEI7VvQ-AwpvHQYAKCDp5OZ-MVTba9usWDqXnb4VK6AIYBNR8MTOVVpNUlKqje-gMLUrPzwoRXHnFpQFE5F-1sOjgiWKzoPf7kkW_MZlnB-n2pKNITauTaQ_qpfgQ&h=vqDS4r4G8Le1-elhAA-XeiQIr_7V7EC8P09RQcENmyk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operationResults/12bbcc12-194b-4132-a4a0-dc0a7b758357?api-version=2025-07-01&t=639246199785401499&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=V3BzGVAm7Df30-ECBgPGlAN6Vj1GRjaGjNRFMysEaF5m3jOpd4yFjEOQzLuhfQTXSc7TeJ14ETHgUTAIzJpSvjISOov2eCW4zLeQ9njuTBG2fjBP8qOpaSaQqMgiOtNbdCD-b47MT_LUo3ZR9QDgmVzUxfZgnZtauiNjmtfnkEkaUaQNNfj9pgtGZT2kBz_hYdIXlqvB8QpHut1eg6zCuZpxEtE0DsgWC5y29XB3c8MFxXSZVIpz3jEsE8L6AHqctxfR76xvO2g5QGO1wNj9xiKsmZttPXNxGB9LFTu3NYxQVHKBfDDqyB7Wfr03BSunFGEA8qeNiH6oLiexfzDWMw&h=v4NyPNcv81OIGJtY834KdqVPyqA_m5TfYbjXqfCP2ws pragma: - no-cache strict-transport-security: @@ -1530,15 +1530,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f6927edf-5a4c-460e-9ced-41956ba690a8 + - 71a67c67-3814-4166-a173-24df6f3ceee7 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3e370110-54b9-4ff6-84a5-d00c52881cd9/southcentralus/fb56f5c4-4a40-4962-a69c-55ce3ed2449a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/002804b6-d0c4-471f-87ed-5af066ba0858 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc + - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 10820F6E6C134DC09A555FD24D9EDD99 Ref B: SN4AA2022304025 Ref C: 2026-08-10T22:02:19Z' + - 'Ref A: 609119FA6D464BD783E7D228C31D9A0F Ref B: SYD281080709023 Ref C: 2026-09-10T06:52:58Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_rbac_auto_task.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_rbac_auto_task.yaml index f4b9ca7bbc1..9a2be4fc7d5 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_rbac_auto_task.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_rbac_auto_task.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku --role-assignment-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:56 GMT + - Thu, 10 Sep 2026 10:01:28 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/16773539-62ac-4cfe-b687-acfdd9efd67d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/fe88561a-d42b-43de-bdcb-6a9a43518871 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 2CB29EFF5D8E44F5800FD06466492BEE Ref B: SJC211051201027 Ref C: 2026-03-24T04:13:48Z' + - 'Ref A: B1ED869425E04E5698EAEA56226F9F77 Ref B: SG2AA1040520034 Ref C: 2026-09-10T10:01:19Z' status: code: 200 message: OK @@ -70,21 +70,21 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --cmd --context --schedule --auth-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3867' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:56 GMT + - Thu, 10 Sep 2026 10:01:29 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8BC47741C27A4155AEBC6DBFE7CDFFCA Ref B: BY1AA1072319025 Ref C: 2026-03-24T04:13:56Z' + - 'Ref A: 0CE6445DE5294FA58008CDAE7B59BC07 Ref B: SG2AA1040519042 Ref C: 2026-09-10T10:01:30Z' status: code: 200 message: OK @@ -116,23 +116,23 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --cmd --context --schedule --auth-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:56 GMT + - Thu, 10 Sep 2026 10:01:32 GMT expires: - '-1' pragma: @@ -146,19 +146,20 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 721308955776408EA16783044706C4CE Ref B: BY1AA1072316023 Ref C: 2026-03-24T04:13:56Z' + - 'Ref A: D16CB09602054C1B8EE7645B2E316035 Ref B: SG2AA1040513052 Ref C: 2026-09-10T10:01:32Z' status: code: 200 message: OK - request: body: '{"identity": {"type": "SystemAssigned"}, "location": "westus", "properties": - {"isSystemTask": false, "status": "Enabled", "trigger": {"timerTriggers": [{"name": - "t1", "status": "Enabled", "schedule": "0 21 * * *"}], "baseImageTrigger": {"baseImageTriggerType": - "Runtime", "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": - "Default"}}, "agentConfiguration": {"cpu": 2}, "platform": {"os": "linux", "architecture": - "amd64"}, "credentials": {"sourceRegistry": {"loginMode": "Default", "identity": - "[system]"}}, "timeout": 3600, "step": {"encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK", - "values": [], "type": "EncodedTask"}}}' + {"timeout": 3600, "status": "Enabled", "platform": {"os": "linux", "architecture": + "amd64"}, "step": {"encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK", + "values": [], "type": "EncodedTask"}, "isSystemTask": false, "credentials": + {"sourceRegistry": {"loginMode": "Default", "identity": "[system]"}}, "agentConfiguration": + {"cpu": 2}, "trigger": {"timerTriggers": [{"name": "t1", "status": "Enabled", + "schedule": "0 21 * * *"}], "baseImageTrigger": {"baseImageTriggerType": "Runtime", + "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": + "Default"}}}}' headers: Accept: - application/json @@ -175,13 +176,13 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id --cmd --context --schedule --auth-mode User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:13:58.1451049+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 - 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:57.2977996+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:57.2977996+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T10:01:38.4432936+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 + 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:36.2394769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:36.2394769+00:00"}}' headers: cache-control: - no-cache @@ -190,7 +191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:57 GMT + - Thu, 10 Sep 2026 10:01:38 GMT expires: - '-1' pragma: @@ -202,13 +203,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cf57800b-58ae-4910-8ade-2f8f54c7da0d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/587275fb-7afe-4093-bbba-148e56bb1903 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DF1F186D9CE24419804E6DA77936FDCE Ref B: SJC211051205027 Ref C: 2026-03-24T04:13:57Z' + - 'Ref A: 3E641755A190402EA3784260076B2B99 Ref B: SG2AA1070304062 Ref C: 2026-09-10T10:01:33Z' status: code: 200 message: OK @@ -226,21 +227,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg25urwx6g3gnel67ga34rimjbhkjwkaqbgsjsyvrotgjtefx6mvdzx22a33geh7sdo/providers/Microsoft.ContainerRegistry/registries/testregpcspdzyosu7hm","name":"testregpcspdzyosu7hm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:22.1816727Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:22.1816727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '4463' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:58 GMT + - Thu, 10 Sep 2026 10:01:40 GMT expires: - '-1' pragma: @@ -254,7 +255,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 306D76F8D82E48CC90A9774BE5343F6B Ref B: SJC211051201035 Ref C: 2026-03-24T04:13:58Z' + - 'Ref A: B8BB10CFF9A145DD8221F4983058993C Ref B: SG2AA1040517025 Ref C: 2026-09-10T10:01:40Z' status: code: 200 message: OK @@ -272,23 +273,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:58 GMT + - Thu, 10 Sep 2026 10:01:42 GMT expires: - '-1' pragma: @@ -302,7 +303,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9B39D43977B34FBBA39F32D21A496B7C Ref B: BY1AA1072316052 Ref C: 2026-03-24T04:13:58Z' + - 'Ref A: 35A2348D218B4D4492BB1FA0D2F23D94 Ref B: SG2AA1040515034 Ref C: 2026-09-10T10:01:42Z' status: code: 200 message: OK @@ -322,13 +323,13 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:13:58.1451049+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 - 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:57.2977996+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:57.2977996+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T10:01:38.4432936+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 + 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:36.2394769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:36.2394769+00:00"}}' headers: cache-control: - no-cache @@ -337,7 +338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:58 GMT + - Thu, 10 Sep 2026 10:01:44 GMT expires: - '-1' pragma: @@ -349,13 +350,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5b8e4d06-0ada-43ed-afce-516fe7eefc5d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6e251db2-1fe6-429c-862a-0f9f73f80db4 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 50FA086B25E248D4B0C25EAD0922509F Ref B: BY1AA1072315029 Ref C: 2026-03-24T04:13:59Z' + - 'Ref A: 4827959A2F5142FB9A72CCCF1EB72908 Ref B: SG2AA1070301040 Ref C: 2026-09-10T10:01:45Z' status: code: 200 message: OK @@ -378,12 +379,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T04:13:59+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:59.3825593+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-09-10T10:01:47+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:47.4135794+00:00"}}' headers: cache-control: - no-cache @@ -392,7 +393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:58 GMT + - Thu, 10 Sep 2026 10:01:46 GMT expires: - '-1' pragma: @@ -404,13 +405,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2328c977-86a0-444d-9692-10709402957c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b9d66055-2724-4f39-bb33-c7ab8de8dcc0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A27F1772D19F40FBB67C9ADA3B31A98A Ref B: BY1AA1072318036 Ref C: 2026-03-24T04:13:59Z' + - 'Ref A: 79F4D24F90524094AC4ABCD54977CC92 Ref B: SG2AA1040520025 Ref C: 2026-09-10T10:01:47Z' status: code: 200 message: OK @@ -428,21 +429,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T04:13:59+00:00","runType":"QuickRun","createTime":"2026-03-24T04:13:59.5089023+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:59.3825593+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Running","lastUpdatedTime":"2026-09-10T10:01:47+00:00","runType":"QuickRun","createTime":"2026-09-10T10:01:47.4697021+00:00","startTime":"2026-09-10T10:01:47.8368343+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:47.4135794+00:00"}}' headers: cache-control: - no-cache content-length: - - '718' + - '767' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:13:59 GMT + - Thu, 10 Sep 2026 10:01:48 GMT expires: - '-1' pragma: @@ -454,11 +455,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9ad6c14d-bf56-49d5-ad2c-84b2588550fd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1189cfc9-3c5a-4794-88a2-be84d1cb032c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C71B9A5421F04A2386412458A118CE95 Ref B: BY1AA1072317034 Ref C: 2026-03-24T04:13:59Z' + - 'Ref A: 8FCF01FA980E4267840D84F21C6816B6 Ref B: SG2AA1070303042 Ref C: 2026-09-10T10:01:49Z' status: code: 200 message: OK @@ -476,13 +477,13 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-03-24T04:14:08+00:00","runType":"QuickRun","createTime":"2026-03-24T04:13:59.5089023+00:00","startTime":"2026-03-24T04:13:59.8349623+00:00","finishTime":"2026-03-24T04:14:08.9546637+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","runErrorMessage":"failed - during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:59.3825593+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Failed","lastUpdatedTime":"2026-09-10T10:01:54+00:00","runType":"QuickRun","createTime":"2026-09-10T10:01:47.4697021+00:00","startTime":"2026-09-10T10:01:47.8368343+00:00","finishTime":"2026-09-10T10:01:54.3767708+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","runErrorMessage":"failed + during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:47.4135794+00:00"}}' headers: cache-control: - no-cache @@ -491,7 +492,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:14:28 GMT + - Thu, 10 Sep 2026 10:02:20 GMT expires: - '-1' pragma: @@ -503,11 +504,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/bbcdf267-cc67-4e38-88c4-447fc0e84b46 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/433148c9-5342-48ef-9de2-8ab4288799c1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 17A093D9E7CD419E8A35E18820C54597 Ref B: BY1AA1072320040 Ref C: 2026-03-24T04:14:29Z' + - 'Ref A: A610BADA5602492B9F22387DE471454D Ref B: SG2AA1040519040 Ref C: 2026-09-10T10:02:20Z' status: code: 200 message: OK @@ -525,40 +526,44 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2780c7a525-065e-4198-8d08-f9fb692612dc%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%278d0fa0cf-469e-4c25-a99e-0c52ca148009%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '92' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:00 GMT + - Thu, 10 Sep 2026 10:02:52 GMT odata-version: - '4.0' request-id: - - 480afdde-3697-4bbc-84fa-e80bb78deb5e + - 5cde59a3-03b3-4dee-bf6d-cc7a609045a3 strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF0001A2F2"}}' + - '{"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"ML1PEPF00004AEA"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["80c7a525-065e-4198-8d08-f9fb692612dc"], "types": ["user", "group", + body: '{"ids": ["8d0fa0cf-469e-4c25-a99e-0c52ca148009"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -576,35 +581,39 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"80c7a525-065e-4198-8d08-f9fb692612dc","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask"],"appDisplayName":null,"appDescription":null,"appId":"0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-03-24T04:13:57Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/timerTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","https://identity.azure.net/iOCiNhX85c7SkveY8krAy0mHOVmuGnRY96TW96ZaGx8="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"8A06379E0B75CAA8CAF7BFEC20D446523CE2DB5C","displayName":"CN=0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","endDateTime":"2026-06-22T04:08:00Z","key":null,"keyId":"f25a11bb-94c1-4239-8fab-e854730b5d75","startDateTime":"2026-03-24T04:08:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask"],"appDisplayName":null,"appDescription":null,"appId":"0daa7cd4-051a-4c85-9085-489ecb0e9b33","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-09-10T10:01:36Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/timerTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["0daa7cd4-051a-4c85-9085-489ecb0e9b33","https://identity.azure.net/7FjWf1yC9wJD+X/njUedmL6VavU4fKBsgjiNwQdouoc="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"0CBB817E94D096304DACE368A568A8B1186707C2","displayName":"CN=0daa7cd4-051a-4c85-9085-489ecb0e9b33","endDateTime":"2026-12-09T09:56:00Z","key":null,"keyId":"5c0e38f0-12b7-4758-8567-02edc9bd558a","startDateTime":"2026-09-10T09:56:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '1839' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:00 GMT + - Thu, 10 Sep 2026 10:02:53 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - a790e73f-ef2b-4cfd-8d2b-7c7bf873edf2 + - eb6e4e3d-5aad-44d4-a16e-3616d04b7baf strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF0003E4FF"}}' + - '{"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"ML1PEPF00004AEA"}}' x-ms-resource-unit: - '3' status: @@ -624,9 +633,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27 response: body: string: '{"value":[{"properties":{"roleName":"Container Registry Repository @@ -641,7 +650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:00 GMT + - Thu, 10 Sep 2026 10:02:53 GMT expires: - '-1' pragma: @@ -653,17 +662,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/827f2694-4f75-46a7-9a77-c8132b7e1318 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fa5e4ee1-f85e-4ca1-9c4e-9cbad427f16c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 08E788452A23475FA8B47E7978A329F9 Ref B: BY1AA1072316025 Ref C: 2026-03-24T04:15:00Z' + - 'Ref A: B560096F8E1E45098FB573758053E46B Ref B: SG2AA1070306062 Ref C: 2026-09-10T10:02:54Z' status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c", - "principalId": "80c7a525-065e-4198-8d08-f9fb692612dc", "principalType": "ServicePrincipal"}}' + body: '{"properties": {"principalId": "8d0fa0cf-469e-4c25-a99e-0c52ca148009", + "roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c", + "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -680,12 +690,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:15:01.0788141Z","updatedOn":"2026-03-24T04:15:01.2608172Z","createdBy":null,"updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T10:02:55.8855931Z","updatedOn":"2026-09-10T10:02:56.0845843Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -694,7 +704,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:02 GMT + - Thu, 10 Sep 2026 10:02:57 GMT expires: - '-1' pragma: @@ -706,13 +716,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/06232a19-05d5-43fe-9776-acfdf22ff122 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/790fb481-066d-46bb-9fc2-ac69a59f6fed x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2984C37480C149CDAD910DCCB8892473 Ref B: SJC211051204035 Ref C: 2026-03-24T04:15:00Z' + - 'Ref A: D489DCD068204A099DA5071EF0F51BE7 Ref B: SG2AA1040520029 Ref C: 2026-09-10T10:02:55Z' status: code: 201 message: Created @@ -730,21 +740,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg25urwx6g3gnel67ga34rimjbhkjwkaqbgsjsyvrotgjtefx6mvdzx22a33geh7sdo/providers/Microsoft.ContainerRegistry/registries/testregpcspdzyosu7hm","name":"testregpcspdzyosu7hm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:22.1816727Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:22.1816727Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg25urwx6g3gnel67ga34rimjbhkjwkaqbgsjsyvrotgjtefx6mvdzx22a33geh7sdo/providers/Microsoft.ContainerRegistry/registries/testreg2fjsxpjjuyv4h","name":"testreg2fjsxpjjuyv4h","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:43.1915494Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:43.1915494Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '5059' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:47 GMT + - Thu, 10 Sep 2026 10:03:43 GMT expires: - '-1' pragma: @@ -758,7 +768,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A8A72CBE973740C49B47E627902E88F9 Ref B: BY1AA1072318054 Ref C: 2026-03-24T04:15:48Z' + - 'Ref A: 97392BE8B4D743EDAC262EE1741878E2 Ref B: SG2AA1040515034 Ref C: 2026-09-10T10:03:43Z' status: code: 200 message: OK @@ -776,23 +786,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:48 GMT + - Thu, 10 Sep 2026 10:03:44 GMT expires: - '-1' pragma: @@ -806,7 +816,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FB14AA1FA3E44127A53ADAEFC8E32C3A Ref B: BY1AA1072320060 Ref C: 2026-03-24T04:15:48Z' + - 'Ref A: 6425AE8CAF5842B6BF0508764A26F7DD Ref B: SG2AA1070304042 Ref C: 2026-09-10T10:03:45Z' status: code: 200 message: OK @@ -826,13 +836,13 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:13:58.1451049+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 - 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:57.2977996+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:57.2977996+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T10:01:38.4432936+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 + 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:36.2394769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:36.2394769+00:00"}}' headers: cache-control: - no-cache @@ -841,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:48 GMT + - Thu, 10 Sep 2026 10:03:46 GMT expires: - '-1' pragma: @@ -853,13 +863,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f468d7a7-f1da-4fe5-9f89-38c4041b0daa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d8813ec7-7261-4f61-9304-fc1257af31a6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 9345349A06764266BBAD2E6CA290CBAC Ref B: SJC211051203049 Ref C: 2026-03-24T04:15:48Z' + - 'Ref A: B78C73EDF31840A5ACA22B0C1F96A6C8 Ref B: SG2AA1040519054 Ref C: 2026-09-10T10:03:47Z' status: code: 200 message: OK @@ -882,21 +892,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T04:15:49+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:15:49.068841+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-09-10T10:03:48+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:03:48.7836137+00:00"}}' headers: cache-control: - no-cache content-length: - - '517' + - '518' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:49 GMT + - Thu, 10 Sep 2026 10:03:48 GMT expires: - '-1' pragma: @@ -908,13 +918,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1f9e93e4-01a0-4c64-9cc4-cb2016f30d25 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6ecac1c6-9286-453b-bb71-6ae82e0da96b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3AC5586529D943AEBD4A30EB6A6F385F Ref B: BY1AA1072319052 Ref C: 2026-03-24T04:15:48Z' + - 'Ref A: 62C652163BB64D9EA81380114C6E7D85 Ref B: SG2AA1070305031 Ref C: 2026-09-10T10:03:48Z' status: code: 200 message: OK @@ -932,21 +942,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T04:15:49+00:00","runType":"QuickRun","createTime":"2026-03-24T04:15:49.1244399+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:15:49.068841+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Running","lastUpdatedTime":"2026-09-10T10:03:49+00:00","runType":"QuickRun","createTime":"2026-09-10T10:03:48.8736254+00:00","startTime":"2026-09-10T10:03:49.5177522+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:03:48.7836137+00:00"}}' headers: cache-control: - no-cache content-length: - - '717' + - '767' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:15:48 GMT + - Thu, 10 Sep 2026 10:03:50 GMT expires: - '-1' pragma: @@ -958,11 +968,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1b6c57d1-481d-473a-8a5b-baccd58db047 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/12eba290-9ae3-43e0-8896-d180cee575c9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B5091BFC9EB34FBD8A0297D7097CCA9E Ref B: BY1AA1072317031 Ref C: 2026-03-24T04:15:49Z' + - 'Ref A: 1D85BE6B81774013983BACFCD767F40D Ref B: SG2AA1070306025 Ref C: 2026-09-10T10:03:50Z' status: code: 200 message: OK @@ -980,22 +990,22 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Failed","lastUpdatedTime":"2026-03-24T04:15:55+00:00","runType":"QuickRun","createTime":"2026-03-24T04:15:49.1244399+00:00","startTime":"2026-03-24T04:15:49.4379201+00:00","finishTime":"2026-03-24T04:15:55.2954717+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","runErrorMessage":"failed - during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:15:49.068841+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Failed","lastUpdatedTime":"2026-09-10T10:03:57+00:00","runType":"QuickRun","createTime":"2026-09-10T10:03:48.8736254+00:00","startTime":"2026-09-10T10:03:49.5177522+00:00","finishTime":"2026-09-10T10:03:57.1605664+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","runErrorMessage":"failed + during run, err: exit status 1","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:03:48.7836137+00:00"}}' headers: cache-control: - no-cache content-length: - - '872' + - '873' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:16:18 GMT + - Thu, 10 Sep 2026 10:04:22 GMT expires: - '-1' pragma: @@ -1007,11 +1017,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a8ca9225-d8bf-4c7f-a57d-f45275f0ebbb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e61ab9cc-8b3a-4f26-88c8-1c240f2575cc x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 185BC442A75742C1977C67F5F6C84AEC Ref B: BY1AA1072317052 Ref C: 2026-03-24T04:16:19Z' + - 'Ref A: DA0DEF8C30764CFD955A0171121A2D03 Ref B: SG2AA1040516031 Ref C: 2026-09-10T10:04:22Z' status: code: 200 message: OK @@ -1029,40 +1039,44 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2780c7a525-065e-4198-8d08-f9fb692612dc%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%278d0fa0cf-469e-4c25-a99e-0c52ca148009%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '92' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 04:16:19 GMT + - Thu, 10 Sep 2026 10:04:24 GMT odata-version: - '4.0' request-id: - - 2aed8bb2-3fbd-4f65-951f-4f0b49202597 + - 32bad09f-a0ea-4f80-85c3-76636d844979 strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF0001162F"}}' + - '{"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"ML1PEPF00004AEA"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["80c7a525-065e-4198-8d08-f9fb692612dc"], "types": ["user", "group", + body: '{"ids": ["8d0fa0cf-469e-4c25-a99e-0c52ca148009"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -1080,35 +1094,39 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"80c7a525-065e-4198-8d08-f9fb692612dc","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask"],"appDisplayName":null,"appDescription":null,"appId":"0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-03-24T04:13:57Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/timerTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","https://identity.azure.net/iOCiNhX85c7SkveY8krAy0mHOVmuGnRY96TW96ZaGx8="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"8A06379E0B75CAA8CAF7BFEC20D446523CE2DB5C","displayName":"CN=0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","endDateTime":"2026-06-22T04:08:00Z","key":null,"keyId":"f25a11bb-94c1-4239-8fab-e854730b5d75","startDateTime":"2026-03-24T04:08:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask"],"appDisplayName":null,"appDescription":null,"appId":"0daa7cd4-051a-4c85-9085-489ecb0e9b33","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-09-10T10:01:36Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/timerTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["0daa7cd4-051a-4c85-9085-489ecb0e9b33","https://identity.azure.net/7FjWf1yC9wJD+X/njUedmL6VavU4fKBsgjiNwQdouoc="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"0CBB817E94D096304DACE368A568A8B1186707C2","displayName":"CN=0daa7cd4-051a-4c85-9085-489ecb0e9b33","endDateTime":"2026-12-09T09:56:00Z","key":null,"keyId":"5c0e38f0-12b7-4758-8567-02edc9bd558a","startDateTime":"2026-09-10T09:56:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache + connection: + - keep-alive content-length: - '1839' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Tue, 24 Mar 2026 04:16:19 GMT + - Thu, 10 Sep 2026 10:04:24 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 71f2886c-2a55-44ce-9e99-b9750f1fa2f0 + - 9a98a04a-4c3d-48a3-9702-4020c1fbf7ca strict-transport-security: - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF00046994"}}' + - '{"ServerInfo":{"DataCenter":"Australia Southeast","Slice":"E","Ring":"3","ScaleUnit":"002","RoleInstance":"ML1PEPF00004B06"}}' x-ms-resource-unit: - '3' status: @@ -1128,9 +1146,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27AcrPush%27&api-version=2022-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-05-01-preview&$filter=roleName%20eq%20%27AcrPush%27 response: body: string: '{"value":[{"properties":{"roleName":"AcrPush","type":"BuiltInRole","description":"acr @@ -1143,7 +1161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:16:19 GMT + - Thu, 10 Sep 2026 10:04:25 GMT expires: - '-1' pragma: @@ -1155,17 +1173,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/011385ab-dcc6-4dfd-ae4e-e410aa3656a6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f7307c22-6cbb-4478-97de-3491e2a09818 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5A12D1411B5E47519ACCA6A5145C921F Ref B: BY1AA1072319040 Ref C: 2026-03-24T04:16:20Z' + - 'Ref A: E7F8C819C38145F09CABF32E551A4A9A Ref B: SG2AA1070301060 Ref C: 2026-09-10T10:04:26Z' status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec", - "principalId": "80c7a525-065e-4198-8d08-f9fb692612dc", "principalType": "ServicePrincipal"}}' + body: '{"properties": {"principalId": "8d0fa0cf-469e-4c25-a99e-0c52ca148009", + "roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec", + "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -1182,12 +1201,12 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:16:20.5533706Z","updatedOn":"2026-03-24T04:16:20.7703729Z","createdBy":null,"updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T10:04:27.9169412Z","updatedOn":"2026-09-10T10:04:28.1956174Z","createdBy":null,"updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -1196,7 +1215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:16:20 GMT + - Thu, 10 Sep 2026 10:04:43 GMT expires: - '-1' pragma: @@ -1208,13 +1227,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9e0e6425-896a-4b09-b24e-28fb2beb0bdb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b41278df-bffd-4244-bd8c-dfb79886db94 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: 900F33259E5E433D9F06A1062A175304 Ref B: SJC211051203049 Ref C: 2026-03-24T04:16:20Z' + - 'Ref A: 24CE0D25856C4537AADA7893DC2DB747 Ref B: SG2AA1040518029 Ref C: 2026-09-10T10:04:27Z' status: code: 201 message: Created @@ -1232,21 +1251,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3867' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:06 GMT + - Thu, 10 Sep 2026 10:05:30 GMT expires: - '-1' pragma: @@ -1260,7 +1279,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 908AE9CE72C641BF954823447DF8B52A Ref B: SJC211051204051 Ref C: 2026-03-24T04:17:06Z' + - 'Ref A: 89B236011E424E94BBE9512CA0DB2D8F Ref B: SG2AA1070305042 Ref C: 2026-09-10T10:05:30Z' status: code: 200 message: OK @@ -1278,23 +1297,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:06 GMT + - Thu, 10 Sep 2026 10:05:32 GMT expires: - '-1' pragma: @@ -1308,7 +1327,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 53FFA0FAC7BF43C6B804FFE8DC60A523 Ref B: SJC211051203009 Ref C: 2026-03-24T04:17:07Z' + - 'Ref A: AC21ABDFAA024FCF99739656B2840770 Ref B: SG2AA1040515040 Ref C: 2026-09-10T10:05:32Z' status: code: 200 message: OK @@ -1328,13 +1347,13 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:13:58.1451049+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 - 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:57.2977996+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:57.2977996+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T10:01:38.4432936+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 + 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:36.2394769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:36.2394769+00:00"}}' headers: cache-control: - no-cache @@ -1343,7 +1362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:07 GMT + - Thu, 10 Sep 2026 10:05:34 GMT expires: - '-1' pragma: @@ -1355,13 +1374,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/93a7e5d2-bd2e-4a98-bf29-8df63d056ca3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b0bd5904-eecb-4e6b-8d1f-4eb74bae67e1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3CC76C6A62AE497DAB1D190D8B49F27E Ref B: SJC211051201039 Ref C: 2026-03-24T04:17:07Z' + - 'Ref A: 81FD91B24A2B4CA381F9117AB9B384AD Ref B: SG2AA1040517036 Ref C: 2026-09-10T10:05:33Z' status: code: 200 message: OK @@ -1384,12 +1403,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Queued","lastUpdatedTime":"2026-03-24T04:17:07+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:17:07.5622823+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Queued","lastUpdatedTime":"2026-09-10T10:05:36+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:05:35.8420252+00:00"}}' headers: cache-control: - no-cache @@ -1398,7 +1417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:06 GMT + - Thu, 10 Sep 2026 10:05:36 GMT expires: - '-1' pragma: @@ -1410,13 +1429,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d45565ce-56b7-4020-8d91-2d4b89723929 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/33aed120-5554-418c-afdd-c7cabc107ad3 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BD211ECFEC6E45AC8F848401D57A0D6E Ref B: SJC211051201037 Ref C: 2026-03-24T04:17:07Z' + - 'Ref A: 0351866DBD8B495789764615EB760CF4 Ref B: SG2AA1040517042 Ref C: 2026-09-10T10:05:35Z' status: code: 200 message: OK @@ -1434,12 +1453,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Running","lastUpdatedTime":"2026-03-24T04:17:07+00:00","runType":"QuickRun","createTime":"2026-03-24T04:17:07.7045256+00:00","startTime":"2026-03-24T04:17:07.9390063+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:17:07.5622823+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Running","lastUpdatedTime":"2026-09-10T10:05:36+00:00","runType":"QuickRun","createTime":"2026-09-10T10:05:36.1051487+00:00","startTime":"2026-09-10T10:05:36.5158439+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:05:35.8420252+00:00"}}' headers: cache-control: - no-cache @@ -1448,7 +1467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:07 GMT + - Thu, 10 Sep 2026 10:05:37 GMT expires: - '-1' pragma: @@ -1460,11 +1479,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/28824f1a-28c0-47df-ba3a-fa220ac8ca84 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/46484bf4-9ec3-49f9-bc65-35444673c337 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1D12B36499ED4D188F28EF67B1E1C74D Ref B: BY1AA1072319036 Ref C: 2026-03-24T04:17:07Z' + - 'Ref A: FBAD0C9F94C64B1E9EC5243D8E8E73B9 Ref B: SG2AA1040515052 Ref C: 2026-09-10T10:05:37Z' status: code: 200 message: OK @@ -1482,12 +1501,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Succeeded","lastUpdatedTime":"2026-03-24T04:17:17+00:00","runType":"QuickRun","createTime":"2026-03-24T04:17:07.7045256+00:00","startTime":"2026-03-24T04:17:07.9390063+00:00","finishTime":"2026-03-24T04:17:17.8784865+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:17:07.5622823+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf3","status":"Succeeded","lastUpdatedTime":"2026-09-10T10:05:45+00:00","runType":"QuickRun","createTime":"2026-09-10T10:05:36.1051487+00:00","startTime":"2026-09-10T10:05:36.5158439+00:00","finishTime":"2026-09-10T10:05:45.9875879+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf3","name":"cf3","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:05:35.8420252+00:00"}}' headers: cache-control: - no-cache @@ -1496,7 +1515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:37 GMT + - Thu, 10 Sep 2026 10:06:09 GMT expires: - '-1' pragma: @@ -1508,11 +1527,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9e59d012-bf1d-4117-b188-4d0e038180c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/39ebdde1-9818-44dc-b1e6-d4c6933b7764 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E23B245BAEC04C4388B06A67BDA24E00 Ref B: SJC211051203025 Ref C: 2026-03-24T04:17:38Z' + - 'Ref A: 11F2B4BC8850404B97267C02832D2FB5 Ref B: SG2AA1040512054 Ref C: 2026-09-10T10:06:09Z' status: code: 200 message: OK @@ -1530,21 +1549,21 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3867' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:38 GMT + - Thu, 10 Sep 2026 10:06:10 GMT expires: - '-1' pragma: @@ -1558,7 +1577,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AFDB637F72B8414F96D4A8530ED4FF65 Ref B: BY1AA1072316040 Ref C: 2026-03-24T04:17:38Z' + - 'Ref A: 2DBC784245614EFAAA25E8B1697D057B Ref B: SG2AA1070302062 Ref C: 2026-09-10T10:06:10Z' status: code: 200 message: OK @@ -1576,23 +1595,23 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:38 GMT + - Thu, 10 Sep 2026 10:06:12 GMT expires: - '-1' pragma: @@ -1606,7 +1625,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1CE839DDE4C248858BAB409B6F4DCBA5 Ref B: BY1AA1072316031 Ref C: 2026-03-24T04:17:38Z' + - 'Ref A: AA31FDF898DE4D9E985BD4A5232EA168 Ref B: SG2AA1040516062 Ref C: 2026-09-10T10:06:12Z' status: code: 200 message: OK @@ -1626,13 +1645,13 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:13:58.1451049+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 - 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:57.2977996+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:57.2977996+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T10:01:38.4432936+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 + 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default","identity":"[system]"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:36.2394769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:36.2394769+00:00"}}' headers: cache-control: - no-cache @@ -1641,7 +1660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:38 GMT + - Thu, 10 Sep 2026 10:06:13 GMT expires: - '-1' pragma: @@ -1653,21 +1672,20 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/df1850a3-6169-4e49-aac4-fdd3a84976a1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e46415ca-e24e-4184-9c8a-f0e55b57f866 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 191470E8A7314AB3BD8730C96ACBEED6 Ref B: BY1AA1072318060 Ref C: 2026-03-24T04:17:38Z' + - 'Ref A: 79AFCDF2CB6E4B2E9D5252805A47DA78 Ref B: SG2AA1070306023 Ref C: 2026-09-10T10:06:14Z' status: code: 200 message: OK - request: - body: '{"properties": {"trigger": {"baseImageTrigger": {"name": "defaultBaseimageTriggerName"}}, - "agentConfiguration": {}, "platform": {}, "credentials": {"sourceRegistry": - {"identity": null}}, "step": {"encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK", - "type": "EncodedTask"}}}' + body: '{"properties": {"platform": {}, "step": {"encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK", + "type": "EncodedTask"}, "credentials": {"sourceRegistry": {"identity": null}}, + "agentConfiguration": {}, "trigger": {"baseImageTrigger": {"name": "defaultBaseimageTriggerName"}}}}' headers: Accept: - application/json @@ -1684,22 +1702,22 @@ interactions: ParameterSetName: - -n -r --source-acr-auth-id User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:13:58.1451049+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 - 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:57.2977996+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:17:39.31868+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T10:01:38.4432936+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 + 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:36.2394769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:06:16.1965597+00:00"}}' headers: cache-control: - no-cache content-length: - - '1396' + - '1398' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:39 GMT + - Thu, 10 Sep 2026 10:06:15 GMT expires: - '-1' pragma: @@ -1711,225 +1729,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a738e0ac-d74a-4dac-8204-3dc6c087ebfb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/86b13e30-dbbe-4d22-b793-7660f6e2b774 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 59EE5FBDE2A742E58C404C2E65B950D5 Ref B: BY1AA1072320042 Ref C: 2026-03-24T04:17:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - ParameterSetName: - - --role --assignee --scope - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2780c7a525-065e-4198-8d08-f9fb692612dc%27%29 - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '92' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:38 GMT - odata-version: - - '4.0' - request-id: - - becd5624-9629-4f3c-9b1b-461cfa86fb26 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"002","RoleInstance":"PH3PEPF00003547"}}' - x-ms-resource-unit: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"ids": ["80c7a525-065e-4198-8d08-f9fb692612dc"], "types": ["user", "group", - "servicePrincipal", "directoryObjectPartnerReference"]}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - Content-Length: - - '132' - Content-Type: - - application/json - ParameterSetName: - - --role --assignee --scope - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: POST - uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"80c7a525-065e-4198-8d08-f9fb692612dc","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask"],"appDisplayName":null,"appDescription":null,"appId":"0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-03-24T04:13:57Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/timerTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","https://identity.azure.net/iOCiNhX85c7SkveY8krAy0mHOVmuGnRY96TW96ZaGx8="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"8A06379E0B75CAA8CAF7BFEC20D446523CE2DB5C","displayName":"CN=0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","endDateTime":"2026-06-22T04:08:00Z","key":null,"keyId":"f25a11bb-94c1-4239-8fab-e854730b5d75","startDateTime":"2026-03-24T04:08:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1839' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:39 GMT - location: - - https://graph.microsoft.com - odata-version: - - '4.0' - request-id: - - 226a910a-cda8-48dc-af4e-e9477a75a0b6 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF00046995"}}' - x-ms-resource-unit: - - '3' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - ParameterSetName: - - --role --assignee --scope - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ffc7b67-95b9-471f-9a13-f3fcb5319c06","principalId":"5cf638fd-a9f5-4ed5-834d-b4b99d4372df","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2026-01-08T18:01:23.4164140Z","updatedOn":"2026-01-08T18:01:23.4164140Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/feb3abe9-5ceb-45bd-8098-58abdc343b46","type":"Microsoft.Authorization/roleAssignments","name":"feb3abe9-5ceb-45bd-8098-58abdc343b46"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ffc7b67-95b9-471f-9a13-f3fcb5319c06","principalId":"79555fee-51e2-43d1-8edd-ba5645b9f262","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2026-01-08T18:03:45.5024100Z","updatedOn":"2026-01-08T18:03:45.5024100Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/81346013-45eb-4449-9141-36c1bf2fde68","type":"Microsoft.Authorization/roleAssignments","name":"81346013-45eb-4449-9141-36c1bf2fde68"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599","principalId":"5c445532-1499-448e-970c-bda7db1e1f15","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-07-13T16:20:06.8829118Z","updatedOn":"2023-07-13T16:20:06.8829118Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":"Allow - AccessMonitorReader to read access details for compliance purpose"},"id":"/providers/Microsoft.Authorization/roleAssignments/fb6b898e-5323-404d-a8af-da5aafc3ecc0","type":"Microsoft.Authorization/roleAssignments","name":"fb6b898e-5323-404d-a8af-da5aafc3ecc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599","principalId":"612cdbb4-6edd-4998-aae9-129cdba53a9a","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-07-19T22:13:56.3482970Z","updatedOn":"2023-07-19T22:13:56.3482970Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":"Allow - AccessMonitorReader to read access details for compliance purpose"},"id":"/providers/Microsoft.Authorization/roleAssignments/3cdb16ce-2290-4f5f-bcab-5b07a458405f","type":"Microsoft.Authorization/roleAssignments","name":"3cdb16ce-2290-4f5f-bcab-5b07a458405f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599","principalId":"a1cd43c2-c713-4af4-b885-50540e2c595f","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-07-19T22:18:24.6119781Z","updatedOn":"2023-07-19T22:18:24.6119781Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":"Allow - AccessMonitorReader to read access details for compliance purpose"},"id":"/providers/Microsoft.Authorization/roleAssignments/125160dd-5630-45b1-8260-4e5469d3e7b6","type":"Microsoft.Authorization/roleAssignments","name":"125160dd-5630-45b1-8260-4e5469d3e7b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"14630511-63a1-4d32-a204-a8002c139ad2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:15:53.1683869Z","updatedOn":"2024-06-04T01:15:53.1683869Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d3c2cba-cd64-4597-ae9e-61b88b9e8c45","type":"Microsoft.Authorization/roleAssignments","name":"6d3c2cba-cd64-4597-ae9e-61b88b9e8c45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6","principalId":"f235e5e3-2e80-4ed1-909d-5347bc55392d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:15:57.1625875Z","updatedOn":"2024-06-04T01:15:57.1625875Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2174c02-a963-4ed0-946f-9f0efe9b4994","type":"Microsoft.Authorization/roleAssignments","name":"d2174c02-a963-4ed0-946f-9f0efe9b4994"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"f819bf1c-9cf9-42c3-bd59-82c507565fa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:16:00.7789231Z","updatedOn":"2024-06-04T01:16:00.7789231Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/450af4b1-fc68-45a7-86f5-2d131bffbd36","type":"Microsoft.Authorization/roleAssignments","name":"450af4b1-fc68-45a7-86f5-2d131bffbd36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4","principalId":"e97ce641-32f2-4bf0-b09f-59ef55f32614","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:16:07.9180755Z","updatedOn":"2024-06-04T01:16:07.9180755Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff3d7c51-6e5f-480a-b7ae-eab601bc51e4","type":"Microsoft.Authorization/roleAssignments","name":"ff3d7c51-6e5f-480a-b7ae-eab601bc51e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6","principalId":"e97ce641-32f2-4bf0-b09f-59ef55f32614","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:16:11.2981320Z","updatedOn":"2024-06-04T01:16:11.2981320Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4a7c992-9dd7-42b4-afac-d1f04935bcbf","type":"Microsoft.Authorization/roleAssignments","name":"e4a7c992-9dd7-42b4-afac-d1f04935bcbf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"3dc6def4-89c2-402a-b408-2cfb474f0c92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T06:23:03.4986796Z","updatedOn":"2024-06-04T06:23:03.4986796Z","createdBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","updatedBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11eddedf-73f2-4a84-aeb7-01fa8e54d268","type":"Microsoft.Authorization/roleAssignments","name":"11eddedf-73f2-4a84-aeb7-01fa8e54d268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"68abb7a6-9056-4d60-bf87-3b50a45559cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-09T05:52:01.7818699Z","updatedOn":"2022-07-09T05:52:01.7818699Z","createdBy":"e3043039-6412-4d88-ad5e-9dce4985c5d1","updatedBy":"e3043039-6412-4d88-ad5e-9dce4985c5d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e6189cf-1895-4535-8aaf-717a3f2cf930","type":"Microsoft.Authorization/roleAssignments","name":"2e6189cf-1895-4535-8aaf-717a3f2cf930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d","principalId":"3dc6def4-89c2-402a-b408-2cfb474f0c92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-07T03:27:44.7348434Z","updatedOn":"2024-11-07T03:27:44.7348434Z","createdBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","updatedBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/679367ef-1475-4f6b-8698-24fe42de13de","type":"Microsoft.Authorization/roleAssignments","name":"679367ef-1475-4f6b-8698-24fe42de13de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35","principalId":"3dc6def4-89c2-402a-b408-2cfb474f0c92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-11-05T02:59:59.6736193Z","updatedOn":"2025-11-05T02:59:59.6736193Z","createdBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","updatedBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59a6c4d-3a00-48fd-84af-6b983e7523a1","type":"Microsoft.Authorization/roleAssignments","name":"b59a6c4d-3a00-48fd-84af-6b983e7523a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:15:01.2608172Z","updatedOn":"2026-03-24T04:15:01.2608172Z","createdBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:16:20.7703729Z","updatedOn":"2026-03-24T04:16:20.7703729Z","createdBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"56d08bc2-cc29-4d23-9d23-fd396b807b02","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"4a113caa-961f-4535-ac9b-79bfba8b9ed2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"6179a082-c057-4fe3-8118-916b816a42e3","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"7c2d0d59-528c-434a-8c6c-03330539cad2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"7d7aed0a-228e-420b-a6a2-82a49dacb8cb","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"b7a49237-f5b0-473f-a4ff-6830d23af17d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"f2e939bc-742a-42f9-a27a-f0982c6e3f64","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"b7b8bd19-f827-425f-9be1-fd8a86b21904","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"700587cd-b5ad-4d37-b560-3ff43a4a5490","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"482dccba-36b8-4309-8599-dce82be5b107","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"0504eea8-68f8-4367-a04f-38407a0c4a97","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"1fdb09c2-872e-43c5-bb79-561e3122dc8a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"0d73806b-2839-44f0-b9e0-3de55a565a24","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"bec26c10-d462-4862-9537-53c98dd5606c","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"421cdbd5-e8fa-4961-a599-600c3230e091","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"9c6d261d-f447-4cf6-bbde-6010b3953a75","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"f47f1409-00ea-40d5-bed1-401a50741ae3","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"e0cb5c33-2084-4cec-ac51-2bc313d4502e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2023-04-07T05:56:00.4871186Z","updatedOn":"2023-04-24T19:44:20.3477537Z","createdBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","updatedBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/17a093c4-e4b2-5959-95e3-5894ef6873fb","type":"Microsoft.Authorization/roleAssignments","name":"17a093c4-e4b2-5959-95e3-5894ef6873fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"f7b9f917-9a41-437c-84b1-682a814dbaf6","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2023-11-26T01:37:41.9144630Z","updatedOn":"2024-01-08T19:18:08.6396605Z","createdBy":"815c7b56-317b-457c-bf99-f9c2b6a3f739","updatedBy":"815c7b56-317b-457c-bf99-f9c2b6a3f739","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/67815997-99bc-5b98-9a5d-5ad5a092d499","type":"Microsoft.Authorization/roleAssignments","name":"67815997-99bc-5b98-9a5d-5ad5a092d499"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"6571efc1-a303-44df-b1b8-38523fdea4fa","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"dc50c6c2-4754-411b-9fe0-f341f3910403","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"72c0a066-b35b-4d68-bd6f-d406ed3f2b9f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"779ead4e-2dc9-4191-b651-7f2a57b0b6ff","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"fd279736-6a60-4ae6-b252-3ae9d9fea200","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"40b1b8e8-c813-4c09-b2bb-86db1f921168","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"fde3669e-734a-4765-a063-fdec3647fcc8","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"76ae450f-630f-4af4-92cf-e7153ba839f0","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"fd3aca68-eb29-4ad8-be21-662836d3f454","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"5a1044d8-27f6-4e3d-b994-30521eedb46c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"2b8b0d82-3484-40e9-b634-df286b616735","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"5e83e4cb-9b41-4b98-b8dd-4fc3951ea1ed","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"eb5dcf2a-c769-4615-b84b-74ac50f15a4a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-06-29T08:10:10.2639240Z","updatedOn":"2024-07-03T06:42:54.2315474Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fd981fb3-5e11-5e90-aa7b-b646c44e910a","type":"Microsoft.Authorization/roleAssignments","name":"fd981fb3-5e11-5e90-aa7b-b646c44e910a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d","principalId":"526cce61-401e-4709-9918-7888208dbe55","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-08-06T19:46:22.1511939Z","updatedOn":"2024-08-06T19:46:22.1511939Z","createdBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","updatedBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/924c5f63-7511-49c2-b9f5-5a5b8deeb6cd","type":"Microsoft.Authorization/roleAssignments","name":"924c5f63-7511-49c2-b9f5-5a5b8deeb6cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432","principalId":"ed64b40d-cfa6-405c-890c-ade489e6dc9c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.4640815Z","updatedOn":"2024-09-04T17:58:51.4640815Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/16ad0a18-aacd-4844-8c39-22deb4119f74","type":"Microsoft.Authorization/roleAssignments","name":"16ad0a18-aacd-4844-8c39-22deb4119f74"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"2dd1ea73-4024-489e-83a4-45cb3e962f69","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6627656Z","updatedOn":"2024-09-04T17:58:51.6627656Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5e997838-ea3d-4e79-8d7b-2d2dfdbe3868","type":"Microsoft.Authorization/roleAssignments","name":"5e997838-ea3d-4e79-8d7b-2d2dfdbe3868"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437","principalId":"8b940b4f-b118-465f-bdd4-65cf3c55cc3e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6545669Z","updatedOn":"2024-09-04T17:58:51.6545669Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0","type":"Microsoft.Authorization/roleAssignments","name":"5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c","principalId":"64cb6e50-2fe8-4ad4-86e9-291b799fd3b7","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.7609502Z","updatedOn":"2024-09-04T17:58:51.7609502Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5eb9a251-63c4-4db4-a2f2-689d011b4509","type":"Microsoft.Authorization/roleAssignments","name":"5eb9a251-63c4-4db4-a2f2-689d011b4509"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"ff29f09e-a8be-4afc-b627-d02fcaf6c28d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.8333637Z","updatedOn":"2024-09-04T17:58:51.8333637Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1cd85cca-586c-45d9-9f81-4074965a9d99","type":"Microsoft.Authorization/roleAssignments","name":"1cd85cca-586c-45d9-9f81-4074965a9d99"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"5f354ec9-f512-41f0-9f1f-ce25bbeb5369","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.3122114Z","updatedOn":"2024-09-04T17:58:51.3122114Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e0ef8920-e57d-4c1c-a21f-0765b34786b5","type":"Microsoft.Authorization/roleAssignments","name":"e0ef8920-e57d-4c1c-a21f-0765b34786b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d","principalId":"2dcdba1f-c5f9-4092-bce5-bf593ac4bea5","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.5115488Z","updatedOn":"2024-09-04T17:58:51.5115488Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/27929cc1-e4f6-4dab-80cb-51b2743ec222","type":"Microsoft.Authorization/roleAssignments","name":"27929cc1-e4f6-4dab-80cb-51b2743ec222"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa","principalId":"4efc6c2d-d534-418c-b109-7f54e80a70d0","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6565526Z","updatedOn":"2024-09-04T17:58:51.6565526Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a68687e3-f706-452b-ad9b-5d2497348da4","type":"Microsoft.Authorization/roleAssignments","name":"a68687e3-f706-452b-ad9b-5d2497348da4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"10b09f65-7a54-41fa-965d-ca3490541488","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6436777Z","updatedOn":"2024-09-04T17:58:51.6436777Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ea232a8a-e2e3-472d-a926-257f61a306f8","type":"Microsoft.Authorization/roleAssignments","name":"ea232a8a-e2e3-472d-a926-257f61a306f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"ff29f09e-a8be-4afc-b627-d02fcaf6c28d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6276165Z","updatedOn":"2024-09-04T17:58:51.6276165Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f61532eb-c3be-4af1-9283-49c3e54978bd","type":"Microsoft.Authorization/roleAssignments","name":"f61532eb-c3be-4af1-9283-49c3e54978bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"10b09f65-7a54-41fa-965d-ca3490541488","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6806125Z","updatedOn":"2024-09-04T17:58:51.6806125Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48f44b2a-d2b7-45f6-b80a-930a630b26e7","type":"Microsoft.Authorization/roleAssignments","name":"48f44b2a-d2b7-45f6-b80a-930a630b26e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"dd6b2b46-ce72-42b7-af27-93fa41db399e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.3196261Z","updatedOn":"2024-09-04T17:58:51.3196261Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6cca32ef-f72d-42b9-a956-b28bd5fd59a8","type":"Microsoft.Authorization/roleAssignments","name":"6cca32ef-f72d-42b9-a956-b28bd5fd59a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17","principalId":"729eba1d-8508-4034-abd2-54128fbe8b22","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:52.0592211Z","updatedOn":"2024-09-04T17:58:52.0592211Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec","type":"Microsoft.Authorization/roleAssignments","name":"cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6932275Z","updatedOn":"2024-09-04T17:58:51.6932275Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48c6a306-5301-439e-86b0-9e2bca52994e","type":"Microsoft.Authorization/roleAssignments","name":"48c6a306-5301-439e-86b0-9e2bca52994e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-16T07:48:49.7761077Z","updatedOn":"2024-10-09T11:32:02.0971195Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7a465a70-0737-5ea3-a401-17d618549b26","type":"Microsoft.Authorization/roleAssignments","name":"7a465a70-0737-5ea3-a401-17d618549b26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064","principalId":"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-16T07:48:51.5805513Z","updatedOn":"2024-10-09T11:32:04.0456795Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e26bf549-e870-5800-af71-7a0d874ba92d","type":"Microsoft.Authorization/roleAssignments","name":"e26bf549-e870-5800-af71-7a0d874ba92d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"0a44da5b-5b98-42b5-aa43-be2ceae9a377","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-20T23:14:31.6471670Z","updatedOn":"2024-09-20T23:14:31.6471670Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a514e01b-fd6b-4bfa-a4ee-0747994c9e5f","type":"Microsoft.Authorization/roleAssignments","name":"a514e01b-fd6b-4bfa-a4ee-0747994c9e5f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302","principalId":"2a7381d1-1dae-4b42-93f4-181ada4c4865","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-01-16T00:02:23.0916862Z","updatedOn":"2025-02-04T02:25:20.8028292Z","createdBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2674eb52-f8a5-5178-80e5-c2775b7da442","type":"Microsoft.Authorization/roleAssignments","name":"2674eb52-f8a5-5178-80e5-c2775b7da442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302","principalId":"273459e4-5fc5-4997-aae0-de7455209f23","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-01-28T20:53:00.9077636Z","updatedOn":"2025-02-03T23:46:56.0575877Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/dd64da31-e90a-58fb-8767-341d655cf574","type":"Microsoft.Authorization/roleAssignments","name":"dd64da31-e90a-58fb-8767-341d655cf574"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"d55756eb-3c10-462c-9025-5cc2ada4952e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-04-18T17:43:23.1883169Z","updatedOn":"2025-05-16T00:31:07.3346817Z","createdBy":"867bbc59-27fb-4f50-9b92-51aeff73dca0","updatedBy":"867bbc59-27fb-4f50-9b92-51aeff73dca0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e6bdd883-b621-5a5f-b0f7-f32ce47f9f94","type":"Microsoft.Authorization/roleAssignments","name":"e6bdd883-b621-5a5f-b0f7-f32ce47f9f94"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"b5d47a1d-7a52-48b7-80e0-f027c137f72e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-05-21T06:03:10.0225514Z","updatedOn":"2025-06-03T19:22:35.6825881Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/28ebc426-cb80-59c0-b843-57910686e9a8","type":"Microsoft.Authorization/roleAssignments","name":"28ebc426-cb80-59c0-b843-57910686e9a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2dd1ea73-4024-489e-83a4-45cb3e962f69","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-07-09T17:00:12.2804133Z","updatedOn":"2025-07-09T17:00:12.2804133Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/72ac5e88-b456-42a7-9c02-7f8c58efc8dc","type":"Microsoft.Authorization/roleAssignments","name":"72ac5e88-b456-42a7-9c02-7f8c58efc8dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"82a9aaa5-865b-4f3e-9a0d-049b2dad8ded","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-07T22:48:47.5091640Z","updatedOn":"2026-02-07T18:27:56.7918053Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/968808a9-fd4a-52e6-a0a1-f0aef40459ff","type":"Microsoft.Authorization/roleAssignments","name":"968808a9-fd4a-52e6-a0a1-f0aef40459ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"82a9aaa5-865b-4f3e-9a0d-049b2dad8ded","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-07T22:48:49.4384488Z","updatedOn":"2026-02-07T18:27:58.0521260Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b90e6053-096b-5dca-8173-d73b9afd9a61","type":"Microsoft.Authorization/roleAssignments","name":"b90e6053-096b-5dca-8173-d73b9afd9a61"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"0d1f2a09-7f5c-49c6-923e-b8e10b8c7c0d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-07T22:49:08.8647481Z","updatedOn":"2026-01-27T13:50:35.6704820Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/34ad86ca-c4a4-5d0c-8be9-8a7c31517bb2","type":"Microsoft.Authorization/roleAssignments","name":"34ad86ca-c4a4-5d0c-8be9-8a7c31517bb2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"d281c42c-2086-4c53-9bec-630c97173d76","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-08T02:09:22.0737654Z","updatedOn":"2026-02-01T14:24:40.3892616Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6fe5c02d-9569-5ceb-9d5e-1926eed0a9b3","type":"Microsoft.Authorization/roleAssignments","name":"6fe5c02d-9569-5ceb-9d5e-1926eed0a9b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ebc6a08c-9436-41c0-98ea-9a98ce69e91c","principalId":"93c69cf7-7f7c-44e8-bc82-889084703380","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-10-25T00:59:34.6842751Z","updatedOn":"2024-10-25T00:59:34.6842751Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/80be68ee-64b9-41c6-ad33-91e561563dc3","type":"Microsoft.Authorization/roleAssignments","name":"80be68ee-64b9-41c6-ad33-91e561563dc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"93c69cf7-7f7c-44e8-bc82-889084703380","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-10-25T01:00:25.9766703Z","updatedOn":"2024-10-25T01:00:25.9766703Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/7fcb7148-5d5b-43f5-866a-28bfc6db1727","type":"Microsoft.Authorization/roleAssignments","name":"7fcb7148-5d5b-43f5-866a-28bfc6db1727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"bec26c10-d462-4862-9537-53c98dd5606c","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"4e7ce0ab-3f80-4c90-834e-047bb8b21564","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2023-09-15T21:41:54.7021549Z","updatedOn":"2023-09-15T21:41:54.7021549Z","createdBy":"08958326-d36e-43ae-bcfb-349b337a4483","updatedBy":"08958326-d36e-43ae-bcfb-349b337a4483","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6","type":"Microsoft.Authorization/roleAssignments","name":"c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"48580f46-cdf7-4677-b38f-13fee8d2b744","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-06-25T17:22:19.5530130Z","updatedOn":"2024-06-25T17:22:19.5530130Z","createdBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","updatedBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/9547ef7c-6294-470a-ad4a-00ab0587ff67","type":"Microsoft.Authorization/roleAssignments","name":"9547ef7c-6294-470a-ad4a-00ab0587ff67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"753548ec-bac1-4b53-8540-167bade337a6","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-06-25T17:22:56.3760639Z","updatedOn":"2024-06-25T17:22:56.3760639Z","createdBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","updatedBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/a9047912-01ff-4276-8ba3-86b00aac5a81","type":"Microsoft.Authorization/roleAssignments","name":"a9047912-01ff-4276-8ba3-86b00aac5a81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c","principalId":"71c2f92b-fbbc-441b-bb97-84fbf374d8d2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-09-09T21:12:09.3390030Z","updatedOn":"2024-09-09T21:12:09.3390030Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/1b73abcc-559a-4c11-919d-7ba9003ef4b7","type":"Microsoft.Authorization/roleAssignments","name":"1b73abcc-559a-4c11-919d-7ba9003ef4b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4","principalId":"71c2f92b-fbbc-441b-bb97-84fbf374d8d2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-09-09T21:12:33.2531658Z","updatedOn":"2024-09-09T21:12:33.2531658Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b5c5043d-0d03-4e87-a5ff-74961fb5fc62","type":"Microsoft.Authorization/roleAssignments","name":"b5c5043d-0d03-4e87-a5ff-74961fb5fc62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"7795c402-abeb-42e9-a027-b924b28c67bb","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-02-08T12:33:42.6662324Z","updatedOn":"2025-02-11T13:31:01.3012787Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c522c42b-842f-538e-b4bb-7a43ba597d28","type":"Microsoft.Authorization/roleAssignments","name":"c522c42b-842f-538e-b4bb-7a43ba597d28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"8f57971f-cf33-4610-ad69-5671e1eb0420","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-02-09T00:45:40.2106127Z","updatedOn":"2025-02-12T01:41:31.9037195Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4e15e659-ab5f-57ed-8187-bd5f3b98edbc","type":"Microsoft.Authorization/roleAssignments","name":"4e15e659-ab5f-57ed-8187-bd5f3b98edbc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995","principalId":"d2d087be-d63b-4971-b4a6-c1b11fda301c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-04-03T21:23:34.8417417Z","updatedOn":"2025-04-03T21:23:34.8417417Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":"Grant - ASM team access for policy remediations."},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/cbe5f8c3-856b-4c1c-990e-27257091d0bf","type":"Microsoft.Authorization/roleAssignments","name":"cbe5f8c3-856b-4c1c-990e-27257091d0bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5829ae32-f640-4f96-a65b-e6acba247856","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-05-30T10:53:23.9718004Z","updatedOn":"2025-05-30T10:53:23.9718004Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3e7686bd-3389-4f3c-9348-1589f3c3ec73","type":"Microsoft.Authorization/roleAssignments","name":"3e7686bd-3389-4f3c-9348-1589f3c3ec73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f","principalId":"5829ae32-f640-4f96-a65b-e6acba247856","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-05-30T10:56:35.3529828Z","updatedOn":"2025-05-30T10:56:35.3529828Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/6386bd4c-4ba7-45cd-8640-1036f4bb112d","type":"Microsoft.Authorization/roleAssignments","name":"6386bd4c-4ba7-45cd-8640-1036f4bb112d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"71c2f92b-fbbc-441b-bb97-84fbf374d8d2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-06-18T21:46:03.8838376Z","updatedOn":"2025-06-18T21:46:03.8838376Z","createdBy":"ecb3ca67-89e4-4ec6-be01-19241f802632","updatedBy":"ecb3ca67-89e4-4ec6-be01-19241f802632","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b18aa4ed-3cc5-42fc-98dc-c7c69619d9fc","type":"Microsoft.Authorization/roleAssignments","name":"b18aa4ed-3cc5-42fc-98dc-c7c69619d9fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f","principalId":"852beb6c-5b3b-4bb4-a5bd-7c1ce98486be","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2026-03-04T21:46:42.5980140Z","updatedOn":"2026-03-04T21:46:42.5980140Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/de0b8e16-1c0e-4c41-9472-214c1d1ec0cd","type":"Microsoft.Authorization/roleAssignments","name":"de0b8e16-1c0e-4c41-9472-214c1d1ec0cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615","principalId":"5e07876d-c565-4e75-bc65-1a65ae48304e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-03-11T17:35:22.2000461Z","updatedOn":"2025-03-11T17:35:22.2000461Z","createdBy":"bf803fce-d6da-4515-a406-9682823fd96a","updatedBy":"bf803fce-d6da-4515-a406-9682823fd96a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/35053ae6-722f-4161-918a-0c8fd8a042db","type":"Microsoft.Authorization/roleAssignments","name":"35053ae6-722f-4161-918a-0c8fd8a042db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"38ff3154-4977-42d0-82ab-e38d1f3719c5","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-04-14T20:07:13.3411027Z","updatedOn":"2025-04-14T20:07:13.3411027Z","createdBy":"a0d72534-d3a9-42cd-8f3f-27c1ffa5bedb","updatedBy":"a0d72534-d3a9-42cd-8f3f-27c1ffa5bedb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1bce5a64-e141-485c-b259-2f69575d0c69","type":"Microsoft.Authorization/roleAssignments","name":"1bce5a64-e141-485c-b259-2f69575d0c69"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-04-22T20:14:15.5336665Z","updatedOn":"2025-04-22T20:14:15.5336665Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/50011531-5d98-4894-a44b-191b2741f9cc","type":"Microsoft.Authorization/roleAssignments","name":"50011531-5d98-4894-a44b-191b2741f9cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-04-22T20:14:46.5887491Z","updatedOn":"2025-04-22T20:14:46.5887491Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/53b21571-8cee-4a05-b550-c6bd7f515bc9","type":"Microsoft.Authorization/roleAssignments","name":"53b21571-8cee-4a05-b550-c6bd7f515bc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ede5fc7f-18df-4704-801c-021821b9e321","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-06-20T21:01:13.4299245Z","updatedOn":"2025-06-20T21:01:13.4299245Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/2b2addb5-8ea4-417e-986b-30ada26d3d0c","type":"Microsoft.Authorization/roleAssignments","name":"2b2addb5-8ea4-417e-986b-30ada26d3d0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"f30ed716-f4cd-4444-8d4e-9bf024a54740","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-06-20T21:01:13.5734432Z","updatedOn":"2025-06-20T21:01:13.5734432Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/7ecf3cf5-d277-485d-a2e9-f53e76a8ada3","type":"Microsoft.Authorization/roleAssignments","name":"7ecf3cf5-d277-485d-a2e9-f53e76a8ada3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de24f270-c24e-43bb-bece-2b717f047e34","principalId":"ede5fc7f-18df-4704-801c-021821b9e321","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-06-23T23:36:48.6952965Z","updatedOn":"2025-06-23T23:36:48.6952965Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6de88439-bace-41c1-a432-3b26b9b31ea9","type":"Microsoft.Authorization/roleAssignments","name":"6de88439-bace-41c1-a432-3b26b9b31ea9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d","principalId":"526cce61-401e-4709-9918-7888208dbe55","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-07-09T16:45:31.6497349Z","updatedOn":"2025-07-09T16:45:31.6497349Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1ef9dc63-f54e-4ae6-8873-71b9e2969c32","type":"Microsoft.Authorization/roleAssignments","name":"1ef9dc63-f54e-4ae6-8873-71b9e2969c32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/793583af-211e-4076-8f72-6e93327872f9","principalId":"1ab51ec4-3596-49cf-8efb-b4419572cc39","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-07-09T18:03:07.9184866Z","updatedOn":"2025-07-09T18:03:07.9184866Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/cbc761f9-33fc-48fd-a9e5-985ef31605bd","type":"Microsoft.Authorization/roleAssignments","name":"cbc761f9-33fc-48fd-a9e5-985ef31605bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"c798416e-094a-4d09-be9a-ed93adb47d31","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-13T18:27:19.7856046Z","updatedOn":"2025-08-13T18:27:19.7856046Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/d8bad98a-e2b1-4db3-8f24-7423d084f326","type":"Microsoft.Authorization/roleAssignments","name":"d8bad98a-e2b1-4db3-8f24-7423d084f326"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"d6802578-7412-4f5f-a794-c6c1b338550b","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:24:01.4847688Z","updatedOn":"2025-08-21T22:24:01.4847688Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/58a22df8-9364-44ab-90be-4c8b6677571d","type":"Microsoft.Authorization/roleAssignments","name":"58a22df8-9364-44ab-90be-4c8b6677571d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db","principalId":"d6802578-7412-4f5f-a794-c6c1b338550b","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:25:11.5662255Z","updatedOn":"2025-08-21T22:25:11.5662255Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/3a1944b0-3b58-4ed1-8517-8a509d8f2cbb","type":"Microsoft.Authorization/roleAssignments","name":"3a1944b0-3b58-4ed1-8517-8a509d8f2cbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2","principalId":"d6802578-7412-4f5f-a794-c6c1b338550b","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:25:45.5430300Z","updatedOn":"2025-08-21T22:25:45.5430300Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/a30790b7-28c4-4b40-bff2-d546b06e2e18","type":"Microsoft.Authorization/roleAssignments","name":"a30790b7-28c4-4b40-bff2-d546b06e2e18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:26:32.9375637Z","updatedOn":"2025-08-21T22:26:32.9375637Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/e819cb23-355d-4405-9d39-3b49bb803052","type":"Microsoft.Authorization/roleAssignments","name":"e819cb23-355d-4405-9d39-3b49bb803052"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:27:02.9066158Z","updatedOn":"2025-08-21T22:27:02.9066158Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df846c77-d6bc-492b-8ae6-787a923f6229","type":"Microsoft.Authorization/roleAssignments","name":"df846c77-d6bc-492b-8ae6-787a923f6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/830072d8-760b-41be-ba28-e36f0fee3044","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:28:44.0291314Z","updatedOn":"2025-08-21T22:28:44.0291314Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/a367e148-34bc-41af-add0-24dd608cf30f","type":"Microsoft.Authorization/roleAssignments","name":"a367e148-34bc-41af-add0-24dd608cf30f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8bfab1c-b558-4c72-a69b-a8e3f3667536","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:29:09.1355334Z","updatedOn":"2025-08-21T22:29:09.1355334Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/31a9cd3c-c890-4193-8503-9bd424f33f6e","type":"Microsoft.Authorization/roleAssignments","name":"31a9cd3c-c890-4193-8503-9bd424f33f6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e274c463-413f-4ce7-9fa7-d2d388b607e4","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:29:34.4738092Z","updatedOn":"2025-08-21T22:29:34.4738092Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/a0eab1e4-b843-4f3d-abed-cb8a1ce6d10f","type":"Microsoft.Authorization/roleAssignments","name":"a0eab1e4-b843-4f3d-abed-cb8a1ce6d10f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fde5b3b3-d52c-45b6-a7c7-2c311b089bf5","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:30:07.1696437Z","updatedOn":"2025-08-21T22:30:07.1696437Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/c9b0c84e-6513-48b6-b783-12dd2fb09e93","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c84e-6513-48b6-b783-12dd2fb09e93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"868447c2-f4bb-4573-805f-cd751a8f9b9c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-09-17T17:30:07.5771052Z","updatedOn":"2025-09-17T17:30:07.5771052Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/7fc6d651-6be0-43a5-b527-e750984a344a","type":"Microsoft.Authorization/roleAssignments","name":"7fc6d651-6be0-43a5-b527-e750984a344a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"645b5ad8-8c98-4202-855d-9e1fd7f6da6f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-09-17T17:30:08.2689890Z","updatedOn":"2025-09-17T17:30:08.2689890Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1b57c952-280d-44eb-9872-21903e7496c5","type":"Microsoft.Authorization/roleAssignments","name":"1b57c952-280d-44eb-9872-21903e7496c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/285ce6d6-fa11-43bd-94ef-42a9b3740bfd","principalId":"852beb6c-5b3b-4bb4-a5bd-7c1ce98486be","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T17:03:57.4505943Z","updatedOn":"2026-01-21T17:03:57.4505943Z","createdBy":"5ef666f5-17d6-41e1-859f-1c31ee5cd240","updatedBy":"5ef666f5-17d6-41e1-859f-1c31ee5cd240","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/e974f8d9-bae1-413a-960c-017762d0b208","type":"Microsoft.Authorization/roleAssignments","name":"e974f8d9-bae1-413a-960c-017762d0b208"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a33b57f2-158e-4e1f-a7ba-8019bb4f7197","principalId":"5e07876d-c565-4e75-bc65-1a65ae48304e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-02-26T16:47:00.2927283Z","updatedOn":"2026-02-26T16:47:00.2927283Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/015c5dcd-57dd-4ec8-b612-0be8f9bd8c51","type":"Microsoft.Authorization/roleAssignments","name":"015c5dcd-57dd-4ec8-b612-0be8f9bd8c51"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2431c6cc-cf29-4146-86ae-5ac1c2e303b2","principalId":"ede5fc7f-18df-4704-801c-021821b9e321","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-10T15:28:12.4284001Z","updatedOn":"2026-03-10T15:28:12.4284001Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":"Restoring - access as part of CAB CHG0853319"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/94909ca4-1a3d-466c-8e66-752bb3af79e3","type":"Microsoft.Authorization/roleAssignments","name":"94909ca4-1a3d-466c-8e66-752bb3af79e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1bb5ce35-8c2f-4c82-87ee-01f3d608db3f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-10T15:48:42.0890231Z","updatedOn":"2026-03-10T15:48:42.0890231Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/8766351e-cb30-44e2-bfed-52bbc750bee4","type":"Microsoft.Authorization/roleAssignments","name":"8766351e-cb30-44e2-bfed-52bbc750bee4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d189652f-c018-4c55-8bcf-0a727d23663a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-18T20:06:34.5699850Z","updatedOn":"2026-03-18T20:06:34.5699850Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":"UAMI - used by MSI Cleanup automation"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/c9752bf9-3ba9-4eaf-9239-fc23fb6e6424","type":"Microsoft.Authorization/roleAssignments","name":"c9752bf9-3ba9-4eaf-9239-fc23fb6e6424"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/28bf596f-4eb7-45ce-b5bc-6cf482fec137","principalId":"d189652f-c018-4c55-8bcf-0a727d23663a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-18T20:07:12.2337408Z","updatedOn":"2026-03-18T20:07:12.2337408Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":"UAMI - used for MSI Cleanup automation"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/d1bd76fc-e4b0-4507-ab30-f904e7e39614","type":"Microsoft.Authorization/roleAssignments","name":"d1bd76fc-e4b0-4507-ab30-f904e7e39614"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22f30d07-13a2-4b45-b2f9-6d8e1b32ae80","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-20T16:28:59.9673620Z","updatedOn":"2026-03-20T16:28:59.9673620Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/5cfaf5d0-5bd7-47d1-9128-4895ea0222d2","type":"Microsoft.Authorization/roleAssignments","name":"5cfaf5d0-5bd7-47d1-9128-4895ea0222d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"6775723e-867a-453c-ad97-275f99a116ab","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-23T22:40:07.5068966Z","updatedOn":"2026-03-23T22:40:07.5068966Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Activate - for https://microsoftit.visualstudio.com/OneITVSO/_workitems/edit/15484975"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/02218255-28a3-468a-bdf1-5227eeaddce1","type":"Microsoft.Authorization/roleAssignments","name":"02218255-28a3-468a-bdf1-5227eeaddce1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ce2366a6-64d7-441b-939c-c9d23f91cccd","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b325d340-14f0-412a-8753-4868e914902f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-04-17T22:25:31.4437352Z","updatedOn":"2024-04-17T22:25:31.4437352Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97","type":"Microsoft.Authorization/roleAssignments","name":"6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"274871fc-ab7d-4860-99b6-e4ceff4883bb","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-05-30T21:35:32.6579323Z","updatedOn":"2024-05-30T21:35:32.6579323Z","createdBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","updatedBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/f9085458-9261-4821-b4b0-c6ddba2af3d1","type":"Microsoft.Authorization/roleAssignments","name":"f9085458-9261-4821-b4b0-c6ddba2af3d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"ff29f09e-a8be-4afc-b627-d02fcaf6c28d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-08-14T19:04:17.9473811Z","updatedOn":"2024-08-14T19:04:17.9473811Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/73f1e96c-b727-4776-80a5-02dbe581a565","type":"Microsoft.Authorization/roleAssignments","name":"73f1e96c-b727-4776-80a5-02dbe581a565"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"2dd1ea73-4024-489e-83a4-45cb3e962f69","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-01-17T20:03:31.9828324Z","updatedOn":"2024-01-17T20:03:31.9828324Z","createdBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","updatedBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/fe395c31-2241-4055-9536-d814d39b801b","type":"Microsoft.Authorization/roleAssignments","name":"fe395c31-2241-4055-9536-d814d39b801b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"80bef37c-0c59-474b-964a-e9eb09f913f5","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-09-27T18:17:31.8607675Z","updatedOn":"2024-09-27T18:17:31.8607675Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/97983db6-32d1-49aa-ac4b-45452f2c7913","type":"Microsoft.Authorization/roleAssignments","name":"97983db6-32d1-49aa-ac4b-45452f2c7913"}]}' - headers: - cache-control: - - no-cache - content-length: - - '119508' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4974808d-2d75-4fc5-bf6f-3bea3ff3abc1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 4E4E0D6D1AC942079159327D4DECB1C4 Ref B: BY1AA1072319025 Ref C: 2026-03-24T04:17:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - ParameterSetName: - - --role --assignee --scope - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27AcrPush%27&api-version=2022-05-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"AcrPush","type":"BuiltInRole","description":"acr - push","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.ContainerRegistry/registries/pull/read","Microsoft.ContainerRegistry/registries/push/write"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2018-10-29T17:52:32.5201177Z","updatedOn":"2021-11-11T20:13:07.4993029Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","type":"Microsoft.Authorization/roleDefinitions","name":"8311e382-0749-4cb8-b61a-304f252e45ec"}]}' - headers: - cache-control: - - no-cache - content-length: - - '667' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7ab69acb-e469-4b89-a7fc-1a547f14c047 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 6F63D07A900846038F0772E88334BC26 Ref B: BY1AA1072315052 Ref C: 2026-03-24T04:17:40Z' + - 'Ref A: 88107B5213CA4E18A1ACE243DF10A25D Ref B: SG2AA1040515060 Ref C: 2026-09-10T10:06:15Z' status: code: 200 message: OK @@ -1947,14 +1753,14 @@ interactions: Content-Length: - '0' ParameterSetName: - - --role --assignee --scope + - --ids User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:16:20.7703729Z","updatedOn":"2026-03-24T04:17:40.4459242Z","createdBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T10:04:28.1956174Z","updatedOn":"2026-09-10T10:06:18.0159150Z","createdBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -1963,7 +1769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:41 GMT + - Thu, 10 Sep 2026 10:06:20 GMT expires: - '-1' pragma: @@ -1975,227 +1781,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a1d0499f-a902-4997-85cb-a4134a0f981c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/88d43f7d-b2a5-444e-816f-6c52383f543c x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 0B86AC69C13642E3BD62A8613E559D03 Ref B: BY1AA1072316062 Ref C: 2026-03-24T04:17:40Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - ParameterSetName: - - --role --assignee --scope - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2780c7a525-065e-4198-8d08-f9fb692612dc%27%29 - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '92' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:41 GMT - odata-version: - - '4.0' - request-id: - - a8728d89-5739-4f99-a290-78d12a83840e - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF00011248"}}' - x-ms-resource-unit: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"ids": ["80c7a525-065e-4198-8d08-f9fb692612dc"], "types": ["user", "group", - "servicePrincipal", "directoryObjectPartnerReference"]}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - Content-Length: - - '132' - Content-Type: - - application/json - ParameterSetName: - - --role --assignee --scope - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: POST - uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds - response: - body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"80c7a525-065e-4198-8d08-f9fb692612dc","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask"],"appDisplayName":null,"appDescription":null,"appId":"0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdByAppId":"ef5d5c69-a5df-46bb-acaf-426f161a21a2","createdDateTime":"2026-03-24T04:13:57Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clireg000002/tasks/timerTask","homepage":null,"isDisabled":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","https://identity.azure.net/iOCiNhX85c7SkveY8krAy0mHOVmuGnRY96TW96ZaGx8="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"8A06379E0B75CAA8CAF7BFEC20D446523CE2DB5C","displayName":"CN=0a9db828-81b0-4a76-b207-a4a3cdf3b1aa","endDateTime":"2026-06-22T04:08:00Z","key":null,"keyId":"f25a11bb-94c1-4239-8fab-e854730b5d75","startDateTime":"2026-03-24T04:08:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1839' - content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:40 GMT - location: - - https://graph.microsoft.com - odata-version: - - '4.0' - request-id: - - 7edccfdf-982d-47ce-a212-f5c9ef5e20ce - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 3","Slice":"E","Ring":"2","ScaleUnit":"000","RoleInstance":"PH1PEPF00046994"}}' - x-ms-resource-unit: - - '3' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - ParameterSetName: - - --role --assignee --scope - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ffc7b67-95b9-471f-9a13-f3fcb5319c06","principalId":"5cf638fd-a9f5-4ed5-834d-b4b99d4372df","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2026-01-08T18:01:23.4164140Z","updatedOn":"2026-01-08T18:01:23.4164140Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/feb3abe9-5ceb-45bd-8098-58abdc343b46","type":"Microsoft.Authorization/roleAssignments","name":"feb3abe9-5ceb-45bd-8098-58abdc343b46"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ffc7b67-95b9-471f-9a13-f3fcb5319c06","principalId":"79555fee-51e2-43d1-8edd-ba5645b9f262","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2026-01-08T18:03:45.5024100Z","updatedOn":"2026-01-08T18:03:45.5024100Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/81346013-45eb-4449-9141-36c1bf2fde68","type":"Microsoft.Authorization/roleAssignments","name":"81346013-45eb-4449-9141-36c1bf2fde68"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599","principalId":"5c445532-1499-448e-970c-bda7db1e1f15","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-07-13T16:20:06.8829118Z","updatedOn":"2023-07-13T16:20:06.8829118Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":"Allow - AccessMonitorReader to read access details for compliance purpose"},"id":"/providers/Microsoft.Authorization/roleAssignments/fb6b898e-5323-404d-a8af-da5aafc3ecc0","type":"Microsoft.Authorization/roleAssignments","name":"fb6b898e-5323-404d-a8af-da5aafc3ecc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599","principalId":"612cdbb4-6edd-4998-aae9-129cdba53a9a","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-07-19T22:13:56.3482970Z","updatedOn":"2023-07-19T22:13:56.3482970Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":"Allow - AccessMonitorReader to read access details for compliance purpose"},"id":"/providers/Microsoft.Authorization/roleAssignments/3cdb16ce-2290-4f5f-bcab-5b07a458405f","type":"Microsoft.Authorization/roleAssignments","name":"3cdb16ce-2290-4f5f-bcab-5b07a458405f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599","principalId":"a1cd43c2-c713-4af4-b885-50540e2c595f","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2023-07-19T22:18:24.6119781Z","updatedOn":"2023-07-19T22:18:24.6119781Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":"Allow - AccessMonitorReader to read access details for compliance purpose"},"id":"/providers/Microsoft.Authorization/roleAssignments/125160dd-5630-45b1-8260-4e5469d3e7b6","type":"Microsoft.Authorization/roleAssignments","name":"125160dd-5630-45b1-8260-4e5469d3e7b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"14630511-63a1-4d32-a204-a8002c139ad2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:15:53.1683869Z","updatedOn":"2024-06-04T01:15:53.1683869Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d3c2cba-cd64-4597-ae9e-61b88b9e8c45","type":"Microsoft.Authorization/roleAssignments","name":"6d3c2cba-cd64-4597-ae9e-61b88b9e8c45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6","principalId":"f235e5e3-2e80-4ed1-909d-5347bc55392d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:15:57.1625875Z","updatedOn":"2024-06-04T01:15:57.1625875Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2174c02-a963-4ed0-946f-9f0efe9b4994","type":"Microsoft.Authorization/roleAssignments","name":"d2174c02-a963-4ed0-946f-9f0efe9b4994"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"f819bf1c-9cf9-42c3-bd59-82c507565fa1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:16:00.7789231Z","updatedOn":"2024-06-04T01:16:00.7789231Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/450af4b1-fc68-45a7-86f5-2d131bffbd36","type":"Microsoft.Authorization/roleAssignments","name":"450af4b1-fc68-45a7-86f5-2d131bffbd36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4","principalId":"e97ce641-32f2-4bf0-b09f-59ef55f32614","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:16:07.9180755Z","updatedOn":"2024-06-04T01:16:07.9180755Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff3d7c51-6e5f-480a-b7ae-eab601bc51e4","type":"Microsoft.Authorization/roleAssignments","name":"ff3d7c51-6e5f-480a-b7ae-eab601bc51e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6","principalId":"e97ce641-32f2-4bf0-b09f-59ef55f32614","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T01:16:11.2981320Z","updatedOn":"2024-06-04T01:16:11.2981320Z","createdBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","updatedBy":"274871fc-ab7d-4860-99b6-e4ceff4883bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4a7c992-9dd7-42b4-afac-d1f04935bcbf","type":"Microsoft.Authorization/roleAssignments","name":"e4a7c992-9dd7-42b4-afac-d1f04935bcbf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"3dc6def4-89c2-402a-b408-2cfb474f0c92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-06-04T06:23:03.4986796Z","updatedOn":"2024-06-04T06:23:03.4986796Z","createdBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","updatedBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11eddedf-73f2-4a84-aeb7-01fa8e54d268","type":"Microsoft.Authorization/roleAssignments","name":"11eddedf-73f2-4a84-aeb7-01fa8e54d268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"68abb7a6-9056-4d60-bf87-3b50a45559cd","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-09T05:52:01.7818699Z","updatedOn":"2022-07-09T05:52:01.7818699Z","createdBy":"e3043039-6412-4d88-ad5e-9dce4985c5d1","updatedBy":"e3043039-6412-4d88-ad5e-9dce4985c5d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e6189cf-1895-4535-8aaf-717a3f2cf930","type":"Microsoft.Authorization/roleAssignments","name":"2e6189cf-1895-4535-8aaf-717a3f2cf930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d","principalId":"3dc6def4-89c2-402a-b408-2cfb474f0c92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2024-11-07T03:27:44.7348434Z","updatedOn":"2024-11-07T03:27:44.7348434Z","createdBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","updatedBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/679367ef-1475-4f6b-8698-24fe42de13de","type":"Microsoft.Authorization/roleAssignments","name":"679367ef-1475-4f6b-8698-24fe42de13de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b6ca2e8-2cdc-4bd6-b896-aa3d8c21fc35","principalId":"3dc6def4-89c2-402a-b408-2cfb474f0c92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2025-11-05T02:59:59.6736193Z","updatedOn":"2025-11-05T02:59:59.6736193Z","createdBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","updatedBy":"e97ce641-32f2-4bf0-b09f-59ef55f32614","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59a6c4d-3a00-48fd-84af-6b983e7523a1","type":"Microsoft.Authorization/roleAssignments","name":"b59a6c4d-3a00-48fd-84af-6b983e7523a1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:15:01.2608172Z","updatedOn":"2026-03-24T04:15:01.2608172Z","createdBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"56d08bc2-cc29-4d23-9d23-fd396b807b02","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"4a113caa-961f-4535-ac9b-79bfba8b9ed2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"6179a082-c057-4fe3-8118-916b816a42e3","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"7c2d0d59-528c-434a-8c6c-03330539cad2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"7d7aed0a-228e-420b-a6a2-82a49dacb8cb","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"b7a49237-f5b0-473f-a4ff-6830d23af17d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"f2e939bc-742a-42f9-a27a-f0982c6e3f64","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"b7b8bd19-f827-425f-9be1-fd8a86b21904","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"700587cd-b5ad-4d37-b560-3ff43a4a5490","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"482dccba-36b8-4309-8599-dce82be5b107","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"0504eea8-68f8-4367-a04f-38407a0c4a97","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"1fdb09c2-872e-43c5-bb79-561e3122dc8a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"0d73806b-2839-44f0-b9e0-3de55a565a24","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"bec26c10-d462-4862-9537-53c98dd5606c","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"421cdbd5-e8fa-4961-a599-600c3230e091","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"9c6d261d-f447-4cf6-bbde-6010b3953a75","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"f47f1409-00ea-40d5-bed1-401a50741ae3","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"e0cb5c33-2084-4cec-ac51-2bc313d4502e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2023-04-07T05:56:00.4871186Z","updatedOn":"2023-04-24T19:44:20.3477537Z","createdBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","updatedBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/17a093c4-e4b2-5959-95e3-5894ef6873fb","type":"Microsoft.Authorization/roleAssignments","name":"17a093c4-e4b2-5959-95e3-5894ef6873fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"f7b9f917-9a41-437c-84b1-682a814dbaf6","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2023-11-26T01:37:41.9144630Z","updatedOn":"2024-01-08T19:18:08.6396605Z","createdBy":"815c7b56-317b-457c-bf99-f9c2b6a3f739","updatedBy":"815c7b56-317b-457c-bf99-f9c2b6a3f739","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/67815997-99bc-5b98-9a5d-5ad5a092d499","type":"Microsoft.Authorization/roleAssignments","name":"67815997-99bc-5b98-9a5d-5ad5a092d499"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"6571efc1-a303-44df-b1b8-38523fdea4fa","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"dc50c6c2-4754-411b-9fe0-f341f3910403","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"72c0a066-b35b-4d68-bd6f-d406ed3f2b9f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"779ead4e-2dc9-4191-b651-7f2a57b0b6ff","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"fd279736-6a60-4ae6-b252-3ae9d9fea200","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"40b1b8e8-c813-4c09-b2bb-86db1f921168","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"fde3669e-734a-4765-a063-fdec3647fcc8","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"76ae450f-630f-4af4-92cf-e7153ba839f0","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"fd3aca68-eb29-4ad8-be21-662836d3f454","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"5a1044d8-27f6-4e3d-b994-30521eedb46c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"2b8b0d82-3484-40e9-b634-df286b616735","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"5e83e4cb-9b41-4b98-b8dd-4fc3951ea1ed","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"eb5dcf2a-c769-4615-b84b-74ac50f15a4a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-06-29T08:10:10.2639240Z","updatedOn":"2024-07-03T06:42:54.2315474Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fd981fb3-5e11-5e90-aa7b-b646c44e910a","type":"Microsoft.Authorization/roleAssignments","name":"fd981fb3-5e11-5e90-aa7b-b646c44e910a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d","principalId":"526cce61-401e-4709-9918-7888208dbe55","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-08-06T19:46:22.1511939Z","updatedOn":"2024-08-06T19:46:22.1511939Z","createdBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","updatedBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/924c5f63-7511-49c2-b9f5-5a5b8deeb6cd","type":"Microsoft.Authorization/roleAssignments","name":"924c5f63-7511-49c2-b9f5-5a5b8deeb6cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432","principalId":"ed64b40d-cfa6-405c-890c-ade489e6dc9c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.4640815Z","updatedOn":"2024-09-04T17:58:51.4640815Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/16ad0a18-aacd-4844-8c39-22deb4119f74","type":"Microsoft.Authorization/roleAssignments","name":"16ad0a18-aacd-4844-8c39-22deb4119f74"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"2dd1ea73-4024-489e-83a4-45cb3e962f69","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6627656Z","updatedOn":"2024-09-04T17:58:51.6627656Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5e997838-ea3d-4e79-8d7b-2d2dfdbe3868","type":"Microsoft.Authorization/roleAssignments","name":"5e997838-ea3d-4e79-8d7b-2d2dfdbe3868"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437","principalId":"8b940b4f-b118-465f-bdd4-65cf3c55cc3e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6545669Z","updatedOn":"2024-09-04T17:58:51.6545669Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0","type":"Microsoft.Authorization/roleAssignments","name":"5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c","principalId":"64cb6e50-2fe8-4ad4-86e9-291b799fd3b7","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.7609502Z","updatedOn":"2024-09-04T17:58:51.7609502Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5eb9a251-63c4-4db4-a2f2-689d011b4509","type":"Microsoft.Authorization/roleAssignments","name":"5eb9a251-63c4-4db4-a2f2-689d011b4509"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"ff29f09e-a8be-4afc-b627-d02fcaf6c28d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.8333637Z","updatedOn":"2024-09-04T17:58:51.8333637Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1cd85cca-586c-45d9-9f81-4074965a9d99","type":"Microsoft.Authorization/roleAssignments","name":"1cd85cca-586c-45d9-9f81-4074965a9d99"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"5f354ec9-f512-41f0-9f1f-ce25bbeb5369","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.3122114Z","updatedOn":"2024-09-04T17:58:51.3122114Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e0ef8920-e57d-4c1c-a21f-0765b34786b5","type":"Microsoft.Authorization/roleAssignments","name":"e0ef8920-e57d-4c1c-a21f-0765b34786b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d","principalId":"2dcdba1f-c5f9-4092-bce5-bf593ac4bea5","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.5115488Z","updatedOn":"2024-09-04T17:58:51.5115488Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/27929cc1-e4f6-4dab-80cb-51b2743ec222","type":"Microsoft.Authorization/roleAssignments","name":"27929cc1-e4f6-4dab-80cb-51b2743ec222"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa","principalId":"4efc6c2d-d534-418c-b109-7f54e80a70d0","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6565526Z","updatedOn":"2024-09-04T17:58:51.6565526Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a68687e3-f706-452b-ad9b-5d2497348da4","type":"Microsoft.Authorization/roleAssignments","name":"a68687e3-f706-452b-ad9b-5d2497348da4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"10b09f65-7a54-41fa-965d-ca3490541488","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6436777Z","updatedOn":"2024-09-04T17:58:51.6436777Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ea232a8a-e2e3-472d-a926-257f61a306f8","type":"Microsoft.Authorization/roleAssignments","name":"ea232a8a-e2e3-472d-a926-257f61a306f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"ff29f09e-a8be-4afc-b627-d02fcaf6c28d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6276165Z","updatedOn":"2024-09-04T17:58:51.6276165Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f61532eb-c3be-4af1-9283-49c3e54978bd","type":"Microsoft.Authorization/roleAssignments","name":"f61532eb-c3be-4af1-9283-49c3e54978bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"10b09f65-7a54-41fa-965d-ca3490541488","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6806125Z","updatedOn":"2024-09-04T17:58:51.6806125Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48f44b2a-d2b7-45f6-b80a-930a630b26e7","type":"Microsoft.Authorization/roleAssignments","name":"48f44b2a-d2b7-45f6-b80a-930a630b26e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"dd6b2b46-ce72-42b7-af27-93fa41db399e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.3196261Z","updatedOn":"2024-09-04T17:58:51.3196261Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6cca32ef-f72d-42b9-a956-b28bd5fd59a8","type":"Microsoft.Authorization/roleAssignments","name":"6cca32ef-f72d-42b9-a956-b28bd5fd59a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17","principalId":"729eba1d-8508-4034-abd2-54128fbe8b22","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:52.0592211Z","updatedOn":"2024-09-04T17:58:52.0592211Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec","type":"Microsoft.Authorization/roleAssignments","name":"cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-04T17:58:51.6932275Z","updatedOn":"2024-09-04T17:58:51.6932275Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48c6a306-5301-439e-86b0-9e2bca52994e","type":"Microsoft.Authorization/roleAssignments","name":"48c6a306-5301-439e-86b0-9e2bca52994e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-16T07:48:49.7761077Z","updatedOn":"2024-10-09T11:32:02.0971195Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7a465a70-0737-5ea3-a401-17d618549b26","type":"Microsoft.Authorization/roleAssignments","name":"7a465a70-0737-5ea3-a401-17d618549b26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064","principalId":"3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-16T07:48:51.5805513Z","updatedOn":"2024-10-09T11:32:04.0456795Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e26bf549-e870-5800-af71-7a0d874ba92d","type":"Microsoft.Authorization/roleAssignments","name":"e26bf549-e870-5800-af71-7a0d874ba92d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"0a44da5b-5b98-42b5-aa43-be2ceae9a377","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2024-09-20T23:14:31.6471670Z","updatedOn":"2024-09-20T23:14:31.6471670Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a514e01b-fd6b-4bfa-a4ee-0747994c9e5f","type":"Microsoft.Authorization/roleAssignments","name":"a514e01b-fd6b-4bfa-a4ee-0747994c9e5f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302","principalId":"2a7381d1-1dae-4b42-93f4-181ada4c4865","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-01-16T00:02:23.0916862Z","updatedOn":"2025-02-04T02:25:20.8028292Z","createdBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2674eb52-f8a5-5178-80e5-c2775b7da442","type":"Microsoft.Authorization/roleAssignments","name":"2674eb52-f8a5-5178-80e5-c2775b7da442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302","principalId":"273459e4-5fc5-4997-aae0-de7455209f23","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-01-28T20:53:00.9077636Z","updatedOn":"2025-02-03T23:46:56.0575877Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/dd64da31-e90a-58fb-8767-341d655cf574","type":"Microsoft.Authorization/roleAssignments","name":"dd64da31-e90a-58fb-8767-341d655cf574"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"d55756eb-3c10-462c-9025-5cc2ada4952e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-04-18T17:43:23.1883169Z","updatedOn":"2025-05-16T00:31:07.3346817Z","createdBy":"867bbc59-27fb-4f50-9b92-51aeff73dca0","updatedBy":"867bbc59-27fb-4f50-9b92-51aeff73dca0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e6bdd883-b621-5a5f-b0f7-f32ce47f9f94","type":"Microsoft.Authorization/roleAssignments","name":"e6bdd883-b621-5a5f-b0f7-f32ce47f9f94"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"b5d47a1d-7a52-48b7-80e0-f027c137f72e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-05-21T06:03:10.0225514Z","updatedOn":"2025-06-03T19:22:35.6825881Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/28ebc426-cb80-59c0-b843-57910686e9a8","type":"Microsoft.Authorization/roleAssignments","name":"28ebc426-cb80-59c0-b843-57910686e9a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2dd1ea73-4024-489e-83a4-45cb3e962f69","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2025-07-09T17:00:12.2804133Z","updatedOn":"2025-07-09T17:00:12.2804133Z","createdBy":"526cce61-401e-4709-9918-7888208dbe55","updatedBy":"526cce61-401e-4709-9918-7888208dbe55","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/72ac5e88-b456-42a7-9c02-7f8c58efc8dc","type":"Microsoft.Authorization/roleAssignments","name":"72ac5e88-b456-42a7-9c02-7f8c58efc8dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"82a9aaa5-865b-4f3e-9a0d-049b2dad8ded","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-07T22:48:47.5091640Z","updatedOn":"2026-02-07T18:27:56.7918053Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/968808a9-fd4a-52e6-a0a1-f0aef40459ff","type":"Microsoft.Authorization/roleAssignments","name":"968808a9-fd4a-52e6-a0a1-f0aef40459ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"82a9aaa5-865b-4f3e-9a0d-049b2dad8ded","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-07T22:48:49.4384488Z","updatedOn":"2026-02-07T18:27:58.0521260Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b90e6053-096b-5dca-8173-d73b9afd9a61","type":"Microsoft.Authorization/roleAssignments","name":"b90e6053-096b-5dca-8173-d73b9afd9a61"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"0d1f2a09-7f5c-49c6-923e-b8e10b8c7c0d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-07T22:49:08.8647481Z","updatedOn":"2026-01-27T13:50:35.6704820Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/34ad86ca-c4a4-5d0c-8be9-8a7c31517bb2","type":"Microsoft.Authorization/roleAssignments","name":"34ad86ca-c4a4-5d0c-8be9-8a7c31517bb2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"d281c42c-2086-4c53-9bec-630c97173d76","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2026-01-08T02:09:22.0737654Z","updatedOn":"2026-02-01T14:24:40.3892616Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6fe5c02d-9569-5ceb-9d5e-1926eed0a9b3","type":"Microsoft.Authorization/roleAssignments","name":"6fe5c02d-9569-5ceb-9d5e-1926eed0a9b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ebc6a08c-9436-41c0-98ea-9a98ce69e91c","principalId":"93c69cf7-7f7c-44e8-bc82-889084703380","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-10-25T00:59:34.6842751Z","updatedOn":"2024-10-25T00:59:34.6842751Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/80be68ee-64b9-41c6-ad33-91e561563dc3","type":"Microsoft.Authorization/roleAssignments","name":"80be68ee-64b9-41c6-ad33-91e561563dc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"93c69cf7-7f7c-44e8-bc82-889084703380","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-10-25T01:00:25.9766703Z","updatedOn":"2024-10-25T01:00:25.9766703Z","createdBy":"7065961c-d3a8-4346-985c-12cd2dec2994","updatedBy":"7065961c-d3a8-4346-985c-12cd2dec2994","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/7fcb7148-5d5b-43f5-866a-28bfc6db1727","type":"Microsoft.Authorization/roleAssignments","name":"7fcb7148-5d5b-43f5-866a-28bfc6db1727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"bec26c10-d462-4862-9537-53c98dd5606c","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"4e7ce0ab-3f80-4c90-834e-047bb8b21564","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2023-09-15T21:41:54.7021549Z","updatedOn":"2023-09-15T21:41:54.7021549Z","createdBy":"08958326-d36e-43ae-bcfb-349b337a4483","updatedBy":"08958326-d36e-43ae-bcfb-349b337a4483","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6","type":"Microsoft.Authorization/roleAssignments","name":"c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"48580f46-cdf7-4677-b38f-13fee8d2b744","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-06-25T17:22:19.5530130Z","updatedOn":"2024-06-25T17:22:19.5530130Z","createdBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","updatedBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/9547ef7c-6294-470a-ad4a-00ab0587ff67","type":"Microsoft.Authorization/roleAssignments","name":"9547ef7c-6294-470a-ad4a-00ab0587ff67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"753548ec-bac1-4b53-8540-167bade337a6","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-06-25T17:22:56.3760639Z","updatedOn":"2024-06-25T17:22:56.3760639Z","createdBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","updatedBy":"46e80812-4c4e-42fa-88fe-73f37845efe3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/a9047912-01ff-4276-8ba3-86b00aac5a81","type":"Microsoft.Authorization/roleAssignments","name":"a9047912-01ff-4276-8ba3-86b00aac5a81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c","principalId":"71c2f92b-fbbc-441b-bb97-84fbf374d8d2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-09-09T21:12:09.3390030Z","updatedOn":"2024-09-09T21:12:09.3390030Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/1b73abcc-559a-4c11-919d-7ba9003ef4b7","type":"Microsoft.Authorization/roleAssignments","name":"1b73abcc-559a-4c11-919d-7ba9003ef4b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4","principalId":"71c2f92b-fbbc-441b-bb97-84fbf374d8d2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2024-09-09T21:12:33.2531658Z","updatedOn":"2024-09-09T21:12:33.2531658Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b5c5043d-0d03-4e87-a5ff-74961fb5fc62","type":"Microsoft.Authorization/roleAssignments","name":"b5c5043d-0d03-4e87-a5ff-74961fb5fc62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"7795c402-abeb-42e9-a027-b924b28c67bb","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-02-08T12:33:42.6662324Z","updatedOn":"2025-02-11T13:31:01.3012787Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c522c42b-842f-538e-b4bb-7a43ba597d28","type":"Microsoft.Authorization/roleAssignments","name":"c522c42b-842f-538e-b4bb-7a43ba597d28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"8f57971f-cf33-4610-ad69-5671e1eb0420","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-02-09T00:45:40.2106127Z","updatedOn":"2025-02-12T01:41:31.9037195Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4e15e659-ab5f-57ed-8187-bd5f3b98edbc","type":"Microsoft.Authorization/roleAssignments","name":"4e15e659-ab5f-57ed-8187-bd5f3b98edbc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995","principalId":"d2d087be-d63b-4971-b4a6-c1b11fda301c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-04-03T21:23:34.8417417Z","updatedOn":"2025-04-03T21:23:34.8417417Z","createdBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","updatedBy":"54e5cbe7-4642-409f-a296-a6d41d03ce38","delegatedManagedIdentityResourceId":null,"description":"Grant - ASM team access for policy remediations."},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/cbe5f8c3-856b-4c1c-990e-27257091d0bf","type":"Microsoft.Authorization/roleAssignments","name":"cbe5f8c3-856b-4c1c-990e-27257091d0bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5829ae32-f640-4f96-a65b-e6acba247856","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-05-30T10:53:23.9718004Z","updatedOn":"2025-05-30T10:53:23.9718004Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3e7686bd-3389-4f3c-9348-1589f3c3ec73","type":"Microsoft.Authorization/roleAssignments","name":"3e7686bd-3389-4f3c-9348-1589f3c3ec73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f","principalId":"5829ae32-f640-4f96-a65b-e6acba247856","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-05-30T10:56:35.3529828Z","updatedOn":"2025-05-30T10:56:35.3529828Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/6386bd4c-4ba7-45cd-8640-1036f4bb112d","type":"Microsoft.Authorization/roleAssignments","name":"6386bd4c-4ba7-45cd-8640-1036f4bb112d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"71c2f92b-fbbc-441b-bb97-84fbf374d8d2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2025-06-18T21:46:03.8838376Z","updatedOn":"2025-06-18T21:46:03.8838376Z","createdBy":"ecb3ca67-89e4-4ec6-be01-19241f802632","updatedBy":"ecb3ca67-89e4-4ec6-be01-19241f802632","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b18aa4ed-3cc5-42fc-98dc-c7c69619d9fc","type":"Microsoft.Authorization/roleAssignments","name":"b18aa4ed-3cc5-42fc-98dc-c7c69619d9fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f","principalId":"852beb6c-5b3b-4bb4-a5bd-7c1ce98486be","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2026-03-04T21:46:42.5980140Z","updatedOn":"2026-03-04T21:46:42.5980140Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/de0b8e16-1c0e-4c41-9472-214c1d1ec0cd","type":"Microsoft.Authorization/roleAssignments","name":"de0b8e16-1c0e-4c41-9472-214c1d1ec0cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615","principalId":"5e07876d-c565-4e75-bc65-1a65ae48304e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-03-11T17:35:22.2000461Z","updatedOn":"2025-03-11T17:35:22.2000461Z","createdBy":"bf803fce-d6da-4515-a406-9682823fd96a","updatedBy":"bf803fce-d6da-4515-a406-9682823fd96a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/35053ae6-722f-4161-918a-0c8fd8a042db","type":"Microsoft.Authorization/roleAssignments","name":"35053ae6-722f-4161-918a-0c8fd8a042db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"38ff3154-4977-42d0-82ab-e38d1f3719c5","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-04-14T20:07:13.3411027Z","updatedOn":"2025-04-14T20:07:13.3411027Z","createdBy":"a0d72534-d3a9-42cd-8f3f-27c1ffa5bedb","updatedBy":"a0d72534-d3a9-42cd-8f3f-27c1ffa5bedb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1bce5a64-e141-485c-b259-2f69575d0c69","type":"Microsoft.Authorization/roleAssignments","name":"1bce5a64-e141-485c-b259-2f69575d0c69"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-04-22T20:14:15.5336665Z","updatedOn":"2025-04-22T20:14:15.5336665Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/50011531-5d98-4894-a44b-191b2741f9cc","type":"Microsoft.Authorization/roleAssignments","name":"50011531-5d98-4894-a44b-191b2741f9cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-04-22T20:14:46.5887491Z","updatedOn":"2025-04-22T20:14:46.5887491Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/53b21571-8cee-4a05-b550-c6bd7f515bc9","type":"Microsoft.Authorization/roleAssignments","name":"53b21571-8cee-4a05-b550-c6bd7f515bc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ede5fc7f-18df-4704-801c-021821b9e321","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-06-20T21:01:13.4299245Z","updatedOn":"2025-06-20T21:01:13.4299245Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/2b2addb5-8ea4-417e-986b-30ada26d3d0c","type":"Microsoft.Authorization/roleAssignments","name":"2b2addb5-8ea4-417e-986b-30ada26d3d0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"f30ed716-f4cd-4444-8d4e-9bf024a54740","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-06-20T21:01:13.5734432Z","updatedOn":"2025-06-20T21:01:13.5734432Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/7ecf3cf5-d277-485d-a2e9-f53e76a8ada3","type":"Microsoft.Authorization/roleAssignments","name":"7ecf3cf5-d277-485d-a2e9-f53e76a8ada3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de24f270-c24e-43bb-bece-2b717f047e34","principalId":"ede5fc7f-18df-4704-801c-021821b9e321","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-06-23T23:36:48.6952965Z","updatedOn":"2025-06-23T23:36:48.6952965Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6de88439-bace-41c1-a432-3b26b9b31ea9","type":"Microsoft.Authorization/roleAssignments","name":"6de88439-bace-41c1-a432-3b26b9b31ea9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d","principalId":"526cce61-401e-4709-9918-7888208dbe55","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-07-09T16:45:31.6497349Z","updatedOn":"2025-07-09T16:45:31.6497349Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1ef9dc63-f54e-4ae6-8873-71b9e2969c32","type":"Microsoft.Authorization/roleAssignments","name":"1ef9dc63-f54e-4ae6-8873-71b9e2969c32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/793583af-211e-4076-8f72-6e93327872f9","principalId":"1ab51ec4-3596-49cf-8efb-b4419572cc39","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-07-09T18:03:07.9184866Z","updatedOn":"2025-07-09T18:03:07.9184866Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/cbc761f9-33fc-48fd-a9e5-985ef31605bd","type":"Microsoft.Authorization/roleAssignments","name":"cbc761f9-33fc-48fd-a9e5-985ef31605bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"c798416e-094a-4d09-be9a-ed93adb47d31","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-13T18:27:19.7856046Z","updatedOn":"2025-08-13T18:27:19.7856046Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/d8bad98a-e2b1-4db3-8f24-7423d084f326","type":"Microsoft.Authorization/roleAssignments","name":"d8bad98a-e2b1-4db3-8f24-7423d084f326"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"d6802578-7412-4f5f-a794-c6c1b338550b","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:24:01.4847688Z","updatedOn":"2025-08-21T22:24:01.4847688Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/58a22df8-9364-44ab-90be-4c8b6677571d","type":"Microsoft.Authorization/roleAssignments","name":"58a22df8-9364-44ab-90be-4c8b6677571d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db","principalId":"d6802578-7412-4f5f-a794-c6c1b338550b","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:25:11.5662255Z","updatedOn":"2025-08-21T22:25:11.5662255Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/3a1944b0-3b58-4ed1-8517-8a509d8f2cbb","type":"Microsoft.Authorization/roleAssignments","name":"3a1944b0-3b58-4ed1-8517-8a509d8f2cbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2","principalId":"d6802578-7412-4f5f-a794-c6c1b338550b","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:25:45.5430300Z","updatedOn":"2025-08-21T22:25:45.5430300Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/a30790b7-28c4-4b40-bff2-d546b06e2e18","type":"Microsoft.Authorization/roleAssignments","name":"a30790b7-28c4-4b40-bff2-d546b06e2e18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:26:32.9375637Z","updatedOn":"2025-08-21T22:26:32.9375637Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/e819cb23-355d-4405-9d39-3b49bb803052","type":"Microsoft.Authorization/roleAssignments","name":"e819cb23-355d-4405-9d39-3b49bb803052"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:27:02.9066158Z","updatedOn":"2025-08-21T22:27:02.9066158Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df846c77-d6bc-492b-8ae6-787a923f6229","type":"Microsoft.Authorization/roleAssignments","name":"df846c77-d6bc-492b-8ae6-787a923f6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/830072d8-760b-41be-ba28-e36f0fee3044","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:28:44.0291314Z","updatedOn":"2025-08-21T22:28:44.0291314Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/a367e148-34bc-41af-add0-24dd608cf30f","type":"Microsoft.Authorization/roleAssignments","name":"a367e148-34bc-41af-add0-24dd608cf30f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8bfab1c-b558-4c72-a69b-a8e3f3667536","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:29:09.1355334Z","updatedOn":"2025-08-21T22:29:09.1355334Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/31a9cd3c-c890-4193-8503-9bd424f33f6e","type":"Microsoft.Authorization/roleAssignments","name":"31a9cd3c-c890-4193-8503-9bd424f33f6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e274c463-413f-4ce7-9fa7-d2d388b607e4","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:29:34.4738092Z","updatedOn":"2025-08-21T22:29:34.4738092Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/a0eab1e4-b843-4f3d-abed-cb8a1ce6d10f","type":"Microsoft.Authorization/roleAssignments","name":"a0eab1e4-b843-4f3d-abed-cb8a1ce6d10f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fde5b3b3-d52c-45b6-a7c7-2c311b089bf5","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-08-21T22:30:07.1696437Z","updatedOn":"2025-08-21T22:30:07.1696437Z","createdBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","updatedBy":"c35cb019-e937-492e-8f75-eddbcacaa2c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/c9b0c84e-6513-48b6-b783-12dd2fb09e93","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c84e-6513-48b6-b783-12dd2fb09e93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"868447c2-f4bb-4573-805f-cd751a8f9b9c","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-09-17T17:30:07.5771052Z","updatedOn":"2025-09-17T17:30:07.5771052Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/7fc6d651-6be0-43a5-b527-e750984a344a","type":"Microsoft.Authorization/roleAssignments","name":"7fc6d651-6be0-43a5-b527-e750984a344a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"645b5ad8-8c98-4202-855d-9e1fd7f6da6f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2025-09-17T17:30:08.2689890Z","updatedOn":"2025-09-17T17:30:08.2689890Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1b57c952-280d-44eb-9872-21903e7496c5","type":"Microsoft.Authorization/roleAssignments","name":"1b57c952-280d-44eb-9872-21903e7496c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/285ce6d6-fa11-43bd-94ef-42a9b3740bfd","principalId":"852beb6c-5b3b-4bb4-a5bd-7c1ce98486be","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-01-21T17:03:57.4505943Z","updatedOn":"2026-01-21T17:03:57.4505943Z","createdBy":"5ef666f5-17d6-41e1-859f-1c31ee5cd240","updatedBy":"5ef666f5-17d6-41e1-859f-1c31ee5cd240","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/e974f8d9-bae1-413a-960c-017762d0b208","type":"Microsoft.Authorization/roleAssignments","name":"e974f8d9-bae1-413a-960c-017762d0b208"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a33b57f2-158e-4e1f-a7ba-8019bb4f7197","principalId":"5e07876d-c565-4e75-bc65-1a65ae48304e","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-02-26T16:47:00.2927283Z","updatedOn":"2026-02-26T16:47:00.2927283Z","createdBy":"10127262-241f-48af-a706-d2afbac3bec0","updatedBy":"10127262-241f-48af-a706-d2afbac3bec0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/015c5dcd-57dd-4ec8-b612-0be8f9bd8c51","type":"Microsoft.Authorization/roleAssignments","name":"015c5dcd-57dd-4ec8-b612-0be8f9bd8c51"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2431c6cc-cf29-4146-86ae-5ac1c2e303b2","principalId":"ede5fc7f-18df-4704-801c-021821b9e321","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-10T15:28:12.4284001Z","updatedOn":"2026-03-10T15:28:12.4284001Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":"Restoring - access as part of CAB CHG0853319"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/94909ca4-1a3d-466c-8e66-752bb3af79e3","type":"Microsoft.Authorization/roleAssignments","name":"94909ca4-1a3d-466c-8e66-752bb3af79e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1bb5ce35-8c2f-4c82-87ee-01f3d608db3f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-10T15:48:42.0890231Z","updatedOn":"2026-03-10T15:48:42.0890231Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Creating - role assignment from RBAC Extension"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/8766351e-cb30-44e2-bfed-52bbc750bee4","type":"Microsoft.Authorization/roleAssignments","name":"8766351e-cb30-44e2-bfed-52bbc750bee4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d189652f-c018-4c55-8bcf-0a727d23663a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-18T20:06:34.5699850Z","updatedOn":"2026-03-18T20:06:34.5699850Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":"UAMI - used by MSI Cleanup automation"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/c9752bf9-3ba9-4eaf-9239-fc23fb6e6424","type":"Microsoft.Authorization/roleAssignments","name":"c9752bf9-3ba9-4eaf-9239-fc23fb6e6424"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/28bf596f-4eb7-45ce-b5bc-6cf482fec137","principalId":"d189652f-c018-4c55-8bcf-0a727d23663a","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-18T20:07:12.2337408Z","updatedOn":"2026-03-18T20:07:12.2337408Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":"UAMI - used for MSI Cleanup automation"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/d1bd76fc-e4b0-4507-ab30-f904e7e39614","type":"Microsoft.Authorization/roleAssignments","name":"d1bd76fc-e4b0-4507-ab30-f904e7e39614"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22f30d07-13a2-4b45-b2f9-6d8e1b32ae80","principalId":"84613128-3197-4f01-9de0-1e6aeb4e331f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-20T16:28:59.9673620Z","updatedOn":"2026-03-20T16:28:59.9673620Z","createdBy":"b6382ea2-e950-45ec-96e9-b989833616b7","updatedBy":"b6382ea2-e950-45ec-96e9-b989833616b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/5cfaf5d0-5bd7-47d1-9128-4895ea0222d2","type":"Microsoft.Authorization/roleAssignments","name":"5cfaf5d0-5bd7-47d1-9128-4895ea0222d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"6775723e-867a-453c-ad97-275f99a116ab","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2026-03-23T22:40:07.5068966Z","updatedOn":"2026-03-23T22:40:07.5068966Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":"Activate - for https://microsoftit.visualstudio.com/OneITVSO/_workitems/edit/15484975"},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/02218255-28a3-468a-bdf1-5227eeaddce1","type":"Microsoft.Authorization/roleAssignments","name":"02218255-28a3-468a-bdf1-5227eeaddce1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ce2366a6-64d7-441b-939c-c9d23f91cccd","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b325d340-14f0-412a-8753-4868e914902f","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-04-17T22:25:31.4437352Z","updatedOn":"2024-04-17T22:25:31.4437352Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97","type":"Microsoft.Authorization/roleAssignments","name":"6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"274871fc-ab7d-4860-99b6-e4ceff4883bb","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-05-30T21:35:32.6579323Z","updatedOn":"2024-05-30T21:35:32.6579323Z","createdBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","updatedBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/f9085458-9261-4821-b4b0-c6ddba2af3d1","type":"Microsoft.Authorization/roleAssignments","name":"f9085458-9261-4821-b4b0-c6ddba2af3d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"ff29f09e-a8be-4afc-b627-d02fcaf6c28d","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-08-14T19:04:17.9473811Z","updatedOn":"2024-08-14T19:04:17.9473811Z","createdBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","updatedBy":"b3d441fb-e998-494d-a72b-9c24eabd0cde","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/73f1e96c-b727-4776-80a5-02dbe581a565","type":"Microsoft.Authorization/roleAssignments","name":"73f1e96c-b727-4776-80a5-02dbe581a565"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"2dd1ea73-4024-489e-83a4-45cb3e962f69","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd","principalId":"cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-01-17T20:03:31.9828324Z","updatedOn":"2024-01-17T20:03:31.9828324Z","createdBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","updatedBy":"0cf7b301-43f3-4b77-8fa3-533ef1ad19fa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/fe395c31-2241-4055-9536-d814d39b801b","type":"Microsoft.Authorization/roleAssignments","name":"fe395c31-2241-4055-9536-d814d39b801b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"80bef37c-0c59-474b-964a-e9eb09f913f5","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2024-09-27T18:17:31.8607675Z","updatedOn":"2024-09-27T18:17:31.8607675Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/97983db6-32d1-49aa-ac4b-45452f2c7913","type":"Microsoft.Authorization/roleAssignments","name":"97983db6-32d1-49aa-ac4b-45452f2c7913"}]}' - headers: - cache-control: - - no-cache - content-length: - - '118448' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1aaaf9a4-96d3-438d-884a-47d6dd58d963 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: BF8425F5CD354751B83E3113E0D54181 Ref B: SJC211051204025 Ref C: 2026-03-24T04:17:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - role assignment delete - Connection: - - keep-alive - ParameterSetName: - - --role --assignee --scope - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Container%20Registry%20Repository%20Contributor%27&api-version=2022-05-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Container Registry Repository - Contributor","type":"BuiltInRole","description":"Allows for read, write, and - delete access to Azure Container Registry repositories, but excluding catalog - listing.","assignableScopes":["/"],"permissions":[{"actions":[],"notActions":[],"dataActions":["Microsoft.ContainerRegistry/registries/repositories/metadata/read","Microsoft.ContainerRegistry/registries/repositories/content/read","Microsoft.ContainerRegistry/registries/repositories/metadata/write","Microsoft.ContainerRegistry/registries/repositories/content/write","Microsoft.ContainerRegistry/registries/repositories/metadata/delete","Microsoft.ContainerRegistry/registries/repositories/content/delete"],"notDataActions":[]}],"createdOn":"2024-06-05T15:32:11.5848534Z","updatedOn":"2025-10-03T17:14:16.6197074Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","type":"Microsoft.Authorization/roleDefinitions","name":"2efddaa5-3f1f-4df3-97df-af3f13818f4c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '1115' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 04:17:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/43a4d217-1a01-4ac3-a32f-e1c093780f61 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: A44A590DE4F4444890FBF3F337317D3B Ref B: SJC211051201025 Ref C: 2026-03-24T04:17:41Z' + - 'Ref A: 05363D56F5C446B1BE0CBB13F59952D6 Ref B: SG2AA1040516054 Ref C: 2026-09-10T10:06:17Z' status: code: 200 message: OK @@ -2213,14 +1805,14 @@ interactions: Content-Length: - '0' ParameterSetName: - - --role --assignee --scope + - --ids User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-03-24T04:15:01.2608172Z","updatedOn":"2026-03-24T04:17:42.1358223Z","createdBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","updatedBy":"68abb7a6-9056-4d60-bf87-3b50a45559cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2efddaa5-3f1f-4df3-97df-af3f13818f4c","principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","condition":null,"conditionVersion":null,"createdOn":"2026-09-10T10:02:56.0845843Z","updatedOn":"2026-09-10T10:06:21.9054084Z","createdBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","updatedBy":"4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -2229,7 +1821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:17:41 GMT + - Thu, 10 Sep 2026 10:06:22 GMT expires: - '-1' pragma: @@ -2241,13 +1833,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/879cd1fb-4f68-4c7c-8ac6-3b4b9040a1d8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7289e55d-312d-471c-b8ae-b23aab324c1f x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 1395678D8230481CBBDF39A28687929A Ref B: BY1AA1072319042 Ref C: 2026-03-24T04:17:41Z' + - 'Ref A: 434A8F2A22FF4138800F91B9F08AEB20 Ref B: SG2AA1070301054 Ref C: 2026-09-10T10:06:21Z' status: code: 200 message: OK @@ -2265,21 +1857,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3867' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:18:27 GMT + - Thu, 10 Sep 2026 10:07:09 GMT expires: - '-1' pragma: @@ -2293,7 +1885,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 38E928AEA8AC4BBDBA82AA6F1C16D292 Ref B: SJC211051205051 Ref C: 2026-03-24T04:18:28Z' + - 'Ref A: B2FB3B68FB8146BBAD61FE219329BE91 Ref B: SG2AA1070302023 Ref C: 2026-09-10T10:07:09Z' status: code: 200 message: OK @@ -2311,23 +1903,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:18:28 GMT + - Thu, 10 Sep 2026 10:07:11 GMT expires: - '-1' pragma: @@ -2341,7 +1933,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5FA006DDFF684F2D887CB2B3C9597CED Ref B: BY1AA1072316062 Ref C: 2026-03-24T04:18:28Z' + - 'Ref A: 86D0DC9B62AF458CA7A095A8C08A12F0 Ref B: SG2AA1040517011 Ref C: 2026-09-10T10:07:11Z' status: code: 200 message: OK @@ -2361,22 +1953,22 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"80c7a525-065e-4198-8d08-f9fb692612dc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T04:13:58.1451049+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 - 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:57.2977996+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:17:39.31868+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"8d0fa0cf-469e-4c25-a99e-0c52ca148009","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T10:01:38.4432936+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogbWNyLm1pY3Jvc29mdC5jb20vaGVsbG8td29ybGQKICAgIGRpc2FibGVXb3JraW5nRGlyZWN0b3J5T3ZlcnJpZGU6IHRydWUKICAgIHRpbWVvdXQ6IDM2MDAK","values":[]},"trigger":{"timerTriggers":[{"schedule":"0 + 21 * * *","status":"Enabled","name":"t1"}],"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"sourceRegistry":{"loginMode":"Default"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask","name":"timerTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:36.2394769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:06:16.1965597+00:00"}}' headers: cache-control: - no-cache content-length: - - '1396' + - '1398' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:18:28 GMT + - Thu, 10 Sep 2026 10:07:14 GMT expires: - '-1' pragma: @@ -2388,13 +1980,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6c606bac-f908-471c-9e84-981a600cc20a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/30f3d7c1-b96b-4ba7-8f54-f5620ca1737e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 7725B1FA097244DCBDC2EB7E41F21756 Ref B: SJC211051203019 Ref C: 2026-03-24T04:18:28Z' + - 'Ref A: A0BB3C01F0F741C581D07807A6E7A53C Ref B: SG2AA1070304029 Ref C: 2026-09-10T10:07:13Z' status: code: 200 message: OK @@ -2417,21 +2009,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Queued","lastUpdatedTime":"2026-03-24T04:18:28+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:18:28.8179989+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Queued","lastUpdatedTime":"2026-09-10T10:07:16+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:07:16.18946+00:00"}}' headers: cache-control: - no-cache content-length: - - '518' + - '516' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:18:28 GMT + - Thu, 10 Sep 2026 10:07:16 GMT expires: - '-1' pragma: @@ -2443,13 +2035,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/594007c9-9a5a-4e19-8845-497141638b4e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/be8154e4-2277-4fa5-9d35-017be25472f9 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E6C0B35074304A9EA44BF6457CD318F5 Ref B: BY1AA1072320040 Ref C: 2026-03-24T04:18:28Z' + - 'Ref A: 256C6048E7D24DD3ABA181F2F0BBA2E0 Ref B: SG2AA1040517036 Ref C: 2026-09-10T10:07:16Z' status: code: 200 message: OK @@ -2467,21 +2059,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Running","lastUpdatedTime":"2026-03-24T04:18:29+00:00","runType":"QuickRun","createTime":"2026-03-24T04:18:28.8936556+00:00","startTime":"2026-03-24T04:18:29.1643587+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:18:28.8179989+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Running","lastUpdatedTime":"2026-09-10T10:07:16+00:00","runType":"QuickRun","createTime":"2026-09-10T10:07:16.3677321+00:00","startTime":"2026-09-10T10:07:16.630526+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:07:16.18946+00:00"}}' headers: cache-control: - no-cache content-length: - - '767' + - '764' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:18:28 GMT + - Thu, 10 Sep 2026 10:07:17 GMT expires: - '-1' pragma: @@ -2493,11 +2085,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d1def803-d562-4588-85b9-187029dbcafc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/61504490-f14e-4f68-9ada-3710e926ffd3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6A139BAD55E043EC9B6CAD3FE8D82A62 Ref B: BY1AA1072315034 Ref C: 2026-03-24T04:18:29Z' + - 'Ref A: 49D637C52DBA419A8AAC99B05C706D2A Ref B: SG2AA1040518031 Ref C: 2026-09-10T10:07:17Z' status: code: 200 message: OK @@ -2515,21 +2107,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Succeeded","lastUpdatedTime":"2026-03-24T04:18:38+00:00","runType":"QuickRun","createTime":"2026-03-24T04:18:28.8936556+00:00","startTime":"2026-03-24T04:18:29.1643587+00:00","finishTime":"2026-03-24T04:18:38.1898659+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:18:28.8179989+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf4","status":"Succeeded","lastUpdatedTime":"2026-09-10T10:07:22+00:00","runType":"QuickRun","createTime":"2026-09-10T10:07:16.3677321+00:00","startTime":"2026-09-10T10:07:16.630526+00:00","finishTime":"2026-09-10T10:07:22.4746624+00:00","task":"timerTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"sourceRegistryAuth":"Default","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf4","name":"cf4","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:07:16.18946+00:00"}}' headers: cache-control: - no-cache content-length: - - '818' + - '815' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:18:59 GMT + - Thu, 10 Sep 2026 10:07:49 GMT expires: - '-1' pragma: @@ -2541,11 +2133,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/21a3269b-c93c-4999-9169-247b8eb0140e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b1e4603f-4e1b-4c14-bb1d-6257357f3d62 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A8E907D11F4B4576BA99721BEC4FA122 Ref B: BY1AA1072316062 Ref C: 2026-03-24T04:18:59Z' + - 'Ref A: CBC953ACF7F04D26A77F79BBA397CFBF Ref B: SG2AA1070302052 Ref C: 2026-09-10T10:07:49Z' status: code: 200 message: OK @@ -2563,21 +2155,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"name":"acr06jan2025cp1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"name":"acr06jan2025cp2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"name":"cliregjsoch2h4akj4uy","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"name":"clireg000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728Z"}}]}' headers: cache-control: - no-cache content-length: - - '3375' + - '3867' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:18:59 GMT + - Thu, 10 Sep 2026 10:07:51 GMT expires: - '-1' pragma: @@ -2591,7 +2183,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E4150CCB2F824E2F84464F507F6BC187 Ref B: BY1AA1072318060 Ref C: 2026-03-24T04:18:59Z' + - 'Ref A: 0AAB3FD0C4C145339264CECE3C57B7D5 Ref B: SG2AA1040518054 Ref C: 2026-09-10T10:07:51Z' status: code: 200 message: OK @@ -2609,23 +2201,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1618' + - '1649' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:19:00 GMT + - Thu, 10 Sep 2026 10:07:53 GMT expires: - '-1' pragma: @@ -2639,7 +2231,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2587DFB772404D1283B98875AFC54FF7 Ref B: BY1AA1072317040 Ref C: 2026-03-24T04:19:00Z' + - 'Ref A: E185052EC53A4DD3AD487D2E53733B6A Ref B: SG2AA1040520025 Ref C: 2026-09-10T10:07:53Z' status: code: 200 message: OK @@ -2659,7 +2251,7 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/timerTask?api-version=2025-03-01-preview response: @@ -2671,7 +2263,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:19:00 GMT + - Thu, 10 Sep 2026 10:07:55 GMT expires: - '-1' pragma: @@ -2683,13 +2275,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cb4477e8-f23d-497e-80c0-47dd312759ad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b1d8dd19-7376-45ab-bea0-4fa9dc29ee7d x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: BDDF694ACF2E4C2E83A8188617CB75A2 Ref B: BY1AA1072317060 Ref C: 2026-03-24T04:19:00Z' + - 'Ref A: 8F1A5ECCCADD46C29175B53996A1457E Ref B: SG2AA1040515029 Ref C: 2026-09-10T10:07:55Z' status: code: 200 message: OK @@ -2709,27 +2301,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:13:49.3271952+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:13:49.3271952+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T04:13:49.3271952Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387087+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:13:56.3387522+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrrbac_000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:21.5526728+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:21.5526728+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T10:01:21.5526728Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:28.296271+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:28.2963141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1617' + - '1648' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:19:01 GMT + - Thu, 10 Sep 2026 10:07:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-95c85f26-2738-11f1-96d2-70a8a51b6037?api-version=2026-03-01-preview&t=639099227414433537&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=RAgx3g5TYnpc4c-KXmrEfUL7nTQoXDPuXpE1hmhStvB6x2nOwj0yU22iyL2V2azlTkfgYlvDB8_-mafMq4LCwlhYkXl1r_su7W4qKF0OvR36XL0L_kUi4ofS9nD7S89kTm8NGIbmEFSfDZ2BzUcoGNxgajgnceAxjCJeQI88T9Rb-x4rp2OXdEjS5ac6WwSAnyWGEH5FSeclluSwkXuFMXLVcxXRKz30gLC6XkkIVYJrKRoZoiqB34gXGMmGE-E1FQ3XFmI_d8-ClIytOu3Q0zBVBigmj3OQLxlnd2GOV_HeB9ivnhk0Wy50oOFEWaTGVLN31T56JBKVJrqgz7e58w&h=nb-NBd5Uwc7xZG34BrEliY-zxzJUfRXbwOMhKcnl6NA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-7e5d93b1-acff-11f1-98b5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246316781673218&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=JsMAPf_O6ldtmy58gHtNFyLp26WHAYx2UBbb2u4TJZliRINYSAiWWfl8WtgHOBRUD1VKCOIC9yiOwu9MOj0sYnc18xCbL5qWl54g6DBM--u1JWZJrsdeqT0hIvsxlF8m7do0BqT-JyfsHGB01Wi9nAczyKd1JAtsv9oQazxR_oolqUcnC-Yyml_u6kiI-ZMXlcKHNhjtdNw6o0x_jhgU9ndSeeUlmjdmYvShZfk1oFDMPkWBKn_UzpQ__T08lYjxo614JlOf_ALCLv8-tDh9EDZdvZ6VM9NcRwU9B-k8oxSgs2Thj6WMz-SQ0bfMai5bcyDJ34LTQYqFKCnHuN-H6w&h=kgsCFTqznOldOROjxcoMg6K3G4HQK5A9cYGFIOJU1Ak pragma: - no-cache strict-transport-security: @@ -2739,13 +2331,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6e6ae6cc-2def-403c-832f-c801775fff6d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/04cba4e6-c56a-43e6-8189-6cc217a38204 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 520033A9F42740F982F5F52F291FAAC6 Ref B: BY1AA1072316054 Ref C: 2026-03-24T04:19:01Z' + - 'Ref A: A726A375C82D4AC7B6EEDA84155B91B5 Ref B: SG2AA1070305060 Ref C: 2026-09-10T10:07:57Z' status: code: 202 message: Accepted @@ -2763,9 +2355,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-95c85f26-2738-11f1-96d2-70a8a51b6037?api-version=2026-03-01-preview&t=639099227414433537&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=RAgx3g5TYnpc4c-KXmrEfUL7nTQoXDPuXpE1hmhStvB6x2nOwj0yU22iyL2V2azlTkfgYlvDB8_-mafMq4LCwlhYkXl1r_su7W4qKF0OvR36XL0L_kUi4ofS9nD7S89kTm8NGIbmEFSfDZ2BzUcoGNxgajgnceAxjCJeQI88T9Rb-x4rp2OXdEjS5ac6WwSAnyWGEH5FSeclluSwkXuFMXLVcxXRKz30gLC6XkkIVYJrKRoZoiqB34gXGMmGE-E1FQ3XFmI_d8-ClIytOu3Q0zBVBigmj3OQLxlnd2GOV_HeB9ivnhk0Wy50oOFEWaTGVLN31T56JBKVJrqgz7e58w&h=nb-NBd5Uwc7xZG34BrEliY-zxzJUfRXbwOMhKcnl6NA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-7e5d93b1-acff-11f1-98b5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246316781673218&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=JsMAPf_O6ldtmy58gHtNFyLp26WHAYx2UBbb2u4TJZliRINYSAiWWfl8WtgHOBRUD1VKCOIC9yiOwu9MOj0sYnc18xCbL5qWl54g6DBM--u1JWZJrsdeqT0hIvsxlF8m7do0BqT-JyfsHGB01Wi9nAczyKd1JAtsv9oQazxR_oolqUcnC-Yyml_u6kiI-ZMXlcKHNhjtdNw6o0x_jhgU9ndSeeUlmjdmYvShZfk1oFDMPkWBKn_UzpQ__T08lYjxo614JlOf_ALCLv8-tDh9EDZdvZ6VM9NcRwU9B-k8oxSgs2Thj6WMz-SQ0bfMai5bcyDJ34LTQYqFKCnHuN-H6w&h=kgsCFTqznOldOROjxcoMg6K3G4HQK5A9cYGFIOJU1Ak response: body: string: '' @@ -2775,11 +2367,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:19:01 GMT + - Thu, 10 Sep 2026 10:08:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-95c85f26-2738-11f1-96d2-70a8a51b6037?api-version=2026-03-01-preview&t=639099227418949306&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=namuNmCpmngHMkBODZsU0Xgbm_vchU677eClNWTQoQC9gHt1NDBPAePasHLzvxJmyzxoERSUFEhcz4QQ9YApRcVJu0eFQUUZq5gm_5xI7Lwh5Tdba52lrYL2EOeZmpzcngTREvbILFkFt8eUtAc1A_dvcWrAsEWlphvJBb4vhDueenz4VnTyPi3u55oLOAkrH7V_xKbpjI8-eRIAS7Q-pO59YWAgXQ4StfCCZ74fRduM6keK2Sc6pr-4rBPRfwRvSNnQfzbkqRT2doxIbD6JyB7xY8VRNrhLHZP1SkY2RV49DoRl0pgKwBzeiqIX_8wr2NzaKBZilsY5RtJc_M_fGw&h=_l7dsrxH2TqQeamRZEs3pGospShxc4pr1Sj8Rl6dF7o + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-7e5d93b1-acff-11f1-98b5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246316802859414&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=Ny2wvjOidQQqQ5xgX53L1nVGRx28GLMTIK8x3ijytirXIWGUwLFn20-NJ-ePOELIrZRzwOn9y1RorQFKkHgA7O6SAh0k4YngnQE6U8j65LDRVrxym9xyYokaZLUzDkdtOm4XYgb3zKF-hMrrWsLhaO913J0N5YNdqdz_cdchTEP5i-XfFD8TsuL2jhj_eK-0A3LigY3j1C3b6d4EFEOH7kk2QD9SZz6EreDR9_zkeiyvhRjd85BSg6-17n4Yk7UYdMyj2cQYWK7eSE3fPf9lBbRG7O4PQ4lzR_IJfbNLJ4KaEA5fgWJbLHNOJg24eJzAuCUO0n1ofn26uLMyMEyY3Q&h=_akWDL9IvIrpx1Y0YzTzgZyR2whnO_vnJt7OU2kLbLM pragma: - no-cache strict-transport-security: @@ -2789,11 +2381,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/e332573c-174a-4393-b39c-28ea8477577f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/6b2ff09f-a4f0-4ca7-ac71-87a87278b942 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6F3346C1D2DB4765A5003C8797F079F5 Ref B: BY1AA1072316036 Ref C: 2026-03-24T04:19:01Z' + - 'Ref A: 9DE800397E8146ED868DC8A0DE51BECA Ref B: SG2AA1040520025 Ref C: 2026-09-10T10:07:59Z' status: code: 202 message: Accepted @@ -2811,9 +2403,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-95c85f26-2738-11f1-96d2-70a8a51b6037?api-version=2026-03-01-preview&t=639099227418949306&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=namuNmCpmngHMkBODZsU0Xgbm_vchU677eClNWTQoQC9gHt1NDBPAePasHLzvxJmyzxoERSUFEhcz4QQ9YApRcVJu0eFQUUZq5gm_5xI7Lwh5Tdba52lrYL2EOeZmpzcngTREvbILFkFt8eUtAc1A_dvcWrAsEWlphvJBb4vhDueenz4VnTyPi3u55oLOAkrH7V_xKbpjI8-eRIAS7Q-pO59YWAgXQ4StfCCZ74fRduM6keK2Sc6pr-4rBPRfwRvSNnQfzbkqRT2doxIbD6JyB7xY8VRNrhLHZP1SkY2RV49DoRl0pgKwBzeiqIX_8wr2NzaKBZilsY5RtJc_M_fGw&h=_l7dsrxH2TqQeamRZEs3pGospShxc4pr1Sj8Rl6dF7o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-7e5d93b1-acff-11f1-98b5-3cefa50a58cc?api-version=2026-09-01-preview&t=639246316802859414&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=Ny2wvjOidQQqQ5xgX53L1nVGRx28GLMTIK8x3ijytirXIWGUwLFn20-NJ-ePOELIrZRzwOn9y1RorQFKkHgA7O6SAh0k4YngnQE6U8j65LDRVrxym9xyYokaZLUzDkdtOm4XYgb3zKF-hMrrWsLhaO913J0N5YNdqdz_cdchTEP5i-XfFD8TsuL2jhj_eK-0A3LigY3j1C3b6d4EFEOH7kk2QD9SZz6EreDR9_zkeiyvhRjd85BSg6-17n4Yk7UYdMyj2cQYWK7eSE3fPf9lBbRG7O4PQ4lzR_IJfbNLJ4KaEA5fgWJbLHNOJg24eJzAuCUO0n1ofn26uLMyMEyY3Q&h=_akWDL9IvIrpx1Y0YzTzgZyR2whnO_vnJt7OU2kLbLM response: body: string: '' @@ -2823,7 +2415,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 04:19:11 GMT + - Thu, 10 Sep 2026 10:08:12 GMT expires: - '-1' pragma: @@ -2835,11 +2427,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/2394df45-686a-491f-abac-30ac8c6e089b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/096d0231-e395-4112-85da-2515fdfc92d3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E371FD0074CF46B5AED43F22FA670343 Ref B: BY1AA1072318029 Ref C: 2026-03-24T04:19:12Z' + - 'Ref A: 2450D268F9C047459257E3FB07E0A9FF Ref B: SG2AA1070304042 Ref C: 2026-09-10T10:08:11Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_task.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_task.yaml index e8651f73fcd..c9d34a3f73a 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_task.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_task.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:51 GMT + - Thu, 10 Sep 2026 06:54:58 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8058c710-b06d-4caf-8f59-b3695e0d3835 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/3b2e2331-e59d-4d6e-b30d-0ca298aa43fb x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 0CE3F7528C20487292F3E8DC6D64FD8F Ref B: BY1AA1072316040 Ref C: 2026-03-24T03:21:43Z' + - 'Ref A: F4A087FDD9504CB59CC39C480A6FF821 Ref B: SYD281080708052 Ref C: 2026-09-10T06:54:49Z' status: code: 200 message: OK @@ -71,21 +71,21 @@ interactions: - -n -r --context --image -f --commit-trigger-enabled --pull-request-trigger-enabled --assign-identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:50 GMT + - Thu, 10 Sep 2026 06:55:00 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 765E5161F1F24C0999C7FC87681603F4 Ref B: SJC211051204049 Ref C: 2026-03-24T03:21:51Z' + - 'Ref A: E8AB37B2C81A4FB5A0DB3E82A4044AD4 Ref B: SYD281080708054 Ref C: 2026-09-10T06:54:59Z' status: code: 200 message: OK @@ -118,23 +118,23 @@ interactions: - -n -r --context --image -f --commit-trigger-enabled --pull-request-trigger-enabled --assign-identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:51 GMT + - Thu, 10 Sep 2026 06:55:00 GMT expires: - '-1' pragma: @@ -148,19 +148,19 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 345A71BBA97A4B00A53F247DF403A04B Ref B: BY1AA1072320062 Ref C: 2026-03-24T03:21:51Z' + - 'Ref A: F6E65C8C1625456C93BC5944EE9BB4CE Ref B: SYD281080706042 Ref C: 2026-09-10T06:55:00Z' status: code: 200 message: OK - request: body: '{"identity": {"type": "SystemAssigned"}, "location": "westus", "properties": - {"trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", "status": + {"step": {"imageNames": ["testtask:v1"], "isPushEnabled": true, "noCache": false, + "dockerFilePath": "Dockerfile", "arguments": [], "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", + "type": "Docker"}, "timeout": 3600, "isSystemTask": false, "status": "Enabled", + "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": - "Default"}}, "credentials": {}, "step": {"imageNames": ["testtask:v1"], "isPushEnabled": - true, "noCache": false, "dockerFilePath": "Dockerfile", "arguments": [], "contextPath": - "https://github.com/Azure-Samples/acr-build-helloworld-node", "type": "Docker"}, - "agentConfiguration": {"cpu": 2}, "platform": {"os": "linux", "architecture": - "amd64"}, "timeout": 3600, "status": "Enabled", "isSystemTask": false}}' + "Default"}}, "platform": {"os": "linux", "architecture": "amd64"}, "agentConfiguration": + {"cpu": 2}, "credentials": {}}}' headers: Accept: - application/json @@ -178,12 +178,12 @@ interactions: - -n -r --context --image -f --commit-trigger-enabled --pull-request-trigger-enabled --assign-identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:52.8502562+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:03.6492556+00:00"}}' headers: cache-control: - no-cache @@ -192,7 +192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:53 GMT + - Thu, 10 Sep 2026 06:55:05 GMT expires: - '-1' pragma: @@ -204,13 +204,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/d21b1952-0447-4c96-8f2e-e8e57c005c29 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e889d9dd-74ba-4412-a1f2-48125d98dbdf x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 494D0D79853D4FF4B4670D5A0E59E985 Ref B: BY1AA1072318062 Ref C: 2026-03-24T03:21:52Z' + - 'Ref A: 691D1A2A0F4D46AC911C3FD026A333B9 Ref B: SYD281080711025 Ref C: 2026-09-10T06:55:01Z' status: code: 200 message: OK @@ -228,21 +228,21 @@ interactions: ParameterSetName: - -n -r --cmd -c User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:53 GMT + - Thu, 10 Sep 2026 06:55:06 GMT expires: - '-1' pragma: @@ -256,7 +256,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2CFE6CA57A44B04A1FA2D49F54A4B05 Ref B: BY1AA1072318060 Ref C: 2026-03-24T03:21:54Z' + - 'Ref A: 9AF830C2703C4CF2857A34DE9EB750A9 Ref B: SYD281080706029 Ref C: 2026-09-10T06:55:06Z' status: code: 200 message: OK @@ -274,23 +274,23 @@ interactions: ParameterSetName: - -n -r --cmd -c User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:54 GMT + - Thu, 10 Sep 2026 06:55:08 GMT expires: - '-1' pragma: @@ -304,17 +304,17 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4550D7A680DE4C1EB0216642B9C111D6 Ref B: BY1AA1072320060 Ref C: 2026-03-24T03:21:54Z' + - 'Ref A: 12B9BBB5E66B4C4B9E5357943A55357B Ref B: SYD281080710062 Ref C: 2026-09-10T06:55:07Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"trigger": {"baseImageTrigger": {"baseImageTriggerType": + body: '{"location": "westus", "properties": {"step": {"encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=", + "values": [], "type": "EncodedTask"}, "timeout": 3600, "isSystemTask": false, + "status": "Enabled", "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": - "Default"}}, "credentials": {}, "step": {"encodedTaskContent": "dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=", - "values": [], "type": "EncodedTask"}, "agentConfiguration": {"cpu": 2}, "platform": - {"os": "linux", "architecture": "amd64"}, "timeout": 3600, "status": "Enabled", - "isSystemTask": false}}' + "Default"}}, "platform": {"os": "linux", "architecture": "amd64"}, "agentConfiguration": + {"cpu": 2}, "credentials": {}}}' headers: Accept: - application/json @@ -331,12 +331,12 @@ interactions: ParameterSetName: - -n -r --cmd -c User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:55.1761505+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:55.0701746+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:55.0701746+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:09.4001658+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.3449723+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.3449723+00:00"}}' headers: cache-control: - no-cache @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:55 GMT + - Thu, 10 Sep 2026 06:55:08 GMT expires: - '-1' pragma: @@ -357,13 +357,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9b216cf3-fa43-42c9-b1b2-b3436bf409b7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/840549f6-f272-4344-9547-4212d57fb965 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D3295986CB0542D5974A5AE5CBE0C81C Ref B: BY1AA1072319042 Ref C: 2026-03-24T03:21:54Z' + - 'Ref A: D75E1CFB5FA1423887688458825999AE Ref B: SYD281080707025 Ref C: 2026-09-10T06:55:09Z' status: code: 200 message: OK @@ -381,21 +381,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:54 GMT + - Thu, 10 Sep 2026 06:55:09 GMT expires: - '-1' pragma: @@ -409,7 +409,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5BE2E9760B1F4491AD8A20D85EF22D18 Ref B: BY1AA1072316025 Ref C: 2026-03-24T03:21:55Z' + - 'Ref A: D5471B17FA2B40A0B77C1679C8A713EB Ref B: SYD281080707036 Ref C: 2026-09-10T06:55:10Z' status: code: 200 message: OK @@ -427,23 +427,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:54 GMT + - Thu, 10 Sep 2026 06:55:11 GMT expires: - '-1' pragma: @@ -457,7 +457,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F77D5BE9CFB44A60818FDFA768BB5049 Ref B: BY1AA1072320052 Ref C: 2026-03-24T03:21:55Z' + - 'Ref A: B5860FACD97943638BAD741E8F51F9A0 Ref B: SYD281080707023 Ref C: 2026-09-10T06:55:11Z' status: code: 200 message: OK @@ -475,12 +475,12 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:55.1761505+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:55.0701746+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:55.0701746+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:09.4001658+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.3449723+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.3449723+00:00"}}' headers: cache-control: - no-cache @@ -489,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:55 GMT + - Thu, 10 Sep 2026 06:55:11 GMT expires: - '-1' pragma: @@ -503,7 +503,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5E8D50A98E55492EA2A385773747758A Ref B: SJC211051201035 Ref C: 2026-03-24T03:21:55Z' + - 'Ref A: 98486DC7D10C474AA44B95A2B46E9C78 Ref B: SYD281080712062 Ref C: 2026-09-10T06:55:11Z' status: code: 200 message: OK @@ -521,21 +521,21 @@ interactions: ParameterSetName: - -n -r -f -c User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:55 GMT + - Thu, 10 Sep 2026 06:55:13 GMT expires: - '-1' pragma: @@ -549,7 +549,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 11730166D2EF46BB828AC1825C1895BA Ref B: BY1AA1072315036 Ref C: 2026-03-24T03:21:55Z' + - 'Ref A: 5EB183028FCC48C49F73E53A890D4F3B Ref B: SYD281080709060 Ref C: 2026-09-10T06:55:12Z' status: code: 200 message: OK @@ -567,23 +567,23 @@ interactions: ParameterSetName: - -n -r -f -c User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:55 GMT + - Thu, 10 Sep 2026 06:55:13 GMT expires: - '-1' pragma: @@ -597,17 +597,17 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FBEF1713A4674979BF1ACFCF866B4023 Ref B: BY1AA1072317062 Ref C: 2026-03-24T03:21:56Z' + - 'Ref A: 6245055CF95048AB84E216DA1163355E Ref B: SYD281080708042 Ref C: 2026-09-10T06:55:14Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"trigger": {"baseImageTrigger": {"baseImageTriggerType": + body: '{"location": "westus", "properties": {"step": {"encodedTaskContent": "c3RlcHM6CiAgLSBidWlsZDo=", + "values": [], "type": "EncodedTask"}, "timeout": 3600, "isSystemTask": false, + "status": "Enabled", "trigger": {"baseImageTrigger": {"baseImageTriggerType": "Runtime", "status": "Enabled", "name": "defaultBaseimageTriggerName", "updateTriggerPayloadType": - "Default"}}, "credentials": {}, "step": {"encodedTaskContent": "c3RlcHM6CiAgLSBidWlsZDo=", - "values": [], "type": "EncodedTask"}, "agentConfiguration": {"cpu": 2}, "platform": - {"os": "linux", "architecture": "amd64"}, "timeout": 3600, "status": "Enabled", - "isSystemTask": false}}' + "Default"}}, "platform": {"os": "linux", "architecture": "amd64"}, "agentConfiguration": + {"cpu": 2}, "credentials": {}}}' headers: Accept: - application/json @@ -624,12 +624,12 @@ interactions: ParameterSetName: - -n -r -f -c User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:56.7783216+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"c3RlcHM6CiAgLSBidWlsZDo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile","name":"contextlessTaskfile","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:56.7234544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:56.7234544+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:15.2540302+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"c3RlcHM6CiAgLSBidWlsZDo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile","name":"contextlessTaskfile","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:15.1631327+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:15.1631327+00:00"}}' headers: cache-control: - no-cache @@ -638,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:56 GMT + - Thu, 10 Sep 2026 06:55:14 GMT expires: - '-1' pragma: @@ -650,13 +650,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4cc67f64-2c33-4f15-9c26-13c09464a387 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/74370c2d-c78c-43e7-aa8f-ce2fdcb66a86 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 70D49E39B8544EDFA2E7D5424718556B Ref B: BY1AA1072320060 Ref C: 2026-03-24T03:21:56Z' + - 'Ref A: 2563A57994004207BF14823BE3E58F0F Ref B: SYD281080706025 Ref C: 2026-09-10T06:55:14Z' status: code: 200 message: OK @@ -674,21 +674,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:56 GMT + - Thu, 10 Sep 2026 06:55:15 GMT expires: - '-1' pragma: @@ -702,7 +702,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 60F7F593751345AAA2B1A77A2556D8BC Ref B: BY1AA1072317023 Ref C: 2026-03-24T03:21:57Z' + - 'Ref A: 8A951854F2E7464B9138C669AB1BFCCB Ref B: SYD281080706025 Ref C: 2026-09-10T06:55:15Z' status: code: 200 message: OK @@ -720,23 +720,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:57 GMT + - Thu, 10 Sep 2026 06:55:17 GMT expires: - '-1' pragma: @@ -750,7 +750,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C4D452CAD3E24CA1AFE0F4E1C8E85269 Ref B: SJC211051205049 Ref C: 2026-03-24T03:21:57Z' + - 'Ref A: 33C05AE73A07489CA4B587A558E895A9 Ref B: SYD281080708062 Ref C: 2026-09-10T06:55:17Z' status: code: 200 message: OK @@ -768,12 +768,12 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:56.7783216+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"c3RlcHM6CiAgLSBidWlsZDo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile","name":"contextlessTaskfile","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:56.7234544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:56.7234544+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:15.2540302+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"c3RlcHM6CiAgLSBidWlsZDo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile","name":"contextlessTaskfile","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:15.1631327+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:15.1631327+00:00"}}' headers: cache-control: - no-cache @@ -782,7 +782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:57 GMT + - Thu, 10 Sep 2026 06:55:17 GMT expires: - '-1' pragma: @@ -796,7 +796,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C36E27634A3C4461BDADFFEC82984CA5 Ref B: SJC211051203029 Ref C: 2026-03-24T03:21:57Z' + - 'Ref A: DB231DB26BFB4D50B44E249AFD46FE24 Ref B: SYD281080712031 Ref C: 2026-09-10T06:55:18Z' status: code: 200 message: OK @@ -814,21 +814,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:58 GMT + - Thu, 10 Sep 2026 06:55:18 GMT expires: - '-1' pragma: @@ -842,7 +842,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23AC0CA10BFF4FE8940B48828195D740 Ref B: SJC211051203027 Ref C: 2026-03-24T03:21:58Z' + - 'Ref A: EC0A398CC9814FC49FD7C3430BC2E9AD Ref B: SYD281080712040 Ref C: 2026-09-10T06:55:18Z' status: code: 200 message: OK @@ -860,23 +860,23 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:58 GMT + - Thu, 10 Sep 2026 06:55:19 GMT expires: - '-1' pragma: @@ -890,7 +890,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 90B21ED3E8024C5AB140C055F5E583FF Ref B: BY1AA1072316052 Ref C: 2026-03-24T03:21:59Z' + - 'Ref A: E0B9857524434F5793CE4173ABFCAC50 Ref B: SYD281080711052 Ref C: 2026-09-10T06:55:19Z' status: code: 200 message: OK @@ -908,12 +908,12 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks?api-version=2025-03-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:52.8502562+00:00"}},{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:55.1761505+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:55.0701746+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:55.0701746+00:00"}},{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:56.7783216+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"c3RlcHM6CiAgLSBidWlsZDo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile","name":"contextlessTaskfile","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:56.7234544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:56.7234544+00:00"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:03.6492556+00:00"}},{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:09.4001658+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.3449723+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.3449723+00:00"}},{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:15.2540302+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"c3RlcHM6CiAgLSBidWlsZDo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskfile","name":"contextlessTaskfile","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:15.1631327+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:15.1631327+00:00"}}]}' headers: cache-control: - no-cache @@ -922,7 +922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:59 GMT + - Thu, 10 Sep 2026 06:55:20 GMT expires: - '-1' pragma: @@ -934,11 +934,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - eebac5ac-810a-463d-b522-456fd8185faa + - 7f91681d-1028-4e52-89db-b1cba50da57a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1B9C15B27C014244AFC8E7B7C725DD9A Ref B: SJC211051201039 Ref C: 2026-03-24T03:21:59Z' + - 'Ref A: 102CA5ACD2934B4F986140135DC44E63 Ref B: SYD281080712034 Ref C: 2026-09-10T06:55:20Z' status: code: 200 message: OK @@ -956,21 +956,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:59 GMT + - Thu, 10 Sep 2026 06:55:21 GMT expires: - '-1' pragma: @@ -984,7 +984,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CDA7A05ADF29422A9375AA4598D1E101 Ref B: BY1AA1072320054 Ref C: 2026-03-24T03:21:59Z' + - 'Ref A: B9A6FD809811498CB1EC27FA10E4A514 Ref B: SYD281080707060 Ref C: 2026-09-10T06:55:21Z' status: code: 200 message: OK @@ -1002,23 +1002,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:59 GMT + - Thu, 10 Sep 2026 06:55:22 GMT expires: - '-1' pragma: @@ -1032,7 +1032,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B7F694704596430EA51676E8E9293FEC Ref B: BY1AA1072320023 Ref C: 2026-03-24T03:21:59Z' + - 'Ref A: FC713529EBC341A6849A96821FA03254 Ref B: SYD281080705040 Ref C: 2026-09-10T06:55:22Z' status: code: 200 message: OK @@ -1052,12 +1052,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:55.1761505+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:55.0701746+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:55.0701746+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:09.4001658+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"EncodedTask","encodedTaskContent":"dmVyc2lvbjogdjEuMS4wCnN0ZXBzOiAKICAtIGNtZDogYmFzaAogICAgZGlzYWJsZVdvcmtpbmdEaXJlY3RvcnlPdmVycmlkZTogdHJ1ZQogICAgdGltZW91dDogMzYwMAo=","values":[]},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/contextlessTaskCmd","name":"contextlessTaskCmd","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:09.3449723+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:09.3449723+00:00"}}' headers: cache-control: - no-cache @@ -1066,7 +1066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:21:59 GMT + - Thu, 10 Sep 2026 06:55:22 GMT expires: - '-1' pragma: @@ -1078,13 +1078,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/10683a4f-ea76-482e-b898-317354f8fe7e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/66da0b7d-b66a-4990-b50e-d0f67a4b6f1e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 54C7B28F121D40F6AC327CF56116D6FF Ref B: SJC211051203031 Ref C: 2026-03-24T03:22:00Z' + - 'Ref A: 3BF557691FAE4C419A225DD4301F4839 Ref B: SYD281080709040 Ref C: 2026-09-10T06:55:23Z' status: code: 200 message: OK @@ -1107,12 +1107,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T03:22:00+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:22:00.2897854+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-09-10T06:55:24+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:24.1939554+00:00"}}' headers: cache-control: - no-cache @@ -1121,7 +1121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:00 GMT + - Thu, 10 Sep 2026 06:55:23 GMT expires: - '-1' pragma: @@ -1133,13 +1133,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ffd8f7ae-944b-48d9-9822-7878e50735c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/68d78ef9-79d6-4485-9e5f-26b7de0b1f5b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F2F1AC37CD8C422AA43731AEBC3D1906 Ref B: BY1AA1072315062 Ref C: 2026-03-24T03:22:00Z' + - 'Ref A: 2F177077815C4B6F81BCB15A99083A87 Ref B: SYD281080712042 Ref C: 2026-09-10T06:55:24Z' status: code: 200 message: OK @@ -1157,21 +1157,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Queued","lastUpdatedTime":"2026-03-24T03:22:00+00:00","runType":"QuickRun","createTime":"2026-03-24T03:22:00.3736416+00:00","task":"contextlessTaskCmd","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:22:00.2897854+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Running","lastUpdatedTime":"2026-09-10T06:55:24+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:24.3352471+00:00","startTime":"2026-09-10T06:55:24.685231+00:00","task":"contextlessTaskCmd","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:24.1939554+00:00"}}' headers: cache-control: - no-cache content-length: - - '689' + - '737' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:00 GMT + - Thu, 10 Sep 2026 06:55:24 GMT expires: - '-1' pragma: @@ -1183,11 +1183,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/23e43b53-1017-479a-9862-4d29c109aea0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/be4c7d18-5233-4a0f-bcdf-ee89f160d894 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0C7DFB6555DB41C1942CB56D0AA24256 Ref B: BY1AA1072320062 Ref C: 2026-03-24T03:22:00Z' + - 'Ref A: 0DCA5D18717649B0BE6C46BF36D49A30 Ref B: SYD281080711052 Ref C: 2026-09-10T06:55:24Z' status: code: 200 message: OK @@ -1205,21 +1205,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Succeeded","lastUpdatedTime":"2026-03-24T03:22:05+00:00","runType":"QuickRun","createTime":"2026-03-24T03:22:00.3736416+00:00","startTime":"2026-03-24T03:22:00.7122305+00:00","finishTime":"2026-03-24T03:22:05.7136676+00:00","task":"contextlessTaskCmd","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:22:00.2897854+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:55:29+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:24.3352471+00:00","startTime":"2026-09-10T06:55:24.685231+00:00","finishTime":"2026-09-10T06:55:29.7957451+00:00","task":"contextlessTaskCmd","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:24.1939554+00:00"}}' headers: cache-control: - no-cache content-length: - - '789' + - '788' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:30 GMT + - Thu, 10 Sep 2026 06:55:55 GMT expires: - '-1' pragma: @@ -1231,11 +1231,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d6529be1-d48d-4f39-baff-70cf58539133 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/53dd6cb2-a1da-42ad-b0d6-6fa062eda49e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5B6774BC65D34900A42BC84D3648B9DE Ref B: BY1AA1072320031 Ref C: 2026-03-24T03:22:30Z' + - 'Ref A: 56AF567109264DC28E742C24F92AB58C Ref B: SYD281080705060 Ref C: 2026-09-10T06:55:55Z' status: code: 200 message: OK @@ -1253,21 +1253,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:30 GMT + - Thu, 10 Sep 2026 06:55:56 GMT expires: - '-1' pragma: @@ -1281,7 +1281,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DD3B4C6AFC4D4D09B40949F46056ED8C Ref B: BY1AA1072318040 Ref C: 2026-03-24T03:22:31Z' + - 'Ref A: 553829626FEE424FA5A9E50EF8556B2D Ref B: SYD281080709036 Ref C: 2026-09-10T06:55:56Z' status: code: 200 message: OK @@ -1299,23 +1299,23 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:31 GMT + - Thu, 10 Sep 2026 06:55:57 GMT expires: - '-1' pragma: @@ -1329,7 +1329,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E30CAE7DAD0B444BAF26BC5B10696E22 Ref B: SJC211051201009 Ref C: 2026-03-24T03:22:31Z' + - 'Ref A: A35C32F8BE044DF89A45E7AAA60745F5 Ref B: SYD281080707052 Ref C: 2026-09-10T06:55:57Z' status: code: 200 message: OK @@ -1349,12 +1349,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:52.8502562+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:03.6492556+00:00"}}' headers: cache-control: - no-cache @@ -1363,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:31 GMT + - Thu, 10 Sep 2026 06:55:57 GMT expires: - '-1' pragma: @@ -1375,13 +1375,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c3fda543-4d2d-4a99-9994-1599ee576847 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/669c5159-253c-4f19-a89a-2bc7983e0f4e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 10427BC5840F488F81517A1484BDAA2B Ref B: BY1AA1072315052 Ref C: 2026-03-24T03:22:31Z' + - 'Ref A: E272C2DD38534BCD8641BA60B99C94DD Ref B: SYD281080708040 Ref C: 2026-09-10T06:55:57Z' status: code: 200 message: OK @@ -1404,12 +1404,12 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scheduleRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T03:22:32+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:22:31.9896617+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-09-10T06:55:58+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:58.6945867+00:00"}}' headers: cache-control: - no-cache @@ -1418,7 +1418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:31 GMT + - Thu, 10 Sep 2026 06:55:58 GMT expires: - '-1' pragma: @@ -1430,13 +1430,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9855506f-0fca-4301-810a-ee36915cae59 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/466eae21-21b8-4fbd-ad1d-f4124fc367dc x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 37A8F03F53C543BE82091B70387C66D0 Ref B: SJC211051203045 Ref C: 2026-03-24T03:22:31Z' + - 'Ref A: 29FC00F0FB6E4606885C110474C6C478 Ref B: SYD281080705025 Ref C: 2026-09-10T06:55:58Z' status: code: 200 message: OK @@ -1454,21 +1454,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Queued","lastUpdatedTime":"2026-03-24T03:22:32+00:00","runType":"QuickRun","createTime":"2026-03-24T03:22:32.0819094+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:22:31.9896617+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Running","lastUpdatedTime":"2026-09-10T06:55:59+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:58.7720783+00:00","startTime":"2026-09-10T06:55:59.0144918+00:00","task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:58.6945867+00:00"}}' headers: cache-control: - no-cache content-length: - - '679' + - '728' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:22:31 GMT + - Thu, 10 Sep 2026 06:55:58 GMT expires: - '-1' pragma: @@ -1480,11 +1480,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b5f713ff-e10d-44c8-92ca-0417fc03840b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1ff8dcdb-b3d0-4879-b136-cf001f4c4a5c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D53CCAEC76D7456D89E8EC26D1D851CB Ref B: SJC211051205053 Ref C: 2026-03-24T03:22:32Z' + - 'Ref A: 9EF43B24649D447CA52A3815FB324989 Ref B: SYD281080708036 Ref C: 2026-09-10T06:55:59Z' status: code: 200 message: OK @@ -1502,21 +1502,21 @@ interactions: ParameterSetName: - -n -r --no-logs User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-03-24T03:22:53+00:00","runType":"QuickRun","createTime":"2026-03-24T03:22:32.0819094+00:00","startTime":"2026-03-24T03:22:32.4929424+00:00","finishTime":"2026-03-24T03:22:53.5811819+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:af1e9c09d3d2c025bac13c2d331071ef0d85ca8abfe24f8a1ca30e0861f41b36"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:22:31.9896617+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:56:19+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:58.7720783+00:00","startTime":"2026-09-10T06:55:59.0144918+00:00","finishTime":"2026-09-10T06:56:19.825707+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:7bd37307d0dd1a87425f8fe775ce27e749299155e668ba508cf9576879aae5de"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:58.6945867+00:00"}}' headers: cache-control: - no-cache content-length: - - '953' + - '952' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:02 GMT + - Thu, 10 Sep 2026 06:56:29 GMT expires: - '-1' pragma: @@ -1528,11 +1528,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d65e2b0e-92b7-432f-a096-724eec4837df + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c52f0e3c-348e-4be8-a3be-103039da8fb4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73B499CF34F0413A84716E6E5644AB98 Ref B: BY1AA1072320031 Ref C: 2026-03-24T03:23:02Z' + - 'Ref A: A0DD97325D9E4CC5A9CD9F02322A3D29 Ref B: SYD281080709023 Ref C: 2026-09-10T06:56:30Z' status: code: 200 message: OK @@ -1550,21 +1550,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:03 GMT + - Thu, 10 Sep 2026 06:56:31 GMT expires: - '-1' pragma: @@ -1578,7 +1578,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D74509DF52074A2292E2E4062E8007E2 Ref B: BY1AA1072315023 Ref C: 2026-03-24T03:23:03Z' + - 'Ref A: 7FB03F92AA5B489A8663846442A9E3B8 Ref B: SYD281080705040 Ref C: 2026-09-10T06:56:31Z' status: code: 200 message: OK @@ -1596,23 +1596,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:02 GMT + - Thu, 10 Sep 2026 06:56:32 GMT expires: - '-1' pragma: @@ -1626,7 +1626,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B3CA23A0B05D42AA89BA0C51D09B0AFE Ref B: SJC211051203009 Ref C: 2026-03-24T03:23:03Z' + - 'Ref A: 7CBEA2790B674F1388E06161E275651B Ref B: SYD281080705029 Ref C: 2026-09-10T06:56:32Z' status: code: 200 message: OK @@ -1644,21 +1644,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs?api-version=2025-03-01-preview&$filter=TaskName%20eq%20%27testTask%27&$top=15 response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-03-24T03:22:53+00:00","runType":"QuickRun","createTime":"2026-03-24T03:22:32.0819094+00:00","startTime":"2026-03-24T03:22:32.4929424+00:00","finishTime":"2026-03-24T03:22:53.5811819+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:af1e9c09d3d2c025bac13c2d331071ef0d85ca8abfe24f8a1ca30e0861f41b36"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:22:31.9896617+00:00"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:56:19+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:58.7720783+00:00","startTime":"2026-09-10T06:55:59.0144918+00:00","finishTime":"2026-09-10T06:56:19.825707+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:7bd37307d0dd1a87425f8fe775ce27e749299155e668ba508cf9576879aae5de"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:58.6945867+00:00"}}]}' headers: cache-control: - no-cache content-length: - - '965' + - '964' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:03 GMT + - Thu, 10 Sep 2026 06:56:32 GMT expires: - '-1' pragma: @@ -1670,11 +1670,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/41b251dd-44bd-4956-9000-5a5d83d03109 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f4eeef85-90ce-4776-8a0a-771819a0e7c9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F83EED22900A460089E96D929A136D42 Ref B: SJC211051201035 Ref C: 2026-03-24T03:23:03Z' + - 'Ref A: 32A2B2E139504538A2A55255C75224D9 Ref B: SYD281080709062 Ref C: 2026-09-10T06:56:32Z' status: code: 200 message: OK @@ -1692,21 +1692,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:02 GMT + - Thu, 10 Sep 2026 06:56:33 GMT expires: - '-1' pragma: @@ -1720,7 +1720,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CA6DACE184324E74A8C5B3E6D137F38E Ref B: BY1AA1072315060 Ref C: 2026-03-24T03:23:03Z' + - 'Ref A: 4CDF97E0E0D940F9BBA657162923668D Ref B: SYD281080705023 Ref C: 2026-09-10T06:56:33Z' status: code: 200 message: OK @@ -1738,23 +1738,23 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:04 GMT + - Thu, 10 Sep 2026 06:56:34 GMT expires: - '-1' pragma: @@ -1768,7 +1768,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2A567796D4B74C119277C6FE7D24C927 Ref B: BY1AA1072319036 Ref C: 2026-03-24T03:23:03Z' + - 'Ref A: 25AB593E42D14A82B99FFAE09A14D3A7 Ref B: SYD281080705060 Ref C: 2026-09-10T06:56:34Z' status: code: 200 message: OK @@ -1786,12 +1786,12 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:52.8502562+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:03.6492556+00:00"}}' headers: cache-control: - no-cache @@ -1800,7 +1800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:03 GMT + - Thu, 10 Sep 2026 06:56:35 GMT expires: - '-1' pragma: @@ -1814,7 +1814,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AF222168DB764DA090D9D85C9BD8F0BB Ref B: BY1AA1072318023 Ref C: 2026-03-24T03:23:04Z' + - 'Ref A: 26C7A28F2DBB4196881C6EE877CBB03A Ref B: SYD281080709025 Ref C: 2026-09-10T06:56:35Z' status: code: 200 message: OK @@ -1832,21 +1832,21 @@ interactions: ParameterSetName: - -n -r --platform User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:03 GMT + - Thu, 10 Sep 2026 06:56:36 GMT expires: - '-1' pragma: @@ -1860,7 +1860,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A9D14638D6C44AEC9F7644BD5EF0042F Ref B: BY1AA1072315029 Ref C: 2026-03-24T03:23:04Z' + - 'Ref A: 93C793B38FAD4EA78152F3885E94D023 Ref B: SYD281080708052 Ref C: 2026-09-10T06:56:36Z' status: code: 200 message: OK @@ -1878,23 +1878,23 @@ interactions: ParameterSetName: - -n -r --platform User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:04 GMT + - Thu, 10 Sep 2026 06:56:37 GMT expires: - '-1' pragma: @@ -1908,7 +1908,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 81CAF92D22F64E9D834433511F8BE36A Ref B: BY1AA1072319025 Ref C: 2026-03-24T03:23:04Z' + - 'Ref A: 4589CEB951014BAFBAFE6E8A22B0E8D7 Ref B: SYD281080711036 Ref C: 2026-09-10T06:56:37Z' status: code: 200 message: OK @@ -1928,12 +1928,12 @@ interactions: ParameterSetName: - -n -r --platform User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:52.8502562+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:55:03.6492556+00:00"}}' headers: cache-control: - no-cache @@ -1942,7 +1942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:04 GMT + - Thu, 10 Sep 2026 06:56:38 GMT expires: - '-1' pragma: @@ -1954,21 +1954,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5eb2ab1b-ed75-4c5a-8e2b-06a5ef2b9f83 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f445335b-88c9-4e9d-ae31-a0ed59085760 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 55134533951E421EA6A1685B0D196F95 Ref B: SJC211051203031 Ref C: 2026-03-24T03:23:04Z' + - 'Ref A: 8DEBAA911BA44DEE951F8206716F90E4 Ref B: SYD281080709034 Ref C: 2026-09-10T06:56:37Z' status: code: 200 message: OK - request: - body: '{"properties": {"trigger": {"baseImageTrigger": {"name": "defaultBaseimageTriggerName"}}, - "credentials": {}, "step": {"isPushEnabled": true, "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", - "type": "Docker"}, "agentConfiguration": {}, "platform": {"os": "linux", "architecture": - "arm"}}}' + body: '{"properties": {"step": {"isPushEnabled": true, "contextPath": "https://github.com/Azure-Samples/acr-build-helloworld-node", + "type": "Docker"}, "trigger": {"baseImageTrigger": {"name": "defaultBaseimageTriggerName"}}, + "platform": {"os": "linux", "architecture": "arm"}, "agentConfiguration": {}, + "credentials": {}}}' headers: Accept: - application/json @@ -1985,12 +1985,12 @@ interactions: ParameterSetName: - -n -r --platform User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:23:05.3452823+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:39.7436103+00:00"}}' headers: cache-control: - no-cache @@ -1999,7 +1999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:04 GMT + - Thu, 10 Sep 2026 06:56:39 GMT expires: - '-1' pragma: @@ -2011,13 +2011,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1b2ca7bb-f524-49be-81c5-8c662e5d0c6b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/7343a449-15be-4791-9f6e-56e31048d0aa x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: ED568380C4A04E7F843A21B6794915BB Ref B: BY1AA1072319023 Ref C: 2026-03-24T03:23:05Z' + - 'Ref A: A461A40771D74E00B9D05978D007A8AB Ref B: SYD281080705060 Ref C: 2026-09-10T06:56:39Z' status: code: 200 message: OK @@ -2035,21 +2035,21 @@ interactions: ParameterSetName: - -r --run-id --no-archive User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:05 GMT + - Thu, 10 Sep 2026 06:56:40 GMT expires: - '-1' pragma: @@ -2063,7 +2063,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B853777F78CA4E668CB18BE6901211CE Ref B: SJC211051204037 Ref C: 2026-03-24T03:23:05Z' + - 'Ref A: 3C2B7B992F734DB6978F71BF8FA44EAC Ref B: SYD281080712062 Ref C: 2026-09-10T06:56:40Z' status: code: 200 message: OK @@ -2081,23 +2081,23 @@ interactions: ParameterSetName: - -r --run-id --no-archive User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:05 GMT + - Thu, 10 Sep 2026 06:56:40 GMT expires: - '-1' pragma: @@ -2111,7 +2111,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 041EA019C2D14BA1AB6C6E9C2A701F42 Ref B: SJC211051204021 Ref C: 2026-03-24T03:23:05Z' + - 'Ref A: 56027BEBF9B547AA99E9B745A470F6A3 Ref B: SYD281080706031 Ref C: 2026-09-10T06:56:41Z' status: code: 200 message: OK @@ -2133,21 +2133,21 @@ interactions: ParameterSetName: - -r --run-id --no-archive User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-03-24T03:23:06+00:00","runType":"QuickRun","createTime":"2026-03-24T03:22:32.0819094+00:00","startTime":"2026-03-24T03:22:32.4929424+00:00","finishTime":"2026-03-24T03:22:53.5811819+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:af1e9c09d3d2c025bac13c2d331071ef0d85ca8abfe24f8a1ca30e0861f41b36"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:23:05.9894439+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:23:05.9894439+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf2","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:56:42+00:00","runType":"QuickRun","createTime":"2026-09-10T06:55:58.7720783+00:00","startTime":"2026-09-10T06:55:59.0144918+00:00","finishTime":"2026-09-10T06:56:19.825707+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtask","tag":"v1","digest":"sha256:7bd37307d0dd1a87425f8fe775ce27e749299155e668ba508cf9576879aae5de"}],"task":"testTask","platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":true},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf2","name":"cf2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:56:42.3829228+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:42.3829228+00:00"}}' headers: cache-control: - no-cache content-length: - - '1054' + - '1053' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:05 GMT + - Thu, 10 Sep 2026 06:56:42 GMT expires: - '-1' pragma: @@ -2159,13 +2159,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1a208e45-92eb-4486-a9c6-06434c53efd3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/00e3baeb-d9fd-4d39-8573-63e1d1e44316 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 32B3C8A8906544E6B2793479C7CD5F34 Ref B: BY1AA1072319042 Ref C: 2026-03-24T03:23:05Z' + - 'Ref A: A5349D1CCD1D4625B9114AAF208B8C4F Ref B: SYD281080707023 Ref C: 2026-09-10T06:56:42Z' status: code: 200 message: OK @@ -2183,21 +2183,21 @@ interactions: ParameterSetName: - -n -r --login-server -u -p --use-identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:05 GMT + - Thu, 10 Sep 2026 06:56:43 GMT expires: - '-1' pragma: @@ -2211,7 +2211,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5B803292D094424A807126B595AB9733 Ref B: BY1AA1072318042 Ref C: 2026-03-24T03:23:06Z' + - 'Ref A: E64CD131AC9440F4B475727FE9F0C3F1 Ref B: SYD281080712036 Ref C: 2026-09-10T06:56:43Z' status: code: 200 message: OK @@ -2229,23 +2229,23 @@ interactions: ParameterSetName: - -n -r --login-server -u -p --use-identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:06 GMT + - Thu, 10 Sep 2026 06:56:43 GMT expires: - '-1' pragma: @@ -2259,7 +2259,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1C450F79589B45E99EADBF6103D37D5A Ref B: BY1AA1072317060 Ref C: 2026-03-24T03:23:06Z' + - 'Ref A: DE60FA73985B400C85A0F1CA7FA10B13 Ref B: SYD281080706054 Ref C: 2026-09-10T06:56:43Z' status: code: 200 message: OK @@ -2279,12 +2279,12 @@ interactions: ParameterSetName: - -n -r --login-server -u -p --use-identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:23:05.3452823+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:39.7436103+00:00"}}' headers: cache-control: - no-cache @@ -2293,7 +2293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:05 GMT + - Thu, 10 Sep 2026 06:56:44 GMT expires: - '-1' pragma: @@ -2305,13 +2305,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f2b24d5f-1f27-4276-b728-7162dbad7d9a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9c4c1ccd-b6c4-4929-a91e-54a4b48ff9c4 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1E7DD5E0DF8240E2BC9C966C20DB66B7 Ref B: BY1AA1072320052 Ref C: 2026-03-24T03:23:06Z' + - 'Ref A: 79E112B03A5B4C7AAAD644CABEEBBF1A Ref B: SYD281080706040 Ref C: 2026-09-10T06:56:44Z' status: code: 200 message: OK @@ -2335,12 +2335,12 @@ interactions: ParameterSetName: - -n -r --login-server -u -p --use-identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{"test.acr.com":null}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:23:06.9835895+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{"test.acr.com":null}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:45.5830905+00:00"}}' headers: cache-control: - no-cache @@ -2349,7 +2349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:06 GMT + - Thu, 10 Sep 2026 06:56:45 GMT expires: - '-1' pragma: @@ -2361,13 +2361,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/90c01ec7-043d-4792-a94c-f0b10c1c49af + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/93d8744a-494d-4634-9b22-c1cb398e0a90 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1FE0595A0D3D45FD956EC0A4E9788F48 Ref B: SJC211051203047 Ref C: 2026-03-24T03:23:06Z' + - 'Ref A: 4F23587CA00D460D866B904AE37877A5 Ref B: SYD281080707036 Ref C: 2026-09-10T06:56:45Z' status: code: 200 message: OK @@ -2385,21 +2385,21 @@ interactions: ParameterSetName: - -n -r --login-server -u -p User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:06 GMT + - Thu, 10 Sep 2026 06:56:46 GMT expires: - '-1' pragma: @@ -2413,7 +2413,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 257D79C3A81B4FEB9BC2CC3B3608CC7B Ref B: BY1AA1072319034 Ref C: 2026-03-24T03:23:07Z' + - 'Ref A: 0DE3E0D8986349B7B2652683D34D585A Ref B: SYD281080708042 Ref C: 2026-09-10T06:56:46Z' status: code: 200 message: OK @@ -2431,23 +2431,23 @@ interactions: ParameterSetName: - -n -r --login-server -u -p User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:07 GMT + - Thu, 10 Sep 2026 06:56:47 GMT expires: - '-1' pragma: @@ -2459,9 +2459,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 6BC8469ACB6F4550B29BB613C5394F7D Ref B: BY1AA1072319025 Ref C: 2026-03-24T03:23:07Z' + - 'Ref A: 1A987968991542B68A1DF2443E5FF792 Ref B: SYD281080706054 Ref C: 2026-09-10T06:56:47Z' status: code: 200 message: OK @@ -2481,12 +2481,12 @@ interactions: ParameterSetName: - -n -r --login-server -u -p User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask/listDetails?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{"test.acr.com":{"userName":{"value":"testuser","type":"Opaque"},"password":{"value":"random","type":"Opaque"},"identity":"[system]"}}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:23:06.9835895+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{"test.acr.com":{"userName":{"value":"testuser","type":"Opaque"},"password":{"value":"random","type":"Opaque"},"identity":"[system]"}}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:45.5830905+00:00"}}' headers: cache-control: - no-cache @@ -2495,7 +2495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:06 GMT + - Thu, 10 Sep 2026 06:56:48 GMT expires: - '-1' pragma: @@ -2507,13 +2507,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5586d337-085b-4523-91a4-61c7a0866f67 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b1ffeb37-d9b0-4240-832d-f13aa6d2584b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CD9B9779E6CB41C2B6F48CD2A1C5B15E Ref B: BY1AA1072318036 Ref C: 2026-03-24T03:23:07Z' + - 'Ref A: 7A6D12E49E3F4C8C8D045E0BEBB5965B Ref B: SYD281080709060 Ref C: 2026-09-10T06:56:48Z' status: code: 200 message: OK @@ -2537,12 +2537,12 @@ interactions: ParameterSetName: - -n -r --login-server -u -p User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{"test.acr.com":null}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:23:08.0528914+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{"test.acr.com":null}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:49.1341617+00:00"}}' headers: cache-control: - no-cache @@ -2551,7 +2551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:07 GMT + - Thu, 10 Sep 2026 06:56:49 GMT expires: - '-1' pragma: @@ -2563,13 +2563,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/e5e73b2c-0e40-4646-9b6e-3cd0d00b7ef9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f3008e65-da22-4a4b-baa6-767da38754f6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 18D90A945AD747CEA60A4CA1A93D1F85 Ref B: BY1AA1072317054 Ref C: 2026-03-24T03:23:07Z' + - 'Ref A: 4C62970278564E1EBC242614F8D017E7 Ref B: SYD281080709052 Ref C: 2026-09-10T06:56:48Z' status: code: 200 message: OK @@ -2587,21 +2587,21 @@ interactions: ParameterSetName: - -n -r --login-server User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_74ecpansmkslgxlbidhej2p44w53wdnsutvkhjeifj5tm6ftxug4ywbgrd/providers/Microsoft.ContainerRegistry/registries/cliregkelyjqnpwuwqt2","name":"cliregkelyjqnpwuwqt2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:25.7952884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:25.7952884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3994' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:08 GMT + - Thu, 10 Sep 2026 06:56:49 GMT expires: - '-1' pragma: @@ -2615,7 +2615,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A980B36B3AD7413CB18DD805914B70BB Ref B: SJC211051204045 Ref C: 2026-03-24T03:23:08Z' + - 'Ref A: 939BC3A61F6A49AAAF1C07C07B174963 Ref B: SYD281080708052 Ref C: 2026-09-10T06:56:49Z' status: code: 200 message: OK @@ -2633,23 +2633,23 @@ interactions: ParameterSetName: - -n -r --login-server User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:08 GMT + - Thu, 10 Sep 2026 06:56:50 GMT expires: - '-1' pragma: @@ -2663,7 +2663,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1AAF7BF512C447DDA490035A2AC5506F Ref B: SJC211051204031 Ref C: 2026-03-24T03:23:08Z' + - 'Ref A: 4B342CD9B4014773BA92CA06B8570132 Ref B: SYD281080705062 Ref C: 2026-09-10T06:56:50Z' status: code: 200 message: OK @@ -2685,12 +2685,12 @@ interactions: ParameterSetName: - -n -r --login-server User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"3cf0ac33-e2fe-4688-b6c2-4e6cc2ae1a50","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-03-24T03:21:53.9582086+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:52.8502562+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:23:09.0241533+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tasks","identity":{"principalId":"baecfa8c-88ac-47fb-84bb-214adb4cb2eb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","creationDate":"2026-09-10T06:55:05.6358346+00:00","status":"Enabled","platform":{"os":"linux","architecture":"arm"},"agentConfiguration":{"cpu":2},"timeout":3600,"step":{"type":"Docker","imageNames":["testtask:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","arguments":[],"baseImageDependencies":[{"type":"Runtime","registry":"registry.hub.docker.com","repository":"library/node","tag":"15-alpine","digest":"sha256:6edd37368174c15d4cc59395ca2643be8e2a1c9846714bc92c5f5c5a92fb8929"}],"contextPath":"https://github.com/Azure-Samples/acr-build-helloworld-node"},"trigger":{"baseImageTrigger":{"baseImageTriggerType":"Runtime","updateTriggerPayloadType":"Default","status":"Enabled","name":"defaultBaseimageTriggerName"}},"credentials":{"customRegistries":{}},"isSystemTask":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask","name":"testTask","location":"westus","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:55:03.6492556+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:56:51.6870169+00:00"}}' headers: cache-control: - no-cache @@ -2699,7 +2699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:08 GMT + - Thu, 10 Sep 2026 06:56:51 GMT expires: - '-1' pragma: @@ -2711,13 +2711,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ad2a085d-a60a-4885-8e0c-a38a759524b4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/94c6462c-9d4d-4e91-a16d-4a2119d94434 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 68D42FA95D6840BEA235D0A7F51A92B4 Ref B: BY1AA1072317040 Ref C: 2026-03-24T03:23:08Z' + - 'Ref A: B60E6B5451884A2D910EE26F0600D2F3 Ref B: SYD281080712034 Ref C: 2026-09-10T06:56:51Z' status: code: 200 message: OK @@ -2735,21 +2735,21 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915Z"}}]}' headers: cache-control: - no-cache content-length: - - '2770' + - '3396' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:08 GMT + - Thu, 10 Sep 2026 06:56:52 GMT expires: - '-1' pragma: @@ -2763,7 +2763,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8B31B565FFA54887BAEF59E88A9696E6 Ref B: SJC211051201037 Ref C: 2026-03-24T03:23:09Z' + - 'Ref A: A12ED045CE8B4511BE10936D7D8DD1FD Ref B: SYD281080705025 Ref C: 2026-09-10T06:56:52Z' status: code: 200 message: OK @@ -2781,23 +2781,23 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1609' + - '1643' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:09 GMT + - Thu, 10 Sep 2026 06:56:52 GMT expires: - '-1' pragma: @@ -2811,7 +2811,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FCD37057AEE244979DC50599036450B9 Ref B: SJC211051201051 Ref C: 2026-03-24T03:23:09Z' + - 'Ref A: 1048AE3F268E4ED68F461B89A8D06D94 Ref B: SYD281080710040 Ref C: 2026-09-10T06:56:53Z' status: code: 200 message: OK @@ -2831,7 +2831,7 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tasks/testTask?api-version=2025-03-01-preview response: @@ -2843,7 +2843,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 03:23:09 GMT + - Thu, 10 Sep 2026 06:56:54 GMT expires: - '-1' pragma: @@ -2855,13 +2855,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b77a1562-67b5-45e4-a787-efe39629c7e6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b8b21276-bff4-4b65-9dd3-8e45f8aeb5a3 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: A9977046B89B47B6A25291A40F33876C Ref B: SJC211051204025 Ref C: 2026-03-24T03:23:09Z' + - 'Ref A: 48BC9A8D1B9A43DE9BE9B0913CCD47A4 Ref B: SYD281080712054 Ref C: 2026-09-10T06:56:54Z' status: code: 200 message: OK @@ -2881,27 +2881,27 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:21:44.1476061+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:21:44.1476061+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T03:21:44.1476061Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T03:21:51.190745+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T03:21:51.190788+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:52.0919915+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:52.0919915+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:54:52.0919915Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885329+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:54:58.9885754+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1608' + - '1642' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 03:23:10 GMT + - Thu, 10 Sep 2026 06:56:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-c8772364-2730-11f1-a227-70a8a51b6037?api-version=2026-03-01-preview&t=639099193907755944&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=TiYhz69bnqJgH1u_q79ycYF4djD4b4u7D77l9uX3guc7L32cmxh_zdHw72xjlQzNVceNRZ_te6XUZEMkOW7YosuPCFokpS9VRwpBEgm_y5t_CXqNFA6THa6MathC8NcXFaS0-XUKgcKAQgEg6axVzN9jOr7rR4GR2CgMsGwnzN11nDtFioFw72Lu1GqkgsqsqrDQ7d2LSCWfqr7gbwSZTv7XgRRtjDpvmk3YoYSCUKU4xBTDkgNl77OR7SqIogY9-Ji1PAmnU1BDKCEh2PdjoZhxiv6KOhtG8YwPWbG6lhrKNYDd_Yf2hlzTyua_onqHnV9QU7HRbui2joSuyF_vPg&h=q5HcUQjxBKS2EnBjZ7AieTLalf2p6yNVIkdybFnUl1o + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-cfd0e4b8-ace4-11f1-9beb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202160713613&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=l6VG5b3O3SPfh-XTDDGRLFy7FwLlxfX5XbwVrhv67IyWsS5ZZKJIZgl_jrm6VoiInpBaFLHbC4yP705B9_mpX269QdbzTpH-n5tVas4V1cv-UTjFxhZeTRouSuEM8gQGP3p48bFwtMq98yLvrvEjRLZFArMAHyr-bkb0iN0RQBe2Jah7zbtP2kIqr3HCiGfVw7zecvO752Nm9H1NuWvlYdCNXcGkVAG1YfaQVAGezdQYopehL_FfIkDf_IMQDIXIP6fUTLpTu47s2TFGPm0_23WKFYOlctaN7S2tqcX5j74r37AmXtFl3K9dOAP8fLM4SAchzUtRUIW_UXj0GkZGsg&h=rzF3qhgrQxnRnBXgjRwtZITSgiJdcCLMRqvQTMJrTf0 pragma: - no-cache strict-transport-security: @@ -2911,13 +2911,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ac474b5a-5c71-4c8a-b582-ff67568fa95c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a2e8c75b-710d-49cf-8d9c-6b0f0c714871 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: EB5DAD0BCF664DF99793D7613DE47A84 Ref B: BY1AA1072317052 Ref C: 2026-03-24T03:23:10Z' + - 'Ref A: 08255BF1FDB14C1EB70C2BEF1A8E52BD Ref B: SYD281080710036 Ref C: 2026-09-10T06:56:55Z' status: code: 202 message: Accepted @@ -2935,9 +2935,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-c8772364-2730-11f1-a227-70a8a51b6037?api-version=2026-03-01-preview&t=639099193907755944&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=TiYhz69bnqJgH1u_q79ycYF4djD4b4u7D77l9uX3guc7L32cmxh_zdHw72xjlQzNVceNRZ_te6XUZEMkOW7YosuPCFokpS9VRwpBEgm_y5t_CXqNFA6THa6MathC8NcXFaS0-XUKgcKAQgEg6axVzN9jOr7rR4GR2CgMsGwnzN11nDtFioFw72Lu1GqkgsqsqrDQ7d2LSCWfqr7gbwSZTv7XgRRtjDpvmk3YoYSCUKU4xBTDkgNl77OR7SqIogY9-Ji1PAmnU1BDKCEh2PdjoZhxiv6KOhtG8YwPWbG6lhrKNYDd_Yf2hlzTyua_onqHnV9QU7HRbui2joSuyF_vPg&h=q5HcUQjxBKS2EnBjZ7AieTLalf2p6yNVIkdybFnUl1o + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-cfd0e4b8-ace4-11f1-9beb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202160713613&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=l6VG5b3O3SPfh-XTDDGRLFy7FwLlxfX5XbwVrhv67IyWsS5ZZKJIZgl_jrm6VoiInpBaFLHbC4yP705B9_mpX269QdbzTpH-n5tVas4V1cv-UTjFxhZeTRouSuEM8gQGP3p48bFwtMq98yLvrvEjRLZFArMAHyr-bkb0iN0RQBe2Jah7zbtP2kIqr3HCiGfVw7zecvO752Nm9H1NuWvlYdCNXcGkVAG1YfaQVAGezdQYopehL_FfIkDf_IMQDIXIP6fUTLpTu47s2TFGPm0_23WKFYOlctaN7S2tqcX5j74r37AmXtFl3K9dOAP8fLM4SAchzUtRUIW_UXj0GkZGsg&h=rzF3qhgrQxnRnBXgjRwtZITSgiJdcCLMRqvQTMJrTf0 response: body: string: '' @@ -2947,11 +2947,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 03:23:10 GMT + - Thu, 10 Sep 2026 06:56:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-c8772364-2730-11f1-a227-70a8a51b6037?api-version=2026-03-01-preview&t=639099193910281763&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ij_OZNEyJg7gETQHh6yr9aLttWsH7UfjWwkVIjUCnLswyqPfPzxPzPpppbnCy2fdzuMgmDXHjNYIhMQgP7eeA8ivBHDluI80FlaoB7KVQwZMcoqCyrEjyWMa3ld1ITiKtnmysbyfKnrq8Q6GZ_DE8QUZy9okNIrbU-NLN8QDUgAGoJIXkCoGVYLYVrTYl089lXPErGpl52Yn2BpuOjMc9Gw71k_g8LetKkLrl16I6u2OlalLel0ljRZj7PNy6m8StdWJpll48gsQ5hQcFmNERSdTVpVNELtX2mSlaOIxf7NpBOPzqPSmIjOTnFQsV1CImDa3YyDzxwvB46Wg6BCITA&h=k-x2R7H9i-dB2jioN5oeKaA8flDswmdMQfG2U0n_JqA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-cfd0e4b8-ace4-11f1-9beb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202173014738&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=MVmvyxQzdG_9q3m_UtX9iQEaGRlPYlweaxaikGlR50Kyku3T5_0XPa7ToG1iB7d0iDAUAJK6_ZF0q5bY3E1sAujf7uquH0HraC7-0XzyxwY7Qxl488_sIsIeqUE6TRAJCGkKvRVUBg9Gr8hSXWL4xK-JoOXwkqSRGiS1nEEEp5vBMexVs8RYoPuBFVgAhCCYtt83YI3x38XcRMiEp77BKh8n0a3h5THFp1eCHhMTyxykVE5-bETWFXqrp3qOThda5twN3FI2mlrnCWNIQOZdJCFky7BIQ6Xc6J-3ug2WiIRbU3SxFAiSKCTMNrDiWfo8h6FvpfB59ADbrmqZcVZiTA&h=5fBICAOPqlHA22jFtX0ynildaayCT1i4AnIR5PaCxhY pragma: - no-cache strict-transport-security: @@ -2961,11 +2961,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/acdd25bf-f301-489e-82cc-020e8cb8e7cf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/1f3036a2-0842-4509-81dc-c0b2766dae08 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 89B36FD3063A489EB54903FFB7A07468 Ref B: BY1AA1072315052 Ref C: 2026-03-24T03:23:10Z' + - 'Ref A: DD57B93245BD4600902E488A0993D7C1 Ref B: SYD281080711060 Ref C: 2026-09-10T06:56:56Z' status: code: 202 message: Accepted @@ -2983,9 +2983,9 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-c8772364-2730-11f1-a227-70a8a51b6037?api-version=2026-03-01-preview&t=639099193910281763&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ij_OZNEyJg7gETQHh6yr9aLttWsH7UfjWwkVIjUCnLswyqPfPzxPzPpppbnCy2fdzuMgmDXHjNYIhMQgP7eeA8ivBHDluI80FlaoB7KVQwZMcoqCyrEjyWMa3ld1ITiKtnmysbyfKnrq8Q6GZ_DE8QUZy9okNIrbU-NLN8QDUgAGoJIXkCoGVYLYVrTYl089lXPErGpl52Yn2BpuOjMc9Gw71k_g8LetKkLrl16I6u2OlalLel0ljRZj7PNy6m8StdWJpll48gsQ5hQcFmNERSdTVpVNELtX2mSlaOIxf7NpBOPzqPSmIjOTnFQsV1CImDa3YyDzxwvB46Wg6BCITA&h=k-x2R7H9i-dB2jioN5oeKaA8flDswmdMQfG2U0n_JqA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-cfd0e4b8-ace4-11f1-9beb-3cefa50a58cc?api-version=2026-09-01-preview&t=639246202173014738&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=MVmvyxQzdG_9q3m_UtX9iQEaGRlPYlweaxaikGlR50Kyku3T5_0XPa7ToG1iB7d0iDAUAJK6_ZF0q5bY3E1sAujf7uquH0HraC7-0XzyxwY7Qxl488_sIsIeqUE6TRAJCGkKvRVUBg9Gr8hSXWL4xK-JoOXwkqSRGiS1nEEEp5vBMexVs8RYoPuBFVgAhCCYtt83YI3x38XcRMiEp77BKh8n0a3h5THFp1eCHhMTyxykVE5-bETWFXqrp3qOThda5twN3FI2mlrnCWNIQOZdJCFky7BIQ6Xc6J-3ug2WiIRbU3SxFAiSKCTMNrDiWfo8h6FvpfB59ADbrmqZcVZiTA&h=5fBICAOPqlHA22jFtX0ynildaayCT1i4AnIR5PaCxhY response: body: string: '' @@ -2995,7 +2995,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 03:23:21 GMT + - Thu, 10 Sep 2026 06:57:07 GMT expires: - '-1' pragma: @@ -3007,11 +3007,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/7c872e6b-a085-4b85-baa3-6aaf61376d89 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/a8e6d05c-e10e-4091-bd61-138ae606eb03 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 932CC5ED536F4D0BAE1777B6A4EE6B14 Ref B: SJC211051203017 Ref C: 2026-03-24T03:23:21Z' + - 'Ref A: ACD65613632B4E239DA9B7847804D6E2 Ref B: SYD281080710040 Ref C: 2026-09-10T06:57:07Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_taskrun.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_taskrun.yaml index 9eb2819a91e..a0fe6c06beb 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_taskrun.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_taskrun.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:47:42.6431769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:47:42.6431769+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:47:42.6431769Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166066+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:16.3426904+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:16.3426904+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:16.3426904Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:23.825968+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:23.8260095+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1642' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:47:49 GMT + - Thu, 10 Sep 2026 06:57:23 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5536f3c5-8c16-497e-8857-a492fc27f21d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/bc65006c-2682-4bc9-9514-6456e01ead2e x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: E06A0709ED684DFCB3BF59DDD6BF2802 Ref B: SJC211051205037 Ref C: 2026-03-24T01:47:42Z' + - 'Ref A: 37D6A7FD7B904CF58B4C18C6E29ADCF7 Ref B: SYD281080711040 Ref C: 2026-09-10T06:57:14Z' status: code: 200 message: OK @@ -106,12 +106,12 @@ interactions: - --resource-group --template-file --parameters --parameters --parameters --parameters --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample","name":"taskrunquickbuildsample","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17630739476866960417","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"testTaskRun"},"sourceLocation":{"type":"String","value":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"dockerFilePath":{"type":"String","value":"Dockerfile"},"image":{"type":"String","value":"testtaskrun:v1"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-03-24T01:47:50.4319597Z","duration":"PT0S","correlationId":"45afe316-e574-4951-bc86-575f94288782","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample","name":"taskrunquickbuildsample","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17630739476866960417","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"testTaskRun"},"sourceLocation":{"type":"String","value":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"dockerFilePath":{"type":"String","value":"Dockerfile"},"image":{"type":"String","value":"testtaskrun:v1"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-09-10T06:57:26.6131127Z","duration":"PT0S","correlationId":"1b6073d2-1281-4178-b032-ea831200ba43","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun"}]}}' headers: cache-control: - no-cache @@ -120,7 +120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:47:50 GMT + - Thu, 10 Sep 2026 06:57:26 GMT expires: - '-1' pragma: @@ -136,7 +136,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D54324E5710F4B61A9AEDB27D5F79854 Ref B: SJC211051203033 Ref C: 2026-03-24T01:47:49Z' + - 'Ref A: 0451EB54CCD0453C87877D296B79CC4A Ref B: SYD281080710025 Ref C: 2026-09-10T06:57:24Z' status: code: 200 message: OK @@ -190,15 +190,15 @@ interactions: - --resource-group --template-file --parameters --parameters --parameters --parameters --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample","name":"taskrunquickbuildsample","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17630739476866960417","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"testTaskRun"},"sourceLocation":{"type":"String","value":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"dockerFilePath":{"type":"String","value":"Dockerfile"},"image":{"type":"String","value":"testtaskrun:v1"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-03-24T01:47:51.1164205Z","duration":"PT0.0006476S","correlationId":"f9e4f5cb-8389-46f3-b9d2-aa2ec46a7dd0","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample","name":"taskrunquickbuildsample","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17630739476866960417","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"testTaskRun"},"sourceLocation":{"type":"String","value":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"dockerFilePath":{"type":"String","value":"Dockerfile"},"image":{"type":"String","value":"testtaskrun:v1"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-09-10T06:57:29.8723632Z","duration":"PT0.0004206S","correlationId":"3d6d5560-1e99-4f52-8502-5da8d7651c27","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample/operationStatuses/08584272900143609431?api-version=2025-04-01&t=639099136716008071&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CO2FM6YiwDBv7qEW_bZYUqdHLfh0dxRxI8_zViVAX3v43zZEuOlRl2XuYpioz37DcK7Xn1XjdP2witRrk1JtXEFlmnKsXde6mnVYBCOhS0JieDF7TcZd0MbmYbWIkJHXjVlFCKoMWnmGgHIXERCpzYbheoGcQaMA3w3JDuhguyL9XmDmDlcdEnTkuZF4zgfTKMrSsMeOQcoiBeYLeBejF2ol5RJx-u8oA1rCanjMIVrGcaTGeu-0JRFg1tgoV_QxpKh-NsvBGY0w_uc0paEhw54-sD18QpZ9m3Xq7n_lHxagINogkbxfT7ErMhk2G_qgUA-l5PsRCprJ5dwYUi7n-Q&h=eC14XZGZ95GFv1e5xw5PBxawdP6TyDJM8S2k7Az76VA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample/operationStatuses/08584125834355942596?api-version=2025-04-01&t=639246202547786314&c=MIIHwDCCBqigAwIBAgIRAOMNQF9fKgnMBmWT2zSqRoMwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDgxNDAwNTgzNloXDTI3MDIwOTA2NTgzNlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDD3ceSm9rwKlXIJDtd7E2GfmfDuHpnM25pBk1mC_BHD8w0eh_86HDPGn15irT5yBTwIz8Fb1FofcySZBb5QRrtz4nEKgyCwU9B5qAW_8RJzlugk3xLerkjHG2C4BAm59YruwtlOi67BUtUyxQ_fd2q3x1arJmV3KyeQd404po8wGAIljLbz_s0WRY8OvYsss6ENNbmLs6LuIkL1Tm5x9A60BCEhGqjZ-pwI40xJugAbyaWLsJGLMXhcafeFIAzo6zsy5g_NA4UPeb2-EiUDUztvkfCGt_KwVg7UvXVpg-k1Gb9ak6oVKWTwvjUcFhxaHHKa84WSIwmhYqQrv6xj6R5AgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSgdQzgjqxRIl_9jzMFuD4b2jVoJjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzgvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS84L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABrYVQZ4I1hRNoRluTy54IdtVIpebQ1h0kRyuuk_P7mbw5E4_pVyLmCLbWcmCzkLjVkpOUi5--ovELvo0nLeCG7jg61H3D0InM0u1WcWFeK5iu3hcvy38XGZUxfrLMwVgQp4vlR3UeTzk63g5dLiQhPLB8Y3MC4DpPaQNN_ZfTv2z0FnriHDlZM89I9PXHWTRKdbduJ0cietbKvi73ZdHtUrTKgpzNjeRv1X6pTtsw1Q_84pl7MyOdQTBUvb5bElgHWcdOLSfNwlrklRndoDg5dMN5ttz6hso-U2QzIwN2HsdFPIwsI7yxOUk_wHs-UiadXcv_xF23odRohVU2t0pSk&s=amATR_j2TV5RpjMT-ZK7_d8zfiTyAkyRTUu8zUW2C7ZVozGm1AbA9rP60yHXRW3zifbHJRYWQVPgYZqCm_vaknh5GvEJu5yZfUnhdPpODRM3pKD3lh5F1XONTUc240_posq0SujlraHk9nqZSdKwSJn5qbKXxjiwWDfSvr7UVLGz5vDpzc_UQkMoRWDU103FQQWpFyx9Vl9cYELzNdH2yeMInGJhxr_qC6cRViO8Z9zmdcq7VSl277yUCSl-ZGg66l8nBdHlb0x5TeaeADCnuH4DTGw6T2H1UwsUliShbxw98edQ3pX4nP25RKpC4iMmCnMRsrZbIm1lWC7nHvaWsA&h=P18MEbUYmeg9gXHXMIfjYtPqPEepKvYNAsNc2XjBgcM cache-control: - no-cache content-length: @@ -206,7 +206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:47:51 GMT + - Thu, 10 Sep 2026 06:57:34 GMT expires: - '-1' pragma: @@ -218,13 +218,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.573.0 + - 1.740.0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C3E188754BAB41EF8BDB48989209FC64 Ref B: BY1AA1072317060 Ref C: 2026-03-24T01:47:50Z' + - 'Ref A: D0EB9B44B2D04B5CA6507E05B263C800 Ref B: SYD281080708060 Ref C: 2026-09-10T06:57:27Z' status: code: 201 message: Created @@ -243,21 +243,21 @@ interactions: - --resource-group --template-file --parameters --parameters --parameters --parameters --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272900143609431?api-version=2025-04-01&t=639099136716008071&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CO2FM6YiwDBv7qEW_bZYUqdHLfh0dxRxI8_zViVAX3v43zZEuOlRl2XuYpioz37DcK7Xn1XjdP2witRrk1JtXEFlmnKsXde6mnVYBCOhS0JieDF7TcZd0MbmYbWIkJHXjVlFCKoMWnmGgHIXERCpzYbheoGcQaMA3w3JDuhguyL9XmDmDlcdEnTkuZF4zgfTKMrSsMeOQcoiBeYLeBejF2ol5RJx-u8oA1rCanjMIVrGcaTGeu-0JRFg1tgoV_QxpKh-NsvBGY0w_uc0paEhw54-sD18QpZ9m3Xq7n_lHxagINogkbxfT7ErMhk2G_qgUA-l5PsRCprJ5dwYUi7n-Q&h=eC14XZGZ95GFv1e5xw5PBxawdP6TyDJM8S2k7Az76VA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125834355942596?api-version=2025-04-01&t=639246202547786314&c=MIIHwDCCBqigAwIBAgIRAOMNQF9fKgnMBmWT2zSqRoMwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDgxNDAwNTgzNloXDTI3MDIwOTA2NTgzNlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDD3ceSm9rwKlXIJDtd7E2GfmfDuHpnM25pBk1mC_BHD8w0eh_86HDPGn15irT5yBTwIz8Fb1FofcySZBb5QRrtz4nEKgyCwU9B5qAW_8RJzlugk3xLerkjHG2C4BAm59YruwtlOi67BUtUyxQ_fd2q3x1arJmV3KyeQd404po8wGAIljLbz_s0WRY8OvYsss6ENNbmLs6LuIkL1Tm5x9A60BCEhGqjZ-pwI40xJugAbyaWLsJGLMXhcafeFIAzo6zsy5g_NA4UPeb2-EiUDUztvkfCGt_KwVg7UvXVpg-k1Gb9ak6oVKWTwvjUcFhxaHHKa84WSIwmhYqQrv6xj6R5AgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSgdQzgjqxRIl_9jzMFuD4b2jVoJjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzgvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS84L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABrYVQZ4I1hRNoRluTy54IdtVIpebQ1h0kRyuuk_P7mbw5E4_pVyLmCLbWcmCzkLjVkpOUi5--ovELvo0nLeCG7jg61H3D0InM0u1WcWFeK5iu3hcvy38XGZUxfrLMwVgQp4vlR3UeTzk63g5dLiQhPLB8Y3MC4DpPaQNN_ZfTv2z0FnriHDlZM89I9PXHWTRKdbduJ0cietbKvi73ZdHtUrTKgpzNjeRv1X6pTtsw1Q_84pl7MyOdQTBUvb5bElgHWcdOLSfNwlrklRndoDg5dMN5ttz6hso-U2QzIwN2HsdFPIwsI7yxOUk_wHs-UiadXcv_xF23odRohVU2t0pSk&s=amATR_j2TV5RpjMT-ZK7_d8zfiTyAkyRTUu8zUW2C7ZVozGm1AbA9rP60yHXRW3zifbHJRYWQVPgYZqCm_vaknh5GvEJu5yZfUnhdPpODRM3pKD3lh5F1XONTUc240_posq0SujlraHk9nqZSdKwSJn5qbKXxjiwWDfSvr7UVLGz5vDpzc_UQkMoRWDU103FQQWpFyx9Vl9cYELzNdH2yeMInGJhxr_qC6cRViO8Z9zmdcq7VSl277yUCSl-ZGg66l8nBdHlb0x5TeaeADCnuH4DTGw6T2H1UwsUliShbxw98edQ3pX4nP25RKpC4iMmCnMRsrZbIm1lWC7nHvaWsA&h=P18MEbUYmeg9gXHXMIfjYtPqPEepKvYNAsNc2XjBgcM response: body: - string: '{"status":"Accepted"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '21' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:47:51 GMT + - Thu, 10 Sep 2026 06:57:35 GMT expires: - '-1' pragma: @@ -271,7 +271,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3FE87581157A4615A584EEEF3BAC7797 Ref B: BY1AA1072319023 Ref C: 2026-03-24T01:47:51Z' + - 'Ref A: 58A052B12B9942C0AAD68D04AB8EAFAB Ref B: SYD281080707031 Ref C: 2026-09-10T06:57:35Z' status: code: 200 message: OK @@ -290,9 +290,9 @@ interactions: - --resource-group --template-file --parameters --parameters --parameters --parameters --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272900143609431?api-version=2025-04-01&t=639099136716008071&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CO2FM6YiwDBv7qEW_bZYUqdHLfh0dxRxI8_zViVAX3v43zZEuOlRl2XuYpioz37DcK7Xn1XjdP2witRrk1JtXEFlmnKsXde6mnVYBCOhS0JieDF7TcZd0MbmYbWIkJHXjVlFCKoMWnmGgHIXERCpzYbheoGcQaMA3w3JDuhguyL9XmDmDlcdEnTkuZF4zgfTKMrSsMeOQcoiBeYLeBejF2ol5RJx-u8oA1rCanjMIVrGcaTGeu-0JRFg1tgoV_QxpKh-NsvBGY0w_uc0paEhw54-sD18QpZ9m3Xq7n_lHxagINogkbxfT7ErMhk2G_qgUA-l5PsRCprJ5dwYUi7n-Q&h=eC14XZGZ95GFv1e5xw5PBxawdP6TyDJM8S2k7Az76VA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125834355942596?api-version=2025-04-01&t=639246202547786314&c=MIIHwDCCBqigAwIBAgIRAOMNQF9fKgnMBmWT2zSqRoMwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDgxNDAwNTgzNloXDTI3MDIwOTA2NTgzNlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDD3ceSm9rwKlXIJDtd7E2GfmfDuHpnM25pBk1mC_BHD8w0eh_86HDPGn15irT5yBTwIz8Fb1FofcySZBb5QRrtz4nEKgyCwU9B5qAW_8RJzlugk3xLerkjHG2C4BAm59YruwtlOi67BUtUyxQ_fd2q3x1arJmV3KyeQd404po8wGAIljLbz_s0WRY8OvYsss6ENNbmLs6LuIkL1Tm5x9A60BCEhGqjZ-pwI40xJugAbyaWLsJGLMXhcafeFIAzo6zsy5g_NA4UPeb2-EiUDUztvkfCGt_KwVg7UvXVpg-k1Gb9ak6oVKWTwvjUcFhxaHHKa84WSIwmhYqQrv6xj6R5AgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSgdQzgjqxRIl_9jzMFuD4b2jVoJjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzgvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS84L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABrYVQZ4I1hRNoRluTy54IdtVIpebQ1h0kRyuuk_P7mbw5E4_pVyLmCLbWcmCzkLjVkpOUi5--ovELvo0nLeCG7jg61H3D0InM0u1WcWFeK5iu3hcvy38XGZUxfrLMwVgQp4vlR3UeTzk63g5dLiQhPLB8Y3MC4DpPaQNN_ZfTv2z0FnriHDlZM89I9PXHWTRKdbduJ0cietbKvi73ZdHtUrTKgpzNjeRv1X6pTtsw1Q_84pl7MyOdQTBUvb5bElgHWcdOLSfNwlrklRndoDg5dMN5ttz6hso-U2QzIwN2HsdFPIwsI7yxOUk_wHs-UiadXcv_xF23odRohVU2t0pSk&s=amATR_j2TV5RpjMT-ZK7_d8zfiTyAkyRTUu8zUW2C7ZVozGm1AbA9rP60yHXRW3zifbHJRYWQVPgYZqCm_vaknh5GvEJu5yZfUnhdPpODRM3pKD3lh5F1XONTUc240_posq0SujlraHk9nqZSdKwSJn5qbKXxjiwWDfSvr7UVLGz5vDpzc_UQkMoRWDU103FQQWpFyx9Vl9cYELzNdH2yeMInGJhxr_qC6cRViO8Z9zmdcq7VSl277yUCSl-ZGg66l8nBdHlb0x5TeaeADCnuH4DTGw6T2H1UwsUliShbxw98edQ3pX4nP25RKpC4iMmCnMRsrZbIm1lWC7nHvaWsA&h=P18MEbUYmeg9gXHXMIfjYtPqPEepKvYNAsNc2XjBgcM response: body: string: '{"status":"Running"}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:22 GMT + - Thu, 10 Sep 2026 06:58:06 GMT expires: - '-1' pragma: @@ -318,7 +318,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 84C4F262FBB04449A43607982C1E6363 Ref B: BY1AA1072320023 Ref C: 2026-03-24T01:48:22Z' + - 'Ref A: E71E32F24B1D423996A16D3C5AD46CAD Ref B: SYD281080707023 Ref C: 2026-09-10T06:58:06Z' status: code: 200 message: OK @@ -337,9 +337,9 @@ interactions: - --resource-group --template-file --parameters --parameters --parameters --parameters --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584272900143609431?api-version=2025-04-01&t=639099136716008071&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CO2FM6YiwDBv7qEW_bZYUqdHLfh0dxRxI8_zViVAX3v43zZEuOlRl2XuYpioz37DcK7Xn1XjdP2witRrk1JtXEFlmnKsXde6mnVYBCOhS0JieDF7TcZd0MbmYbWIkJHXjVlFCKoMWnmGgHIXERCpzYbheoGcQaMA3w3JDuhguyL9XmDmDlcdEnTkuZF4zgfTKMrSsMeOQcoiBeYLeBejF2ol5RJx-u8oA1rCanjMIVrGcaTGeu-0JRFg1tgoV_QxpKh-NsvBGY0w_uc0paEhw54-sD18QpZ9m3Xq7n_lHxagINogkbxfT7ErMhk2G_qgUA-l5PsRCprJ5dwYUi7n-Q&h=eC14XZGZ95GFv1e5xw5PBxawdP6TyDJM8S2k7Az76VA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584125834355942596?api-version=2025-04-01&t=639246202547786314&c=MIIHwDCCBqigAwIBAgIRAOMNQF9fKgnMBmWT2zSqRoMwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDgxNDAwNTgzNloXDTI3MDIwOTA2NTgzNlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDD3ceSm9rwKlXIJDtd7E2GfmfDuHpnM25pBk1mC_BHD8w0eh_86HDPGn15irT5yBTwIz8Fb1FofcySZBb5QRrtz4nEKgyCwU9B5qAW_8RJzlugk3xLerkjHG2C4BAm59YruwtlOi67BUtUyxQ_fd2q3x1arJmV3KyeQd404po8wGAIljLbz_s0WRY8OvYsss6ENNbmLs6LuIkL1Tm5x9A60BCEhGqjZ-pwI40xJugAbyaWLsJGLMXhcafeFIAzo6zsy5g_NA4UPeb2-EiUDUztvkfCGt_KwVg7UvXVpg-k1Gb9ak6oVKWTwvjUcFhxaHHKa84WSIwmhYqQrv6xj6R5AgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSgdQzgjqxRIl_9jzMFuD4b2jVoJjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvOC9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzgvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS84L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABrYVQZ4I1hRNoRluTy54IdtVIpebQ1h0kRyuuk_P7mbw5E4_pVyLmCLbWcmCzkLjVkpOUi5--ovELvo0nLeCG7jg61H3D0InM0u1WcWFeK5iu3hcvy38XGZUxfrLMwVgQp4vlR3UeTzk63g5dLiQhPLB8Y3MC4DpPaQNN_ZfTv2z0FnriHDlZM89I9PXHWTRKdbduJ0cietbKvi73ZdHtUrTKgpzNjeRv1X6pTtsw1Q_84pl7MyOdQTBUvb5bElgHWcdOLSfNwlrklRndoDg5dMN5ttz6hso-U2QzIwN2HsdFPIwsI7yxOUk_wHs-UiadXcv_xF23odRohVU2t0pSk&s=amATR_j2TV5RpjMT-ZK7_d8zfiTyAkyRTUu8zUW2C7ZVozGm1AbA9rP60yHXRW3zifbHJRYWQVPgYZqCm_vaknh5GvEJu5yZfUnhdPpODRM3pKD3lh5F1XONTUc240_posq0SujlraHk9nqZSdKwSJn5qbKXxjiwWDfSvr7UVLGz5vDpzc_UQkMoRWDU103FQQWpFyx9Vl9cYELzNdH2yeMInGJhxr_qC6cRViO8Z9zmdcq7VSl277yUCSl-ZGg66l8nBdHlb0x5TeaeADCnuH4DTGw6T2H1UwsUliShbxw98edQ3pX4nP25RKpC4iMmCnMRsrZbIm1lWC7nHvaWsA&h=P18MEbUYmeg9gXHXMIfjYtPqPEepKvYNAsNc2XjBgcM response: body: string: '{"status":"Succeeded"}' @@ -351,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:51 GMT + - Thu, 10 Sep 2026 06:58:36 GMT expires: - '-1' pragma: @@ -365,7 +365,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DB57DFD2740C44A5BA819406690AC593 Ref B: BY1AA1072316062 Ref C: 2026-03-24T01:48:52Z' + - 'Ref A: 150DBDC4D70D46868C8A5A30291DBBCC Ref B: SYD281080712031 Ref C: 2026-09-10T06:58:37Z' status: code: 200 message: OK @@ -384,12 +384,12 @@ interactions: - --resource-group --template-file --parameters --parameters --parameters --parameters --parameters User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2025-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample","name":"taskrunquickbuildsample","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17630739476866960417","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"testTaskRun"},"sourceLocation":{"type":"String","value":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"dockerFilePath":{"type":"String","value":"Dockerfile"},"image":{"type":"String","value":"testtaskrun:v1"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-03-24T01:48:24.4702753Z","duration":"PT33.3538548S","correlationId":"f9e4f5cb-8389-46f3-b9d2-aa2ec46a7dd0","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"outputs":{"taskRunName":{"type":"String","value":"testTaskRun"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun","resourceType":"Microsoft.ContainerRegistry/registries/taskRuns"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/taskrunquickbuildsample","name":"taskrunquickbuildsample","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17630739476866960417","parameters":{"location":{"type":"String","value":"westus"},"registryName":{"type":"String","value":"clireg000002"},"taskRunName":{"type":"String","value":"testTaskRun"},"sourceLocation":{"type":"String","value":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"dockerFilePath":{"type":"String","value":"Dockerfile"},"image":{"type":"String","value":"testtaskrun:v1"}},"extensions":[],"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-09-10T06:58:06.7740277Z","duration":"PT36.9016645S","correlationId":"3d6d5560-1e99-4f52-8502-5da8d7651c27","providers":[{"namespace":"Microsoft.ContainerRegistry","resourceTypes":[{"resourceType":"registries/taskRuns","locations":["westus"]}]}],"dependencies":[],"outputs":{"taskRunName":{"type":"String","value":"testTaskRun"}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun","resourceType":"Microsoft.ContainerRegistry/registries/taskRuns"}]}}' headers: cache-control: - no-cache @@ -398,7 +398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:52 GMT + - Thu, 10 Sep 2026 06:58:37 GMT expires: - '-1' pragma: @@ -412,7 +412,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C113176EE54446AEBCB43D952E9A8FCB Ref B: SJC211051205051 Ref C: 2026-03-24T01:48:52Z' + - 'Ref A: 553B28D9CA2E4752B452F912F9F5B561 Ref B: SYD281080712060 Ref C: 2026-09-10T06:58:37Z' status: code: 200 message: OK @@ -430,23 +430,23 @@ interactions: ParameterSetName: - -r -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:47:42.6431769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:47:42.6431769+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:47:42.6431769Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166066+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:16.3426904+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:16.3426904+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:16.3426904Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:23.825968+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:23.8260095+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1642' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:52 GMT + - Thu, 10 Sep 2026 06:58:39 GMT expires: - '-1' pragma: @@ -460,7 +460,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8AF7BCA450CB4393A76B060EC4CB5BE1 Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:48:52Z' + - 'Ref A: 6D175E052CB54606A13FE77E8A834D9E Ref B: SYD281080712025 Ref C: 2026-09-10T06:58:38Z' status: code: 200 message: OK @@ -478,21 +478,21 @@ interactions: ParameterSetName: - -r -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns?api-version=2025-03-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/taskRuns","properties":{"provisioningState":"Succeeded","runRequest":{"type":"DockerBuildRequest","imageNames":["testtaskrun:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","platform":{"os":"linux","architecture":"amd64"},"sourceLocation":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"runResult":{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Succeeded","lastUpdatedTime":"2026-03-24T01:48:15+00:00","runType":"QuickRun","createTime":"2026-03-24T01:47:53.9483649+00:00","startTime":"2026-03-24T01:47:54.3007852+00:00","finishTime":"2026-03-24T01:48:15.838764+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtaskrun","tag":"v1","digest":"sha256:ee398978210358d39f298abfe9abb0d3ffbdc7ca727a74c95705bc0307f8d741"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1"}},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun","name":"testTaskRun","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:47:53.6362269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:47:53.6362269+00:00"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/taskRuns","properties":{"provisioningState":"Succeeded","runRequest":{"type":"DockerBuildRequest","imageNames":["testtaskrun:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","platform":{"os":"linux","architecture":"amd64"},"sourceLocation":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"runResult":{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:57:54+00:00","runType":"QuickRun","createTime":"2026-09-10T06:57:35.9569154+00:00","startTime":"2026-09-10T06:57:36.3424158+00:00","finishTime":"2026-09-10T06:57:54.4823969+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtaskrun","tag":"v1","digest":"sha256:669049e4fd9be1a9b9c95dcde1e8cf2e807136a783cd18b07854049ab09e45ac"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1"}},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun","name":"testTaskRun","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:35.811071+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:35.811071+00:00"}}]}' headers: cache-control: - no-cache content-length: - - '1657' + - '1656' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:52 GMT + - Thu, 10 Sep 2026 06:58:39 GMT expires: - '-1' pragma: @@ -504,11 +504,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ca0dce8b-8212-40f0-b78f-a7bbba0d71df + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/362eefc6-377a-4a94-bf31-846049610745 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7CC2ED0165E04A259E1ECDD2968F9791 Ref B: SJC211051201029 Ref C: 2026-03-24T01:48:52Z' + - 'Ref A: B10CA6CB29014B6CA8CBA5B5A8846D96 Ref B: SYD281080709034 Ref C: 2026-09-10T06:58:39Z' status: code: 200 message: OK @@ -526,23 +526,23 @@ interactions: ParameterSetName: - -r -n -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:47:42.6431769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:47:42.6431769+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:47:42.6431769Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166066+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:16.3426904+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:16.3426904+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:16.3426904Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:23.825968+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:23.8260095+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1642' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:53 GMT + - Thu, 10 Sep 2026 06:58:40 GMT expires: - '-1' pragma: @@ -556,7 +556,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8F4901CCAF2E4E87A5E1D997E7E31942 Ref B: SJC211051203027 Ref C: 2026-03-24T01:48:53Z' + - 'Ref A: 54AA575521F54AACA2437F5428B9FC21 Ref B: SYD281080709023 Ref C: 2026-09-10T06:58:40Z' status: code: 200 message: OK @@ -574,21 +574,21 @@ interactions: ParameterSetName: - -r -n -g User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun?api-version=2025-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/taskRuns","properties":{"provisioningState":"Succeeded","runRequest":{"type":"DockerBuildRequest","imageNames":["testtaskrun:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","platform":{"os":"linux","architecture":"amd64"},"sourceLocation":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"runResult":{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Succeeded","lastUpdatedTime":"2026-03-24T01:48:15+00:00","runType":"QuickRun","createTime":"2026-03-24T01:47:53.9483649+00:00","startTime":"2026-03-24T01:47:54.3007852+00:00","finishTime":"2026-03-24T01:48:15.838764+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtaskrun","tag":"v1","digest":"sha256:ee398978210358d39f298abfe9abb0d3ffbdc7ca727a74c95705bc0307f8d741"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1"}},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun","name":"testTaskRun","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:47:53.6362269+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:47:53.6362269+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/taskRuns","properties":{"provisioningState":"Succeeded","runRequest":{"type":"DockerBuildRequest","imageNames":["testtaskrun:v1"],"isPushEnabled":true,"noCache":false,"dockerFilePath":"Dockerfile","platform":{"os":"linux","architecture":"amd64"},"sourceLocation":"https://github.com/Azure-Samples/acr-build-helloworld-node.git"},"runResult":{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"cf1","status":"Succeeded","lastUpdatedTime":"2026-09-10T06:57:54+00:00","runType":"QuickRun","createTime":"2026-09-10T06:57:35.9569154+00:00","startTime":"2026-09-10T06:57:36.3424158+00:00","finishTime":"2026-09-10T06:57:54.4823969+00:00","outputImages":[{"registry":"clireg000002.azurecr.io","repository":"testtaskrun","tag":"v1","digest":"sha256:669049e4fd9be1a9b9c95dcde1e8cf2e807136a783cd18b07854049ab09e45ac"}],"platform":{"os":"linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/runs/cf1","name":"cf1"}},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun","name":"testTaskRun","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:35.811071+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:35.811071+00:00"}}' headers: cache-control: - no-cache content-length: - - '1645' + - '1644' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:53 GMT + - Thu, 10 Sep 2026 06:58:41 GMT expires: - '-1' pragma: @@ -600,11 +600,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ab117d6d-7496-4145-ac8c-64f2872bbecf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3428c711-262c-4f27-9631-1a8eaa477d11 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 84F023D587E64598AB12B4D93537E26A Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:48:53Z' + - 'Ref A: 8E3567C3EE9A424B912E95A07AFC9CF1 Ref B: SYD281080705036 Ref C: 2026-09-10T06:58:41Z' status: code: 200 message: OK @@ -622,23 +622,23 @@ interactions: ParameterSetName: - -r -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:47:42.6431769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:47:42.6431769+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:47:42.6431769Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166066+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:47:49.6166546+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:57:16.3426904+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:57:16.3426904+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:57:16.3426904Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:57:23.825968+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:57:23.8260095+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1611' + - '1642' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:48:52 GMT + - Thu, 10 Sep 2026 06:58:41 GMT expires: - '-1' pragma: @@ -652,7 +652,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7C07CA72B1914C96B34FBD21A011C6A1 Ref B: BY1AA1072319040 Ref C: 2026-03-24T01:48:53Z' + - 'Ref A: 455467F3ECC646F381C9B359105A5709 Ref B: SYD281080712029 Ref C: 2026-09-10T06:58:42Z' status: code: 200 message: OK @@ -672,7 +672,7 @@ interactions: ParameterSetName: - -r -n -g -y User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/taskRuns/testTaskRun?api-version=2025-03-01-preview response: @@ -684,7 +684,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:48:53 GMT + - Thu, 10 Sep 2026 06:58:43 GMT expires: - '-1' pragma: @@ -696,13 +696,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b1165771-bbca-427f-b9d6-b20c7e5b67f6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fab55c6a-0d9b-46f3-8a5b-65870fbb625e x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 237A8FA58BE1468AB9F29C8E433AA7AB Ref B: BY1AA1072318023 Ref C: 2026-03-24T01:48:53Z' + - 'Ref A: 2F3E461D91444ACC827D6D7813448D75 Ref B: SYD281080706029 Ref C: 2026-09-10T06:58:43Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_anonymous_pull.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_anonymous_pull.yaml index cd09ae1409e..601c746fae3 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_anonymous_pull.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_anonymous_pull.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - --name --resource-group --sku -l User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:45.6448954+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:45.6448954+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-03-24T01:31:45.6448954Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:31:53.3501905+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:31:53.3502346+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:09.3096884Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:16.445807+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:16.4458427+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1724' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:53 GMT + - Thu, 10 Sep 2026 06:47:16 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/036c840b-1f74-47b3-abc9-a01901bc943b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/8582a751-7715-4732-bb11-b730bf2be5ba x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 370B91874815454D9D168A100EA68AFA Ref B: BY1AA1072316023 Ref C: 2026-03-24T01:31:44Z' + - 'Ref A: A5E0423BF6B247ADABFD70436C9E1001 Ref B: SYD281080706023 Ref C: 2026-09-10T06:47:07Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:45.6448954+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:45.6448954+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-03-24T01:31:45.6448954Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:31:53.3501905+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:31:53.3502346+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:09.3096884Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:16.445807+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:16.4458427+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1724' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:53 GMT + - Thu, 10 Sep 2026 06:47:16 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B19E6D68FE3A47638C978E635B5B01C5 Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:31:53Z' + - 'Ref A: C6F13DD3B20343869E130E4B42DDD15E Ref B: SYD281080705062 Ref C: 2026-09-10T06:47:17Z' status: code: 200 message: OK @@ -122,25 +122,25 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:45.6448954+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:54.4950541+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-03-24T01:31:45.6448954Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:31:53.3501905+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:31:53.3502346+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":true,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:19.3494153+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:09.3096884Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:16.445807+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:16.4458427+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":true,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-3cfd8d6c-2721-11f1-b2fc-70a8a51b6037?api-version=2026-03-01-preview&t=639099127147913707&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=drhg9_eOXpWkAcCOtzVjJThbBXZ1jqpaue1EAgJESijc8LLWmGB5pbLe5iFTZr8MboromScQCpV8_bhUq9wyzhJs5BSWaMJ4aCct2_TbDI7Az9dtVAwKVRjRVcpH9bNojWsmicc2c5z4nAyiyzUBVYm9FlVbeap3b7JvR55lt-OoAZ0E51Nq8-cS0qbhoCrL5RLBzUeqgJ68iHVw2aJpunyi4xQvCYp-y_BNACZeSVSaZqDksMJyem16DtgYDpnfltm7UNDW-vam9ttjGtP-nQzFxJKeoBR20gS6px7wV8dICfE6wJjwczZHuvLXHuTvBtRCfJaNoK3RUlmT695VBA&h=VXnerdJfJeuWohNY31WjxjxhAEJZVCTXR7mRcdonC9g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-773a32ee-ace3-11f1-9d71-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196397243210&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=AZif8BuWuACnMm2vYgXHRNDUe-fR4PjdsDf_CjB7eaOwEIR7dc5jbO7WLAAOEC0vAqcgi9RnEiOBZcZtrbSzFN6sUkgdx0g1HEOVRpe_bNrlJkINw_pW2OD8vXLAKiBVtJvU2FYNsjBYrgzHXtxE1W2aobp3DecW8j6Y4hrr0JcI9ws52WeBHeN2MfEslzsp7n-nJdUKev54pjPEJJJsiCr1kCYIGj3fW7DWJSSEWXhGw3R8Tv9gNXobLbDDKn3ZrA1aAARDw6taaeol8Jrp84190Wl1ECaWTQy0SkHFXSbpwZbyGy1sAGo4BoV9k1SKLMV8B8Qdyzw9RPocazD4cw&h=o0lKfPHVtOuJlHTssveDZ9FVB-QmKn4WpiJBEL63ss0 cache-control: - no-cache content-length: - - '1666' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:54 GMT + - Thu, 10 Sep 2026 06:47:19 GMT expires: - '-1' pragma: @@ -152,13 +152,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/72b3bef2-10f7-4772-a701-a15ea9319114 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/d4f97630-a8d1-4e33-a688-9ceef4d074a5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6AF92D5A860B48D993AF8920F76603CA Ref B: SJC211051205033 Ref C: 2026-03-24T01:31:54Z' + - 'Ref A: 1C0DF4568EE0443FA9505949B04F0DD9 Ref B: SYD281080709054 Ref C: 2026-09-10T06:47:17Z' status: code: 201 message: Created @@ -176,17 +176,17 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-3cfd8d6c-2721-11f1-b2fc-70a8a51b6037?api-version=2026-03-01-preview&t=639099127147913707&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=drhg9_eOXpWkAcCOtzVjJThbBXZ1jqpaue1EAgJESijc8LLWmGB5pbLe5iFTZr8MboromScQCpV8_bhUq9wyzhJs5BSWaMJ4aCct2_TbDI7Az9dtVAwKVRjRVcpH9bNojWsmicc2c5z4nAyiyzUBVYm9FlVbeap3b7JvR55lt-OoAZ0E51Nq8-cS0qbhoCrL5RLBzUeqgJ68iHVw2aJpunyi4xQvCYp-y_BNACZeSVSaZqDksMJyem16DtgYDpnfltm7UNDW-vam9ttjGtP-nQzFxJKeoBR20gS6px7wV8dICfE6wJjwczZHuvLXHuTvBtRCfJaNoK3RUlmT695VBA&h=VXnerdJfJeuWohNY31WjxjxhAEJZVCTXR7mRcdonC9g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-773a32ee-ace3-11f1-9d71-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196397243210&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=AZif8BuWuACnMm2vYgXHRNDUe-fR4PjdsDf_CjB7eaOwEIR7dc5jbO7WLAAOEC0vAqcgi9RnEiOBZcZtrbSzFN6sUkgdx0g1HEOVRpe_bNrlJkINw_pW2OD8vXLAKiBVtJvU2FYNsjBYrgzHXtxE1W2aobp3DecW8j6Y4hrr0JcI9ws52WeBHeN2MfEslzsp7n-nJdUKev54pjPEJJJsiCr1kCYIGj3fW7DWJSSEWXhGw3R8Tv9gNXobLbDDKn3ZrA1aAARDw6taaeol8Jrp84190Wl1ECaWTQy0SkHFXSbpwZbyGy1sAGo4BoV9k1SKLMV8B8Qdyzw9RPocazD4cw&h=o0lKfPHVtOuJlHTssveDZ9FVB-QmKn4WpiJBEL63ss0 response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-3cfd8d6c-2721-11f1-b2fc-70a8a51b6037?api-version=2026-03-01-preview&t=639099127153863513&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=eQc_zxDwAE1kw7MJcfgAgGHfG9P6oBcaCQN3AH8vE948FKhMw--MESC91iMc3E0IWt1v25-Wzl3BMqlXZRySBh-XeXT5OWkfL07MzQyAAa3WCyBQPNkmjI16-WptCvgj6vI1Tsetdgt32zCzbzTQ9rtGddbvK7HXj6kswPqSy2vGJVozsKoa9HewPQyRwYtsZLiHx254QQQDGajy-deYuppV4G9EKLdNwUfVRsx7IxGma_rtDvMuGxo51-P981dAX_GIHi36rxnw-CO5oFAle2S35r6vBk7RBC-ZPW1wFD6XpLmAPvItaRkuvFg30_Fqfu59GNR9PN49iR-feDVmEQ&h=L3iYeoiD3LPReGviUsVWVkeUPmZeWazrVQ4wX6-Zvm4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-773a32ee-ace3-11f1-9d71-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196403711905&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=wP4jAN2o8QXu5mxQcQaM2OAg9rmikzj5ApThvuvNeaqxz6UHLu1FRvye9x6p_N5y-Owy5YzVZfQOlzUjrkLtor7p6INlH80L0_Vm8zPt3xBUNcv7S9ZqafDInzzOGup_jpFZkd536Cl8rLPgZrMbPo7dAfxyPFdQLCmSYV9JkE8GUmont_0Cfa98QhtbDBrX_mRf6lTO27AxfkXxDruc-FMDoIr6xf2xUMhuWKlAbmWQmh6zQd_-45YWBd2F_6Bl4FVUOFsRDGY2F-RfBNyYOqhKSTVJuqACjk0oEC0oTn71tvm2NCPDrWiVFEOW483QHvkrcmCAudA7Png4DagR6w&h=oOGEiiEHbp8HB4CoapK7W4nE9PATUtaCTdXckS0Y6Gg cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:55 GMT + - Thu, 10 Sep 2026 06:47:19 GMT expires: - '-1' pragma: @@ -206,11 +206,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5c6d0965-c6f2-4c14-92d0-d3b259155b83 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b9826c38-8e87-49b2-aa6f-b16989c5b5fa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 71FD4647097E437FB00A0F73899719F4 Ref B: BY1AA1072319052 Ref C: 2026-03-24T01:31:55Z' + - 'Ref A: B6A8563F4BFF48B090B6CF704DFF7B2F Ref B: SYD281080709062 Ref C: 2026-09-10T06:47:20Z' status: code: 200 message: OK @@ -228,23 +228,23 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:45.6448954+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:54.4950541+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-03-24T01:31:45.6448954Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:31:53.3501905+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:31:53.3502346+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":true,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:19.3494153+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:09.3096884Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:16.445807+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:16.4458427+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":true,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1667' + - '1723' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:55 GMT + - Thu, 10 Sep 2026 06:47:20 GMT expires: - '-1' pragma: @@ -256,9 +256,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 54F37A22C00B42EAABBBC0B28813DD7D Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:31:55Z' + - 'Ref A: 0394C16497B249E799F020A56D07B78B Ref B: SYD281080705060 Ref C: 2026-09-10T06:47:20Z' status: code: 200 message: OK @@ -276,23 +276,23 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:45.6448954+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:54.4950541+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-03-24T01:31:45.6448954Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:31:53.3501905+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:31:53.3502346+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":true,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:19.3494153+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:09.3096884Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:16.445807+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:16.4458427+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":true,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1667' + - '1723' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:55 GMT + - Thu, 10 Sep 2026 06:47:21 GMT expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1EEA8A33F87A437DA055C7E89701F645 Ref B: SJC211051204011 Ref C: 2026-03-24T01:31:55Z' + - 'Ref A: 54FC40AEBF0B44C89EB34F788F48FF77 Ref B: SYD281080709031 Ref C: 2026-09-10T06:47:21Z' status: code: 200 message: OK @@ -328,25 +328,25 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:45.6448954+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:56.5834723+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-03-24T01:31:45.6448954Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:31:53.3501905+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:31:53.3502346+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:23.6142287+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:09.3096884Z","provisioningState":"Updating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:16.445807+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:16.4458427+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-3e509b55-2721-11f1-a053-70a8a51b6037?api-version=2026-03-01-preview&t=639099127169584932&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CG2dd7k3egwwyrg5giMbGDSaXkjGV9orfkBuS6Xogzo89CAkrY14_7rXYSZiNaYXYVP4aI5AJeCSmWJFaiHZq3H5z6UxedbntW1AawdEizU1JRqXJLr__e4tqo7fnhT9ImyReX5uZ99bacuGvOl5bfbR1gfInGHAYoBbCv1g8ghuD6gAtFrKezRDo0YY7Mm9YIXYNlKxKAPpcmE4BtnXdKMXyLyr8PNiZNQFPheL6fUe26EkwAWEEatXz85gOj1WC7AE7zs4gehQ8j6TMvaUmxmVSBtghsl5_Y5ZAo_VdB_QgXegBS0HgBtTFfE7L53rZPylszpHuSnH0ELrh0x7Dw&h=JudadcXA6K6jQoHB-MuTmA26iq_ZQLwjB88cOhKr6QY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-79d261b0-ace3-11f1-88fc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196440517810&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=CBH9s5C3zhBH6lAPK_cgOy8GnKn05faF7A-gWE9NcG9CDSIp1iMxVg6FfV7xipDJQUPMu8J7RqOD7pxq5c8YG4qNcm4nRugOakKWpnMALawRIGqyJ6SslSxPlYwMZMLSK3YF8MKkmuuTfMltP14EdIcAZeHXan24qTnV4gL4abxQrfrWfL0-iNNZ3REjzi2lu9c26ihF0mnyfCCwiiS-S5EPWyqSotQKQNankaV8WPHCtVxvubwBAqT-eTXa_99RK26VqwQkA-P7DQM4c4DCvhluBoebe2Y6ut32pZkZW0_PpXVz3Qr1uD50WLbptHhR4rFgkvLABzjZ8bYwHqENpw&h=T1BvwT7bXfo1jAy0w2PQW63JbLVRuR6nhva1NRmiBno cache-control: - no-cache content-length: - - '1667' + - '1723' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:56 GMT + - Thu, 10 Sep 2026 06:47:23 GMT expires: - '-1' pragma: @@ -358,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6b1168b2-9623-4642-a3ff-57b893026a60 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e66fbe5a-2982-4bad-a075-2f8894a15410 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 93A338388D8B4AA8A6343EF524564E6B Ref B: BY1AA1072318042 Ref C: 2026-03-24T01:31:56Z' + - 'Ref A: 93A1CB5BE52A443FB2E3B4A7A5367CD2 Ref B: SYD281080712040 Ref C: 2026-09-10T06:47:22Z' status: code: 201 message: Created @@ -382,17 +382,17 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-3e509b55-2721-11f1-a053-70a8a51b6037?api-version=2026-03-01-preview&t=639099127169584932&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CG2dd7k3egwwyrg5giMbGDSaXkjGV9orfkBuS6Xogzo89CAkrY14_7rXYSZiNaYXYVP4aI5AJeCSmWJFaiHZq3H5z6UxedbntW1AawdEizU1JRqXJLr__e4tqo7fnhT9ImyReX5uZ99bacuGvOl5bfbR1gfInGHAYoBbCv1g8ghuD6gAtFrKezRDo0YY7Mm9YIXYNlKxKAPpcmE4BtnXdKMXyLyr8PNiZNQFPheL6fUe26EkwAWEEatXz85gOj1WC7AE7zs4gehQ8j6TMvaUmxmVSBtghsl5_Y5ZAo_VdB_QgXegBS0HgBtTFfE7L53rZPylszpHuSnH0ELrh0x7Dw&h=JudadcXA6K6jQoHB-MuTmA26iq_ZQLwjB88cOhKr6QY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-79d261b0-ace3-11f1-88fc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196440517810&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=CBH9s5C3zhBH6lAPK_cgOy8GnKn05faF7A-gWE9NcG9CDSIp1iMxVg6FfV7xipDJQUPMu8J7RqOD7pxq5c8YG4qNcm4nRugOakKWpnMALawRIGqyJ6SslSxPlYwMZMLSK3YF8MKkmuuTfMltP14EdIcAZeHXan24qTnV4gL4abxQrfrWfL0-iNNZ3REjzi2lu9c26ihF0mnyfCCwiiS-S5EPWyqSotQKQNankaV8WPHCtVxvubwBAqT-eTXa_99RK26VqwQkA-P7DQM4c4DCvhluBoebe2Y6ut32pZkZW0_PpXVz3Qr1uD50WLbptHhR4rFgkvLABzjZ8bYwHqENpw&h=T1BvwT7bXfo1jAy0w2PQW63JbLVRuR6nhva1NRmiBno response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-3e509b55-2721-11f1-a053-70a8a51b6037?api-version=2026-03-01-preview&t=639099127174583864&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=N1XO7bp7IVEB41rAKyFxKl6KXUJ1R8VGCC5n4smTn05D7hbqeOxR8_q54GKCsiYUpKCWxYu6DOOcEE3bgKNv2y4UguWKjWM32LsXgW1xYhgYqoY_GGqX70CiioDCrdW5SIqrZOIwBYJb7t_0WciR8efC5rDY1zWzTSdWZeb-lvNy87TzdLYmjJPqK-DH_QFnFXRhETjk10jLEwOEq1Dul-DSJX3hy8VUsng9g2g_mcbuiZr3dchNG5lDobesohEpTr5MoLlPvbIKm2LfymMlQVegddsN-ORGQf5VIuy1pgt4LIIqYnor1idg9le5lFjsWUTIA1QWdA3HATUivzz8SA&h=SnTUsuojzbSpfpnap9Tl2GvSgcnrNPMCrCQsnO4N5C0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-79d261b0-ace3-11f1-88fc-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196452804232&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=nYz0OF1PIN0rPlz3S7q5yFwe-70oz8GEo6cuKeswerTLnoNF3heAoqEQjJD6CkbHkX0G8FZn9gtuToa6CytDYFHPMJtkijHpe6CbqqmJ2quAXJ90K7xXMZNCdCuJPpEz-NQf6oSJNsBWNn-gIPpgsZ_OfO-3y8txsUw2VyW3HghR528JOVqC7i6taRb3_BY1PmaNRdTYO3G9nj6l2bkwe1G_zSsMIyaB--8qOgXqa62LKMsc7krQYH0S23DNZ92AHK0ByLVJrSg3sl93Myub9P-L1QNBGMnz40-Z4TaURqsHodSm93azhRSnmHk1c3DGYddxqVmoyWEL5fILs_GDpw&h=EeA_vrnRemR88BhsFE6rRWaRK8KSee7pB2vRNnoMH88 cache-control: - no-cache content-length: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:56 GMT + - Thu, 10 Sep 2026 06:47:24 GMT expires: - '-1' pragma: @@ -412,11 +412,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9169bc73-de68-46bb-9aed-471f3c3f7eb8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/042ecd73-f043-4fd4-ace1-b369615bd9a9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7BAE7F5D91EC4C83A6D4853AD844AD04 Ref B: BY1AA1072318029 Ref C: 2026-03-24T01:31:57Z' + - 'Ref A: 92BAAC3103484CB382AA87F072ABB8D8 Ref B: SYD281080708052 Ref C: 2026-09-10T06:47:24Z' status: code: 200 message: OK @@ -434,23 +434,23 @@ interactions: ParameterSetName: - --name --resource-group --anonymous-pull-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:45.6448954+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:56.5834723+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-03-24T01:31:45.6448954Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:31:53.3501905+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:31:53.3502346+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:23.6142287+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:09.3096884Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:16.445807+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:16.4458427+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1724' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:31:58 GMT + - Thu, 10 Sep 2026 06:47:26 GMT expires: - '-1' pragma: @@ -464,7 +464,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 651D5021AD694C928F6E2D5C43712BFA Ref B: BY1AA1072317054 Ref C: 2026-03-24T01:31:58Z' + - 'Ref A: 692F0E548DD144D087D83F060CE4CF3E Ref B: SYD281080706054 Ref C: 2026-09-10T06:47:25Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dedicated_data_endpoints.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dedicated_data_endpoints.yaml index f7f8e0934d8..9467274f6c1 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dedicated_data_endpoints.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dedicated_data_endpoints.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_dedicated_data_endpoints","date":"2026-04-03T02:29:42Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_dedicated_data_endpoints","date":"2026-09-10T06:47:28Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:29:49 GMT + - Thu, 10 Sep 2026 06:47:30 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4081F8F6526E4B4A8E7FC13F4467ABCD Ref B: BN1AA2051013051 Ref C: 2026-04-03T02:29:49Z' + - 'Ref A: F88DE9E42A2245C38C0641C92FFFBAE2 Ref B: SYD281080709062 Ref C: 2026-09-10T06:47:31Z' status: code: 200 message: OK @@ -64,23 +64,23 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:06 GMT + - Thu, 10 Sep 2026 06:47:40 GMT expires: - '-1' pragma: @@ -92,13 +92,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/479a84cb-cc08-4963-be5c-e7ee8906121f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/91b23a36-105a-4bd6-8b55-90e99e9af831 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: EB78AD4920304EE5A396FAFD71E5AB6D Ref B: BN1AA2051015011 Ref C: 2026-04-03T02:29:52Z' + - 'Ref A: D03C7CA2BF584F90B50763BCA4875D8E Ref B: SYD281080712034 Ref C: 2026-09-10T06:47:32Z' status: code: 200 message: OK @@ -116,23 +116,23 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:11 GMT + - Thu, 10 Sep 2026 06:47:41 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 158472F4007A4133B85AABB78B859554 Ref B: BN1AA2051015029 Ref C: 2026-04-03T02:30:12Z' + - 'Ref A: 588D1AE01AC74A758773DE805561375E Ref B: SYD281080706023 Ref C: 2026-09-10T06:47:41Z' status: code: 200 message: OK @@ -164,9 +164,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications?api-version=2026-09-01-preview response: body: string: '{"value":[]}' @@ -176,7 +176,7 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:17 GMT + - Thu, 10 Sep 2026 06:47:42 GMT expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7C2C730A6A0842CD81D221CE5B613A18 Ref B: BN1AA2051014027 Ref C: 2026-04-03T02:30:17Z' + - 'Ref A: 112E42EA2348421B9F218B964D9B3F4F Ref B: SYD281080711034 Ref C: 2026-09-10T06:47:42Z' status: code: 200 message: OK @@ -218,23 +218,23 @@ interactions: ParameterSetName: - --name --resource-group --data-endpoint-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:23 GMT + - Thu, 10 Sep 2026 06:47:43 GMT expires: - '-1' pragma: @@ -248,7 +248,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 98B04BABB706413B8ADCEE06D60A2220 Ref B: BN1AA2051013027 Ref C: 2026-04-03T02:30:24Z' + - 'Ref A: 697A3AC6E5A94708A5609BC8A9397538 Ref B: SYD281080711052 Ref C: 2026-09-10T06:47:43Z' status: code: 200 message: OK @@ -270,23 +270,23 @@ interactions: ParameterSetName: - --name --resource-group --data-endpoint-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:29.1128592+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:45.5468318+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1705' + - '1762' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:29 GMT + - Thu, 10 Sep 2026 06:47:46 GMT expires: - '-1' pragma: @@ -298,13 +298,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/124d406b-f4c2-4e19-83ea-55c120f79684 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/8abf1b66-3acc-4dee-9212-cd00c8a8519e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DDF36335118745C9922D0C73F77D1C36 Ref B: BN1AA2051014009 Ref C: 2026-04-03T02:30:28Z' + - 'Ref A: E5E75A63FD7143E9AD426D8C5C712435 Ref B: SYD281080707025 Ref C: 2026-09-10T06:47:44Z' status: code: 200 message: OK @@ -322,23 +322,23 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:29.1128592+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:45.5468318+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1705' + - '1762' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:34 GMT + - Thu, 10 Sep 2026 06:47:47 GMT expires: - '-1' pragma: @@ -352,7 +352,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5B9D053DD0944CB98DF86192F9AC084C Ref B: BN1AA2051014025 Ref C: 2026-04-03T02:30:35Z' + - 'Ref A: C1D54C3621374776A184A6D4855082EC Ref B: SYD281080712023 Ref C: 2026-09-10T06:47:47Z' status: code: 200 message: OK @@ -370,22 +370,21 @@ interactions: ParameterSetName: - -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7cpwkgfy74ickdpiwxsvajj3r6cccw73nv3srvjmbvv5rvg7qj7bjxivwcbnlobvw/providers/Microsoft.ContainerRegistry/registries/testregpljzmqoswasau","name":"testregpljzmqoswasau","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:24.7779677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:24.7779677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgismgwaz3gs4jh6k4p4nrfoqdqyrm3zk6chz2zbyua6h7wfnnbw32kynbs5jhzqa3d/providers/Microsoft.ContainerRegistry/registries/cliregya3dxyctjruw66","name":"cliregya3dxyctjruw66","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:34.5552822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.4610767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq57fdbkyd3fvbud7kwghd6ahpa6xiod5wolbj5baeofnucqwt2udef5jzleqpfttu/providers/Microsoft.ContainerRegistry/registries/cliregvemlzlnydppolo","name":"cliregvemlzlnydppolo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.1288554Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:14.3141906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgigxqzybakfitecm4uee5zxfl6aiqbsaev2t4w43j3wgeytmfbjhdxm4q4na5sln6p/providers/Microsoft.ContainerRegistry/registries/cliregkdfi3b3mocdi5e","name":"cliregkdfi3b3mocdi5e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:35.4959235Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:35.4959235Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3dncnjhkhalqjdkz4u6l34oh3tufzxghel4ub2ume252fdiqhp32dfhl3e6hpfwi/providers/Microsoft.ContainerRegistry/registries/cliregkuwv3js2njdms6","name":"cliregkuwv3js2njdms6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.0988194Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.0988194Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7rlirj3cki7dd5j6eg7d4dmztk3qg2m323w5rmhdnlwtucex7rogh3wkyblvptkko/providers/Microsoft.ContainerRegistry/registries/clireg4rlwtmb3wgpz55","name":"clireg4rlwtmb3wgpz55","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:41.1619116Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:41.1619116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgskx5xmllutzic3c4doeja6nunvjlw5ip5llji7yoyui2s2sdsjzqt7xc6x3ch37ds/providers/Microsoft.ContainerRegistry/registries/cliregx4qtlyoqdmn6sb","name":"cliregx4qtlyoqdmn6sb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:42.4933257Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:39.8504714Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoorwmpas4a5cj4mgixfpcwsepkvp5lzmocg5mdxehwfwf3e7mpv47z6vpad4nlskp/providers/Microsoft.ContainerRegistry/registries/testreghbgcvpcigbbt2uic6s","name":"testreghbgcvpcigbbt2uic6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.2701934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.2701934Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxwvyrtent72abwzwxrwncr35m2ohqfm7clis7n4vqspws3glosyc5nuljfsw7vamw/providers/Microsoft.ContainerRegistry/registries/cliregepl273n344ifcd","name":"cliregepl273n344ifcd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.5401873Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:35.0893447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq2a4j7wu6xkilhpjxuufph3nwbdm75g2ztiiw6k5jnbql3u3zh5yy5vqzh67o74jb/providers/Microsoft.ContainerRegistry/registries/cliregacdoolry56ojkb","name":"cliregacdoolry56ojkb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.829285Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:31.9091051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxojiwdbpeqmfztvfmshztwrf76fmfnjutlzt55bfw7lfgsy6t5bkycedcabzdw7a/providers/Microsoft.ContainerRegistry/registries/clireg47q3fu3ep2lkjv","name":"clireg47q3fu3ep2lkjv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:45.9354887Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:45.9354887Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:54.0604569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ContainerRegistry/registries/testreg5othfy4gymjfa","name":"testreg5othfy4gymjfa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgimdtacklic3ad6y62yiyffyniuvpknzpwr53kwm27gkpix5fcohwq2xvwpcsg55li/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityan6lro4w":{"principalId":"8256dcbb-d068-4766-9458-87f37b5182d1","clientId":"a0645f53-e8f0-49bb-b2e2-5b3b93207b15"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:08.072564Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:20.2725456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ci6thdyfzx5jmgomzk563nveudc6qxluzddy2lii76cvd7ar4ea3ddzrmvfpx3nl/providers/Microsoft.ContainerRegistry/registries/testrego6zdbxhmcxz3d","name":"testrego6zdbxhmcxz3d","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:09.3096884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:09.3096884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggfe3gimb7ftu6ac4ztmdvrhv3lj6ibzacyuaoyo7pdjw7mcvzwan3wtyudngaypdg/providers/Microsoft.ContainerRegistry/registries/cliregq5kxxin43axpvb","name":"cliregq5kxxin43axpvb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:17.6730049Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:17.6730049Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:33.9366936Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4gpu3iusdcke4sup5s4ij3h3iinzfa57ymb3x2vmtopjjhiisxrqe4rbmvxv5qui3/providers/Microsoft.ContainerRegistry/registries/clireggo2zf42uu7t7up","name":"clireggo2zf42uu7t7up","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:35.408725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:46.6843982Z"}}]}' headers: cache-control: - no-cache content-length: - - '11862' + - '5574' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:40 GMT + - Thu, 10 Sep 2026 06:47:47 GMT expires: - '-1' pragma: @@ -399,7 +398,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82EA164A7DB54A5C9BEB8F91D1563149 Ref B: BN1AA2051015025 Ref C: 2026-04-03T02:30:41Z' + - 'Ref A: 6280FFD5BC134ABDBD374E0755280F2D Ref B: SYD281080710034 Ref C: 2026-09-10T06:47:47Z' status: code: 200 message: OK @@ -417,23 +416,23 @@ interactions: ParameterSetName: - -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:29.1128592+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:45.5468318+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1705' + - '1762' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:46 GMT + - Thu, 10 Sep 2026 06:47:48 GMT expires: - '-1' pragma: @@ -447,7 +446,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 21F3BE82BF3F4590A56FCEE12C883C85 Ref B: BN1AA2051014049 Ref C: 2026-04-03T02:30:46Z' + - 'Ref A: A2FF04E6124B4CA496DC129BC91E35E2 Ref B: SYD281080708062 Ref C: 2026-09-10T06:47:48Z' status: code: 200 message: OK @@ -469,29 +468,30 @@ interactions: ParameterSetName: - -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus","name":"southcentralus","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:51.254206+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:51.254206+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-04-03T02:30:52.0885548Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus","name":"southcentralus","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:49.7114065+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:49.7114065+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-09-10T06:47:50.5485768Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-181ec6da-2f05-11f1-82fb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802524416815&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=SrS29P9GVineGqqA_uzFAy_-85KpKCYPlCpak-6YILf4vlgh1cl4ZgRx3O_o50bxAVeH21Ayv1EircDJI8mAfY2yRHqwDzpVIpGqFODEWMYN5VnuEngJFeMeYr4ObDWJ4nO35I_PmBvWhgXlmjwcZU85mPi_vkK20K5CSLLaFsPNjE7hm0u8sv9UzxUehhx8GzG0wYAjm_w55Q3Mm1ohURInJoOeI2whbTAjFq2G3_LuKFOh9Zr4NGxnUqc9Toum7ks2ewcG09DICN9pe3fqobwWxJhUOh5VtAt8TrWTFuhvsT-A9zHiTvB6YLUJXE8Qy0JGXSXAiCmAoVvBY0qN0Q&h=P6fcrfGQ3YmixMwaoHI9VA4CJ2X7HaUYrDF5totWNyo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-8988f3d6-ace3-11f1-93e7-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196707582187&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=oIHXrqa-Ycfi8zeyf9Pyd118b4i909o_sZMGTlFDmEn9x1WZBgVRYbKQ8HMIiGPyARdtVxeLM3vQrMrJP2aiNT18-zzLUC1kkAayugnL7fDegehjOWtCD5icgTbV9rIVdeaeR5yWunDnfymXf_btEPKtDx5OfdmCuyZzbUMuanky8mBiKLUGDDFaD-yja6puoTrEL0ChXXHD_ngIrfpirPhqUhEK5kA0x8DX1sBP7uK6NNdS6DKOnrPBKgYhhSN97hu92AQNfB4pKtMuB_R9a8Rgd86xmFmP2QwypS5i_5dxayYJM212M0yzhlFg1qqBt_OkxODjJDCi3vGOiZFDqA&h=IQZs6UFB2vATV5aEDD3JuteV6vPwx3kzk0Q8kzJfM1I cache-control: - no-cache content-length: - - '695' + - '697' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:52 GMT + - Thu, 10 Sep 2026 06:47:50 GMT expires: - '-1' pragma: @@ -503,13 +503,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/7d82bc83-687a-472a-87d8-d3188ce531a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/bc3a871d-3b9f-4c06-9f28-0f6eb2406ac4 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 714D2B124B454150A9EA969D2CF54981 Ref B: BN1AA2051012027 Ref C: 2026-04-03T02:30:50Z' + - 'Ref A: 4CEC0B1013DC43A88A366CE6F57F0944 Ref B: SYD281080707062 Ref C: 2026-09-10T06:47:49Z' status: code: 201 message: Created @@ -527,9 +527,9 @@ interactions: ParameterSetName: - -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-181ec6da-2f05-11f1-82fb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802524416815&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=SrS29P9GVineGqqA_uzFAy_-85KpKCYPlCpak-6YILf4vlgh1cl4ZgRx3O_o50bxAVeH21Ayv1EircDJI8mAfY2yRHqwDzpVIpGqFODEWMYN5VnuEngJFeMeYr4ObDWJ4nO35I_PmBvWhgXlmjwcZU85mPi_vkK20K5CSLLaFsPNjE7hm0u8sv9UzxUehhx8GzG0wYAjm_w55Q3Mm1ohURInJoOeI2whbTAjFq2G3_LuKFOh9Zr4NGxnUqc9Toum7ks2ewcG09DICN9pe3fqobwWxJhUOh5VtAt8TrWTFuhvsT-A9zHiTvB6YLUJXE8Qy0JGXSXAiCmAoVvBY0qN0Q&h=P6fcrfGQ3YmixMwaoHI9VA4CJ2X7HaUYrDF5totWNyo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-8988f3d6-ace3-11f1-93e7-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196707582187&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=oIHXrqa-Ycfi8zeyf9Pyd118b4i909o_sZMGTlFDmEn9x1WZBgVRYbKQ8HMIiGPyARdtVxeLM3vQrMrJP2aiNT18-zzLUC1kkAayugnL7fDegehjOWtCD5icgTbV9rIVdeaeR5yWunDnfymXf_btEPKtDx5OfdmCuyZzbUMuanky8mBiKLUGDDFaD-yja6puoTrEL0ChXXHD_ngIrfpirPhqUhEK5kA0x8DX1sBP7uK6NNdS6DKOnrPBKgYhhSN97hu92AQNfB4pKtMuB_R9a8Rgd86xmFmP2QwypS5i_5dxayYJM212M0yzhlFg1qqBt_OkxODjJDCi3vGOiZFDqA&h=IQZs6UFB2vATV5aEDD3JuteV6vPwx3kzk0Q8kzJfM1I response: body: string: '{"status":"Creating"}' @@ -539,9 +539,10 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-181ec6da-2f05-11f1-82fb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802581135972&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=fcVd6OFMJkR1agu5gz8W2vwmwt7gfu7PKocVJy5w0a8n7F9CzObyLZCHWJKE5197LuQ4NhZLtH9PWVHmBSyrEl7HRZjkmRFUuCFQ6-ETxo7Rq6vjMJHYaKXEUplOzKplX_uSuMFXAmcZZWgOfzPq5dV_lecU0hO-cit1I9heeL8V3qwR6YQWwZ-i2awM_Qho1C_2xoCcElxNLOo3NILREQb7Dqk_-wyBmEzOeIprEQznydF5s8A4krWYm61HY2qYv5_DOY0EUFoyxqNErqpj3Wpaf83mXTRqKhc8PbFs1xfhY9Nsv6LqpzsRVPZTJPjNNnIGJwDpP8Ls7JYmYJWL2A&h=BDkXD-29GhtZu2BiRHvoQJq8LfM477b45dlHD49vNTA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-8988f3d6-ace3-11f1-93e7-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196715459560&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=r-z_amMZVsSSKvDUN9RCGy3aVbQvfcOZmKuURllaZ8ZthtEI2tPp4oY4uQn4DWAvIMgjr5HWPWCkQU0DQgIHpGW3yLLRK4EPpPF2xDfQvV1uSeh0W1EW6C2c9_devTaCXXXvCgIwpiHldH3sCvEK70fnDZ5LDFu2KY3aKlUom92a58kLsGIJXmMqZuKM-207vE5_fY3gYCwbogvcYEI8NJE71nfrcImrsnqXYyf9nPT6hS8cVePcRsoDwRUsavJZ_A8M1fEYHNKOWjbWDDHdfFB4Kyi2SKQ_0Q6tB2zDMJ3IGacS4Nb4prBG31_uf5ak17Xfkbf776MIFuaBIByoZA&h=3tjEOxNeVI3BNJw50R_xl7YRHVURB0nTr7lQqXMTXYk cache-control: - no-cache content-length: @@ -549,7 +550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:30:57 GMT + - Thu, 10 Sep 2026 06:47:50 GMT expires: - '-1' pragma: @@ -561,11 +562,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c359d879-ed7a-4229-87ee-46731885d9df + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/35a23f23-ab19-41ea-ad43-9f75e8c948b9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 21A48E7BF6964FB3A587B065AB639E91 Ref B: BN1AA2051012019 Ref C: 2026-04-03T02:30:57Z' + - 'Ref A: 7D3E9A5DE0934D5D9FF2C9A49E736940 Ref B: SYD281080711036 Ref C: 2026-09-10T06:47:51Z' status: code: 200 message: OK @@ -583,9 +584,9 @@ interactions: ParameterSetName: - -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-181ec6da-2f05-11f1-82fb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802524416815&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=SrS29P9GVineGqqA_uzFAy_-85KpKCYPlCpak-6YILf4vlgh1cl4ZgRx3O_o50bxAVeH21Ayv1EircDJI8mAfY2yRHqwDzpVIpGqFODEWMYN5VnuEngJFeMeYr4ObDWJ4nO35I_PmBvWhgXlmjwcZU85mPi_vkK20K5CSLLaFsPNjE7hm0u8sv9UzxUehhx8GzG0wYAjm_w55Q3Mm1ohURInJoOeI2whbTAjFq2G3_LuKFOh9Zr4NGxnUqc9Toum7ks2ewcG09DICN9pe3fqobwWxJhUOh5VtAt8TrWTFuhvsT-A9zHiTvB6YLUJXE8Qy0JGXSXAiCmAoVvBY0qN0Q&h=P6fcrfGQ3YmixMwaoHI9VA4CJ2X7HaUYrDF5totWNyo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-8988f3d6-ace3-11f1-93e7-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196707582187&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=oIHXrqa-Ycfi8zeyf9Pyd118b4i909o_sZMGTlFDmEn9x1WZBgVRYbKQ8HMIiGPyARdtVxeLM3vQrMrJP2aiNT18-zzLUC1kkAayugnL7fDegehjOWtCD5icgTbV9rIVdeaeR5yWunDnfymXf_btEPKtDx5OfdmCuyZzbUMuanky8mBiKLUGDDFaD-yja6puoTrEL0ChXXHD_ngIrfpirPhqUhEK5kA0x8DX1sBP7uK6NNdS6DKOnrPBKgYhhSN97hu92AQNfB4pKtMuB_R9a8Rgd86xmFmP2QwypS5i_5dxayYJM212M0yzhlFg1qqBt_OkxODjJDCi3vGOiZFDqA&h=IQZs6UFB2vATV5aEDD3JuteV6vPwx3kzk0Q8kzJfM1I response: body: string: '{"status":"Succeeded"}' @@ -595,9 +596,10 @@ interactions: 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-181ec6da-2f05-11f1-82fb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107802738165195&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=X59dNer6G4w08NAc4N8LoLVeCVO-kTlXK--Bt-3O4F_-ujl4mjfRLExMb_fSr0NN0R4uwsFusEk2t2GYzlyti11kDRTrypTRzJMTuaiZazjVToeyAEP83c-E7J_CzUmOJVfpD--ZLZ7ol1601NNESx4wSfU6-WhIQxSj4TY51GD9yHfguNUBQhpGSMb5UxR_Hrum4FIDZGFOeO5_aDI06EetfSF4lUAOIWkY6Xx6B5ZbYYvBsCZDYt-d_WEoQjQrs82VVynBsMiyzAcvYn4TfvrejcNpj-tuEwZSLsZBSfp1UeNy8ajTcFGYNEFXRD3fjv9yeYs_OLykefbM1EH7JA&h=9hT4ZBs3DLMo2dhZ2E3M03ZF_ggGuvElN50pVbVM8XE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus/operationStatuses/replications-8988f3d6-ace3-11f1-93e7-3cefa50a58cc?api-version=2026-09-01-preview&t=639246196823774210&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=in2dpGNwHA7vxITFs-Z2KL1dU1Woa49XfWr0ZSaB1PxVLcjR5dZ7rPRZpDAgOxQKoulDDwDBgFfL6AP9mB5UFS724tLS_PCffJNiiccxw4EuZBPx_sPxu6Ew3QW8wftg6h29QQtY2TOTy_rQ2qohnhjeakXUYkgRNcODzL9K_u58cqfsHAtkv0TtOSkkbTx8LOK9CiQNvdQbEyTn5GlF68x3M2TIOA0Ta9JJr9MBKKHz2HtaE44wl3Dg_XVdUsj3Q7wjwiU7eWyN4upSQNFmNXbdon6knTf8aLKgUECXfuONAS1ImNU11yNBP5N0hn4AtupkBL65xjLMaiIJJ1h2pg&h=ZyYJa0D3l2WJWZiWXdMl15ZiTwEkMCrlPvWGWCG-7Gw cache-control: - no-cache content-length: @@ -605,7 +607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:13 GMT + - Thu, 10 Sep 2026 06:48:01 GMT expires: - '-1' pragma: @@ -617,11 +619,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/be08646d-38af-412f-9c1e-9f94f882d720 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/59824a52-85f8-4dd4-901c-1d284eda80e7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E4D1BA90972C4E55BE556627E21C1D0D Ref B: BN1AA2051014031 Ref C: 2026-04-03T02:31:13Z' + - 'Ref A: C3C12C3771C947E895943B9A845B156A Ref B: SYD281080709036 Ref C: 2026-09-10T06:48:02Z' status: code: 200 message: OK @@ -639,27 +641,28 @@ interactions: ParameterSetName: - -r -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus","name":"southcentralus","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:51.254206+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:51.254206+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-03T02:31:11.1042521Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus","name":"southcentralus","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:49.7114065+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:49.7114065+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Syncing","timestamp":"2026-09-10T06:47:58.5617876Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '720' + - '724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:18 GMT + - Thu, 10 Sep 2026 06:48:03 GMT expires: - '-1' pragma: @@ -673,7 +676,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4542F9F093A64FA1A47984D7F97F47C4 Ref B: BN1AA2051013051 Ref C: 2026-04-03T02:31:18Z' + - 'Ref A: CB9B79858128433490516E88656BB95E Ref B: SYD281080711031 Ref C: 2026-09-10T06:48:02Z' status: code: 200 message: OK @@ -691,23 +694,23 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:29.1128592+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.southcentralus.data.azurecr.io","testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:45.5468318+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.southcentralus.data.azurecr.io","testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1752' + - '1809' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:24 GMT + - Thu, 10 Sep 2026 06:48:03 GMT expires: - '-1' pragma: @@ -721,7 +724,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 109716B836A54D13B13928EB736F64B8 Ref B: BN1AA2051015047 Ref C: 2026-04-03T02:31:24Z' + - 'Ref A: D2D8A4B98A4141159A7C5620A026E2BE Ref B: SYD281080712040 Ref C: 2026-09-10T06:48:03Z' status: code: 200 message: OK @@ -739,23 +742,23 @@ interactions: ParameterSetName: - --name --resource-group --data-endpoint-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:29.1128592+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.southcentralus.data.azurecr.io","testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:45.5468318+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["testreg000002.southcentralus.data.azurecr.io","testreg000002.westus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1752' + - '1809' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:28 GMT + - Thu, 10 Sep 2026 06:48:03 GMT expires: - '-1' pragma: @@ -769,7 +772,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FB15E478566E4D96BB5A2A746A5AB0E4 Ref B: BN1AA2051013029 Ref C: 2026-04-03T02:31:28Z' + - 'Ref A: 241987F4E06448C9939628A1D4156CE5 Ref B: SYD281080705062 Ref C: 2026-09-10T06:48:04Z' status: code: 200 message: OK @@ -791,23 +794,23 @@ interactions: ParameterSetName: - --name --resource-group --data-endpoint-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:33.5676162+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:05.1237663+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:37 GMT + - Thu, 10 Sep 2026 06:48:06 GMT expires: - '-1' pragma: @@ -819,13 +822,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/92a9fbde-98a3-43e3-8437-58e324d0ade9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8349b8ba-a29c-486b-a653-0e2fc8ca72bc x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FAC460A5C1C44C6EAC84B02B6F3FA635 Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:31:33Z' + - 'Ref A: E5D5B6FA29DB40E89ABC6B68EECF711C Ref B: SYD281080706042 Ref C: 2026-09-10T06:48:04Z' status: code: 200 message: OK @@ -843,23 +846,23 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:54.0604569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:33.5676162+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:29:54.0604569Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:30:05.8804972+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:30:05.8805366+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:33.9366936+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:05.1237663+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:47:33.9366936Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051335+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:47:41.0051652+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:41 GMT + - Thu, 10 Sep 2026 06:48:06 GMT expires: - '-1' pragma: @@ -873,7 +876,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 64DACA688854406DB950ECB0AC3D2DEF Ref B: BN1AA2051015053 Ref C: 2026-04-03T02:31:41Z' + - 'Ref A: 72C9E9AE46914D8DB0D9BD16E63A6529 Ref B: SYD281080710034 Ref C: 2026-09-10T06:48:07Z' status: code: 200 message: OK @@ -891,27 +894,27 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus","name":"southcentralus","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:30:51.254206+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:30:51.254206+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-03T02:31:11.1042521Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}},{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/westus","name":"westus","location":"westus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2026-04-03T02:30:57.196862+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2026-04-03T02:30:57.196862+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-04-03T02:30:56.7784509Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/southcentralus","name":"southcentralus","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:47:49.7114065+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:47:49.7114065+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:48:08.0295461Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}},{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/westus","name":"westus","location":"westus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2026-09-10T06:47:53.8061943+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2026-09-10T06:47:53.8061943+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T06:47:53.5006847Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}]}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '1483' + - '1487' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:45 GMT + - Thu, 10 Sep 2026 06:48:08 GMT expires: - '-1' pragma: @@ -927,7 +930,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C1468EE445B34860A5FD320945E8902D Ref B: BN1AA2051015023 Ref C: 2026-04-03T02:31:46Z' + - 'Ref A: F7DF88A3BFB9493896A5B7EF5B941723 Ref B: SYD281080706025 Ref C: 2026-09-10T06:48:08Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dual_stack_endpoints.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dual_stack_endpoints.yaml new file mode 100644 index 00000000000..f4ea5d5d223 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_dual_stack_endpoints.yaml @@ -0,0 +1,164 @@ +interactions: +- request: + body: '{"location": "eastus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '93' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --sku -l + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:16.1242114+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:16.1242114+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:48:16.1242114Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:23.3026245+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:23.3026626+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:48:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/d8f0a480-915b-4763-a22d-124b0d812e3b + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-msedge-ref: + - 'Ref A: B6F589D084374C27BF0E7DA8059CE579 Ref B: SYD281080707031 Ref C: 2026-09-10T06:48:14Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --endpoint-protocol + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:16.1242114+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:16.1242114+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:48:16.1242114Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:23.3026245+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:23.3026626+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:48:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 189BF2CA12FD4796A5BAB3E229D56299 Ref B: SYD281080712060 Ref C: 2026-09-10T06:48:24Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"endpointProtocol": "IPv4AndIPv6"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr update + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --endpoint-protocol + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + response: + body: + string: '{"error":{"code":"BadRequest","message":"The requested feature dual + stack endpoints is not supported without data endpoint enabled."},"status":"Failed"}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '152' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:48:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0c45eb95-cd63-4a3e-8db9-2b4f3a361ccc + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: F40BED3A91C9492B90BD22C141322BDA Ref B: SYD281080707023 Ref C: 2026-09-10T06:48:26Z' + status: + code: 400 + message: Bad Request +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_private_endpoint.yaml index 81cd09478e0..271642500db 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_private_endpoint.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-04-03T02:33:56Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-09-10T06:48:30Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:11 GMT + - Thu, 10 Sep 2026 06:48:33 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 370FC4DFC93F4C2BBC32DBD3C1E97BDA Ref B: BN1AA2051014027 Ref C: 2026-04-03T02:34:11Z' + - 'Ref A: 666320058D614ED3AB7B17357E6FFAEA Ref B: SYD281080708040 Ref C: 2026-09-10T06:48:33Z' status: code: 200 message: OK @@ -65,25 +65,25 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003?api-version=2025-07-01 response: body: - string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"4a023f0e-0011-485f-be87-300f3392907c\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","properties":{"provisioningState":"Updating","resourceGuid":"47a170da-129e-4a6e-83f3-67323943d6f6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"4a023f0e-0011-485f-be87-300f3392907c\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"2680827b-36ae-419e-abf8-c0663f18261e\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","properties":{"provisioningState":"Updating","resourceGuid":"217e1e85-eb63-4308-ac48-a9393f6af2f3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"2680827b-36ae-419e-abf8-c0663f18261e\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5445f5f3-254b-4ec3-9829-ef95c5b6fa67?api-version=2024-07-01&t=639107804532797011&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=DOpwXvzGdNNi23xK1Palxv8gM_fu86G5C_P4uk8zCJV8TKiqpCou2thelm3AlOF-tdP5-aXKFWgzEaWiWntawPdk781WvKUZQRJyx0YpSPs09NCP5ZiofGNJ4htyaSzNpYtbtFMeQX2Uzxoq5muAFijtLiYVU9p0ygJn1MOLdB6RxjCuw6eYd8kp4ILqBsyGZDae4vcnXBPbLy6WAKbwbnSHQ_fjQhDcR-HRpW6v9bjyNNl77rH3-kJbvDoy0H-Bq_7Z0anyADBwYFNU7dEt0Kyjhp16YR5EEcXDODlyPCwovIJHyBX0SonKVPsou3OMEkBVf5teL2rj1cV-LWOZAw&h=FCrdg2y4M11FwtMm-LzTd21x3o40F0SIXmVd18uaHto + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/27ee88aa-7965-4bcc-886d-2d69203722df?api-version=2025-07-01&t=639246197145380078&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=p_TNDUq7atZztmAdCk8654R803F4OJ8x61ZvqQ3cUv1HYUus7SR6Rye_upd15mx5DA11O41Aj-MkyBGW11Eprb7brNWkB84bMjDQgJb1RdTEsyohL74MmQJFw29JQISq_AiMf9eomAJFcOV8lBIW75mtLM-ZVGB7iHvrm8s08UPWEaFZ1sjlPPm1LQ-ixsa-6zhfUvFXZvjWle6I3mD414uNhl46CuMENCXVDzDK7gzvOCLiVUJPp-EfAP6dG9HdD-YCoW5fAEWd8uY2KU8P84NLFOWvHTyNv9N51OaTOgvk9Xkss9BdM9K-KWUQRlon02Vg2RrVKd9v0yQMm7qaLg&h=CjIWbfO8ZmCvDqiRlDLHSnyqqw-LZNnX4KHMhAk6fSg cache-control: - no-cache content-length: - - '1041' + - '1071' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:13 GMT + - Thu, 10 Sep 2026 06:48:34 GMT expires: - '-1' pragma: @@ -95,18 +95,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f4bfb9f-3c07-441d-9890-eaff95797e46 + - 247372c0-e7c9-45a5-b96f-1c8bf5bf28ce x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/8f695586-e9f3-4b94-ab60-e6aee1e74767 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/9eb2ffb7-7be7-45a7-8aa3-52720e7fb15a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: EA43AF0526D047FF823DEDE79BC8ECA2 Ref B: BN1AA2051013011 Ref C: 2026-04-03T02:34:12Z' + - 'Ref A: A7FDDDB6191A404AA4206047E226D5B0 Ref B: SYD281080705023 Ref C: 2026-09-10T06:48:34Z' status: code: 201 - message: Created + message: '' - request: body: null headers: @@ -121,9 +124,61 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5445f5f3-254b-4ec3-9829-ef95c5b6fa67?api-version=2024-07-01&t=639107804532797011&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=DOpwXvzGdNNi23xK1Palxv8gM_fu86G5C_P4uk8zCJV8TKiqpCou2thelm3AlOF-tdP5-aXKFWgzEaWiWntawPdk781WvKUZQRJyx0YpSPs09NCP5ZiofGNJ4htyaSzNpYtbtFMeQX2Uzxoq5muAFijtLiYVU9p0ygJn1MOLdB6RxjCuw6eYd8kp4ILqBsyGZDae4vcnXBPbLy6WAKbwbnSHQ_fjQhDcR-HRpW6v9bjyNNl77rH3-kJbvDoy0H-Bq_7Z0anyADBwYFNU7dEt0Kyjhp16YR5EEcXDODlyPCwovIJHyBX0SonKVPsou3OMEkBVf5teL2rj1cV-LWOZAw&h=FCrdg2y4M11FwtMm-LzTd21x3o40F0SIXmVd18uaHto + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/27ee88aa-7965-4bcc-886d-2d69203722df?api-version=2025-07-01&t=639246197145380078&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=p_TNDUq7atZztmAdCk8654R803F4OJ8x61ZvqQ3cUv1HYUus7SR6Rye_upd15mx5DA11O41Aj-MkyBGW11Eprb7brNWkB84bMjDQgJb1RdTEsyohL74MmQJFw29JQISq_AiMf9eomAJFcOV8lBIW75mtLM-ZVGB7iHvrm8s08UPWEaFZ1sjlPPm1LQ-ixsa-6zhfUvFXZvjWle6I3mD414uNhl46CuMENCXVDzDK7gzvOCLiVUJPp-EfAP6dG9HdD-YCoW5fAEWd8uY2KU8P84NLFOWvHTyNv9N51OaTOgvk9Xkss9BdM9K-KWUQRlon02Vg2RrVKd9v0yQMm7qaLg&h=CjIWbfO8ZmCvDqiRlDLHSnyqqw-LZNnX4KHMhAk6fSg + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:48:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - eec7efa0-d36c-473c-aa4c-5ef6daad9194 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4feda846-21ae-486a-a1de-55a342eb6f66 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc + x-msedge-ref: + - 'Ref A: 7D070845348540718FEFDCFB5B983EBC Ref B: SYD281080707023 Ref C: 2026-09-10T06:48:35Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --subnet-name + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/27ee88aa-7965-4bcc-886d-2d69203722df?api-version=2025-07-01&t=639246197145380078&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=p_TNDUq7atZztmAdCk8654R803F4OJ8x61ZvqQ3cUv1HYUus7SR6Rye_upd15mx5DA11O41Aj-MkyBGW11Eprb7brNWkB84bMjDQgJb1RdTEsyohL74MmQJFw29JQISq_AiMf9eomAJFcOV8lBIW75mtLM-ZVGB7iHvrm8s08UPWEaFZ1sjlPPm1LQ-ixsa-6zhfUvFXZvjWle6I3mD414uNhl46CuMENCXVDzDK7gzvOCLiVUJPp-EfAP6dG9HdD-YCoW5fAEWd8uY2KU8P84NLFOWvHTyNv9N51OaTOgvk9Xkss9BdM9K-KWUQRlon02Vg2RrVKd9v0yQMm7qaLg&h=CjIWbfO8ZmCvDqiRlDLHSnyqqw-LZNnX4KHMhAk6fSg response: body: string: '{"status":"Succeeded"}' @@ -135,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:14 GMT + - Thu, 10 Sep 2026 06:48:46 GMT expires: - '-1' pragma: @@ -147,16 +202,19 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c75d167e-62c2-498e-b5d5-ca327eb69382 + - cb616856-ee12-4ca7-8ea5-6613f8b43e89 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e1ba943a-35ad-4a34-8645-235fb48b7e1a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/7760943b-e676-409c-be4d-c45e182d2859 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: 50971080834040EC853F1E248F261EF4 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:34:15Z' + - 'Ref A: 3F968F92C5A54F33900D2F3811A1DC32 Ref B: SYD281080707052 Ref C: 2026-09-10T06:48:46Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -171,23 +229,21 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003?api-version=2025-07-01 response: body: - string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"bdd98156-d9cf-41bb-9353-b2e5d74bbbe7\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","properties":{"provisioningState":"Succeeded","resourceGuid":"47a170da-129e-4a6e-83f3-67323943d6f6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"bdd98156-d9cf-41bb-9353-b2e5d74bbbe7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"922f42a1-38f9-4d6b-b65e-98d38f3de0e7\"","type":"Microsoft.Network/virtualNetworks","location":"eastus2","properties":{"provisioningState":"Succeeded","resourceGuid":"217e1e85-eb63-4308-ac48-a9393f6af2f3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"922f42a1-38f9-4d6b-b65e-98d38f3de0e7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1043' + - '1073' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:15 GMT - etag: - - W/"bdd98156-d9cf-41bb-9353-b2e5d74bbbe7" + - Thu, 10 Sep 2026 06:48:47 GMT expires: - '-1' pragma: @@ -199,14 +255,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ddaa7e58-55f6-4c2f-b6ee-aacdf38f942b + - a2d8af2f-6256-4e02-92bc-a3e02c4c6852 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.4, operationConcurrencyPct=2.0, subscriptionReadRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: E5983DB88F2945338CAD09193E023206 Ref B: BN1AA2051012023 Ref C: 2026-04-03T02:34:16Z' + - 'Ref A: 4B38589156C3422CA71745B59D7DB995 Ref B: SYD281080711025 Ref C: 2026-09-10T06:48:46Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -221,23 +280,23 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"bdd98156-d9cf-41bb-9353-b2e5d74bbbe7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"922f42a1-38f9-4d6b-b65e-98d38f3de0e7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '489' + - '519' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:17 GMT + - Thu, 10 Sep 2026 06:48:48 GMT etag: - - W/"bdd98156-d9cf-41bb-9353-b2e5d74bbbe7" + - W/"922f42a1-38f9-4d6b-b65e-98d38f3de0e7" expires: - '-1' pragma: @@ -249,20 +308,22 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65c5831a-923c-47cf-932d-d427ec4a7f89 + - fe6752a3-5213-41b6-a5b4-69250a1bf7c3 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/691b0938-925b-42d2-9d13-668fd58485eb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/27f9c9c2-7aab-4ba5-9f57-94eaf3a2c216 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 9C168E3C733C4419869477BC05BE6119 Ref B: BN1AA2051012025 Ref C: 2026-04-03T02:34:18Z' + - 'Ref A: E3F78E5C6E5B4A6CA7FD80504231D761 Ref B: SYD281080712052 Ref C: 2026-09-10T06:48:48Z' status: code: 200 - message: OK + message: '' - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004", - "name": "testsubnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": - [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": + "name": "testsubnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": + false, "delegations": [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' headers: Accept: @@ -274,31 +335,31 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '451' Content-Type: - application/json ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"d174c20c-f3d5-4837-8146-286e23489ef6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"bda7aafb-e607-4db4-a06c-a040eaf9bfdc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/92364680-92b3-4be7-accf-fb5d04dacaf5?api-version=2024-07-01&t=639107804597979267&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=oJYSMMvCKrnK4xaZX9ap4AiSDsFCFl34lo3oqVQlmly14Jktd2f7sbhpibxS_ZYFliKim0RPaBaJxA8dBnf7cquJNAhNdqpxy6lXsDvwrfBzzY4oZzrw7Qd-ySwbrf3ag6WjftVdNXkgbHAAXOpAwbWNwEPhaOjzRhfNtTgIvhzZNUVp2MNJ0EOUOXGFU4O4N7E4hJ3x4TriQ30jALYSbiYYCSwWMnN1jK6UwJDpzqixV7d3zZEJI-O59943PiZUO3zLS1dWVO0R_wSHlY7KkB-SdMs8cM2f7IpOLbWL_fQUkLqjTKdcKAttHrKZ9w7PykgkU_9jByASpR7b24SCow&h=08zx5aNJ76kzMXzVCA9sHz9h-VJ3f3qxJWT5sxIud_Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/63734cda-471c-40fa-a4dd-c6c906899080?api-version=2024-07-01&t=639246197294555642&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=csG2wdPR-gchadzqrDT7frxT9P68ASaKSSYF3nuEXqpbrV6o103SjuAznQO-zAbosYrRDVtgRb966UFs9muTg8osDtkxxJSfACuzym_yyk_x-4KBL_1vQYbgIusvyeHdnTQRxT4CbQtOdwYzuDXSY5YRHNH2EViG7h9e6XqEZeWKNQTcozaDhNg95HNmuwWy6g4WpNfDwLRjyEQeeg0FHYKPsS0lcEyWsNzOJpJbdwAIOzpIpXhErX8A6sfwsEMR20QWwSQQQ6rR3JCJqJdPKJOSKDrPR95DB6xA94FOq6P1vglm_Rg87l8U9CbAPvQcsHVRCZfkQPLJ1QSWkCnmiA&h=iISWMN2Zii5RFmfc0G-yGkFfUIkWOLBXBtqtEb3YW2I cache-control: - no-cache content-length: - - '489' + - '519' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:19 GMT + - Thu, 10 Sep 2026 06:48:49 GMT expires: - '-1' pragma: @@ -310,18 +371,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c6ee257a-f1eb-46c8-a863-d804bf988c75 + - 5ed6705b-96e7-4394-b147-60de6abb9095 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/bf537520-3e92-45ce-8eb8-76a393dc3096 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/ba86da1b-a3f4-4281-991a-da485a134e8a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: A90CF0831F4549B39330E43244CB9110 Ref B: BN1AA2051013053 Ref C: 2026-04-03T02:34:19Z' + - 'Ref A: 7DBA005252DF455DAB572E530DF119DB Ref B: SYD281080712054 Ref C: 2026-09-10T06:48:49Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -336,9 +400,9 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/92364680-92b3-4be7-accf-fb5d04dacaf5?api-version=2024-07-01&t=639107804597979267&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=oJYSMMvCKrnK4xaZX9ap4AiSDsFCFl34lo3oqVQlmly14Jktd2f7sbhpibxS_ZYFliKim0RPaBaJxA8dBnf7cquJNAhNdqpxy6lXsDvwrfBzzY4oZzrw7Qd-ySwbrf3ag6WjftVdNXkgbHAAXOpAwbWNwEPhaOjzRhfNtTgIvhzZNUVp2MNJ0EOUOXGFU4O4N7E4hJ3x4TriQ30jALYSbiYYCSwWMnN1jK6UwJDpzqixV7d3zZEJI-O59943PiZUO3zLS1dWVO0R_wSHlY7KkB-SdMs8cM2f7IpOLbWL_fQUkLqjTKdcKAttHrKZ9w7PykgkU_9jByASpR7b24SCow&h=08zx5aNJ76kzMXzVCA9sHz9h-VJ3f3qxJWT5sxIud_Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/63734cda-471c-40fa-a4dd-c6c906899080?api-version=2024-07-01&t=639246197294555642&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=csG2wdPR-gchadzqrDT7frxT9P68ASaKSSYF3nuEXqpbrV6o103SjuAznQO-zAbosYrRDVtgRb966UFs9muTg8osDtkxxJSfACuzym_yyk_x-4KBL_1vQYbgIusvyeHdnTQRxT4CbQtOdwYzuDXSY5YRHNH2EViG7h9e6XqEZeWKNQTcozaDhNg95HNmuwWy6g4WpNfDwLRjyEQeeg0FHYKPsS0lcEyWsNzOJpJbdwAIOzpIpXhErX8A6sfwsEMR20QWwSQQQ6rR3JCJqJdPKJOSKDrPR95DB6xA94FOq6P1vglm_Rg87l8U9CbAPvQcsHVRCZfkQPLJ1QSWkCnmiA&h=iISWMN2Zii5RFmfc0G-yGkFfUIkWOLBXBtqtEb3YW2I response: body: string: '{"status":"Succeeded"}' @@ -350,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:21 GMT + - Thu, 10 Sep 2026 06:48:50 GMT expires: - '-1' pragma: @@ -362,13 +426,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ead4445c-59a3-46b2-aabf-d23583b28251 + - 52a121ce-0d88-44c5-9821-60000661d5b9 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/47968e05-8072-4ac1-80e6-0e5bae25e235 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/9f91b6ff-d7d9-4f84-a629-83048c22bf14 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.2, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: 0058D1BF1BFE45B49721300556ACE999 Ref B: BN1AA2051015023 Ref C: 2026-04-03T02:34:21Z' + - 'Ref A: 81BA17B177EE421E87D150384748B70D Ref B: SYD281080712040 Ref C: 2026-09-10T06:48:50Z' status: code: 200 message: OK @@ -386,23 +453,23 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"d174c20c-f3d5-4837-8146-286e23489ef6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"bda7aafb-e607-4db4-a06c-a040eaf9bfdc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '489' + - '519' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:22 GMT + - Thu, 10 Sep 2026 06:48:51 GMT etag: - - W/"d174c20c-f3d5-4837-8146-286e23489ef6" + - W/"bda7aafb-e607-4db4-a06c-a040eaf9bfdc" expires: - '-1' pragma: @@ -414,16 +481,19 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c2e9a18-79d6-4706-99c8-c06525aa03be + - f42e2111-4c3e-487f-b3c9-1e17bad23ef6 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1e0c90c0-ee9b-420d-952d-d07ef91eb6b9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/a2aea0db-9909-4704-bfda-393b2ca5d246 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: 58A3BF230DFB4EC5B4D4554332DEF83C Ref B: BN1AA2051013029 Ref C: 2026-04-03T02:34:22Z' + - 'Ref A: D594F845CF9A4B719ED3B8FD457E3463 Ref B: SYD281080710052 Ref C: 2026-09-10T06:48:51Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -438,12 +508,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-04-03T02:33:56Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-09-10T06:48:30Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -452,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:24 GMT + - Thu, 10 Sep 2026 06:48:51 GMT expires: - '-1' pragma: @@ -464,9 +534,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 30CA61BBC4654B6595C8697AE391D6E9 Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:34:25Z' + - 'Ref A: 70C2F97E268F4CDB877D21316503B4EF Ref B: SYD281080706025 Ref C: 2026-09-10T06:48:52Z' status: code: 200 message: OK @@ -489,23 +559,23 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:34:28.0262647+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:34:28.0262647+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:34:28.0262647Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:34:36.3798701+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:34:36.3799315+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:48:53.0412792+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:48:53.0412792+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:48:53.0412792Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:48:59.4344565+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:48:59.4345027+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1669' + - '1726' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:36 GMT + - Thu, 10 Sep 2026 06:48:58 GMT expires: - '-1' pragma: @@ -517,13 +587,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/f4276e2f-a759-4e7e-b83e-96cf2f388ca7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/fab5a438-d386-425a-8c77-59e794fd32ab x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: 14BE4D1020184E0D9C41EF421C24C070 Ref B: BN1AA2051014029 Ref C: 2026-04-03T02:34:27Z' + - 'Ref A: 940EECA202F642C98872D50E63DA8470 Ref B: SYD281080705029 Ref C: 2026-09-10T06:48:52Z' status: code: 200 message: OK @@ -542,12 +612,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-04-03T02:33:56Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-09-10T06:48:30Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -556,7 +626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:37 GMT + - Thu, 10 Sep 2026 06:48:59 GMT expires: - '-1' pragma: @@ -570,7 +640,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73FEC1D9826246139136463C3247C68B Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:34:37Z' + - 'Ref A: 7C241317002E4D9DB68005B9B4FAC4F4 Ref B: SYD281080712034 Ref C: 2026-09-10T06:49:00Z' status: code: 200 message: OK @@ -596,18 +666,18 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"9ebc6fa1-7ab6-4b24-8e7a-1aec1d03b385\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Updating","resourceGuid":"d0a19229-3089-4655-b1b8-e3ffc110aacb","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"9ebc6fa1-7ab6-4b24-8e7a-1aec1d03b385\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting - Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.10884058-9428-4847-91e6-69e9dceb3038"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"275ec12d-f313-4fbf-9e7e-de8c47d20359\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Updating","resourceGuid":"2b014bdd-87fd-41dd-a171-5b3dc76fb846","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"275ec12d-f313-4fbf-9e7e-de8c47d20359\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.234b3e02-a772-4c8f-b114-409cf727561e"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/ba1d73f2-ff7d-4cb7-8581-945a286c1257?api-version=2025-05-01&t=639107804795517656&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=uM8mg7_PMG01HSgFCUkgiBuGowAgwd2BdX4z7KjUQz74lMO6zXJv2dnakmWzaTtTUuVAbYpIEb5diRKfjiKQY0mm1wjHqYd1YsBSIlgn2Oq9AGwWjaFU7LqiuxlxN53BD70vQaVIu89BoTlDpK2-Xouhq0BjtNFrp0M5-9Yri95pewR2iHJCthCv1Q-fL5lp-Sil3WvvYTxEAEilWW0u8p59_ldZNzPz8RHluL9T8Q7g6wQxqY2d_fEntDjj79Sz4WomhQcgT2kgih7s24Gvu7ZjSj8faS2pbaBTgv6IuGxND_qwplCRWFUa216ipID_XfPHw6C1M-S9Rt9tOc47gw&h=a-EfOCLUQqoWxmtHHXTuOBCJgEmy3Mc_uZsn03qeVNY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/56687095-8a0b-48b3-97ed-673018e2dc32?api-version=2025-05-01&t=639246197414800555&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LNLfgAEPc6wrwI-XdOcOzy6CmqMpaGAq1yagboO4Qy79is0sRJpaNpN_UdvxG8vf1zX58lpQJypj17nIxuTY78F6e33bsV6kU3JZZhzl1C8n-n94eUGgem4m6oojYbC96nsnMtelvvL2cS5U1rNm3AV3RibKFUFQVh3mvk11kIrjMWisGY1qZCz_sAo1tyDjTw4ZIbMm7t6m1enbBDEpdY5c5mWxUj9TOwXRsCtP0r8el93IkMx0oJDBHS6gJq6HGE08QZOz5kGZxuVo0AEGQjXNV1REY7_IMHQ3oTfgsktGRIBS-9vskEkCT5I0swOFzdXxx3vY_nF7fsoEaoPSzA&h=6gcgb2S4gtvmF93RJ7ESM9cvuDqTmBrzAwo9Osb70_k cache-control: - no-cache content-length: @@ -615,7 +685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:39 GMT + - Thu, 10 Sep 2026 06:49:01 GMT expires: - '-1' pragma: @@ -627,18 +697,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6341ae19-bdee-4f0b-9ddb-ee8f915256eb + - b693fae7-6150-4fce-9a5c-cb293b8a1014 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/845c69bc-87a2-49cd-b556-1a99faaad715 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/d424f54a-af68-43d7-80d6-2dd6c4a7c8e5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.3, + etc x-msedge-ref: - - 'Ref A: 576A9B2CD642489299A160752617A60F Ref B: BN1AA2051015023 Ref C: 2026-04-03T02:34:39Z' + - 'Ref A: B43CDE9AC5F24A4C9EDC9BD0625CE1E2 Ref B: SYD281080712052 Ref C: 2026-09-10T06:49:00Z' status: code: 201 - message: Created + message: '' - request: body: null headers: @@ -654,9 +727,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/ba1d73f2-ff7d-4cb7-8581-945a286c1257?api-version=2025-05-01&t=639107804795517656&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=uM8mg7_PMG01HSgFCUkgiBuGowAgwd2BdX4z7KjUQz74lMO6zXJv2dnakmWzaTtTUuVAbYpIEb5diRKfjiKQY0mm1wjHqYd1YsBSIlgn2Oq9AGwWjaFU7LqiuxlxN53BD70vQaVIu89BoTlDpK2-Xouhq0BjtNFrp0M5-9Yri95pewR2iHJCthCv1Q-fL5lp-Sil3WvvYTxEAEilWW0u8p59_ldZNzPz8RHluL9T8Q7g6wQxqY2d_fEntDjj79Sz4WomhQcgT2kgih7s24Gvu7ZjSj8faS2pbaBTgv6IuGxND_qwplCRWFUa216ipID_XfPHw6C1M-S9Rt9tOc47gw&h=a-EfOCLUQqoWxmtHHXTuOBCJgEmy3Mc_uZsn03qeVNY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/56687095-8a0b-48b3-97ed-673018e2dc32?api-version=2025-05-01&t=639246197414800555&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LNLfgAEPc6wrwI-XdOcOzy6CmqMpaGAq1yagboO4Qy79is0sRJpaNpN_UdvxG8vf1zX58lpQJypj17nIxuTY78F6e33bsV6kU3JZZhzl1C8n-n94eUGgem4m6oojYbC96nsnMtelvvL2cS5U1rNm3AV3RibKFUFQVh3mvk11kIrjMWisGY1qZCz_sAo1tyDjTw4ZIbMm7t6m1enbBDEpdY5c5mWxUj9TOwXRsCtP0r8el93IkMx0oJDBHS6gJq6HGE08QZOz5kGZxuVo0AEGQjXNV1REY7_IMHQ3oTfgsktGRIBS-9vskEkCT5I0swOFzdXxx3vY_nF7fsoEaoPSzA&h=6gcgb2S4gtvmF93RJ7ESM9cvuDqTmBrzAwo9Osb70_k response: body: string: '{"status":"InProgress"}' @@ -668,7 +741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:40 GMT + - Thu, 10 Sep 2026 06:49:02 GMT expires: - '-1' pragma: @@ -680,13 +753,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b681a1d7-9f0e-41c4-97dd-e60a5148938d + - c412802b-33f9-4eb5-aa56-21e9b91cbd48 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/0718b9d5-6f53-49b7-b143-7dd3db533696 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/8c25fa4d-133d-4f66-bef3-25608de072f8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.2, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 113A308CD4FE49FFBDB2A336E6310DF2 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:34:41Z' + - 'Ref A: 3E9942F082C14230BEEE33F2C06EDE8F Ref B: SYD281080707023 Ref C: 2026-09-10T06:49:02Z' status: code: 200 message: OK @@ -705,9 +781,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/ba1d73f2-ff7d-4cb7-8581-945a286c1257?api-version=2025-05-01&t=639107804795517656&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=uM8mg7_PMG01HSgFCUkgiBuGowAgwd2BdX4z7KjUQz74lMO6zXJv2dnakmWzaTtTUuVAbYpIEb5diRKfjiKQY0mm1wjHqYd1YsBSIlgn2Oq9AGwWjaFU7LqiuxlxN53BD70vQaVIu89BoTlDpK2-Xouhq0BjtNFrp0M5-9Yri95pewR2iHJCthCv1Q-fL5lp-Sil3WvvYTxEAEilWW0u8p59_ldZNzPz8RHluL9T8Q7g6wQxqY2d_fEntDjj79Sz4WomhQcgT2kgih7s24Gvu7ZjSj8faS2pbaBTgv6IuGxND_qwplCRWFUa216ipID_XfPHw6C1M-S9Rt9tOc47gw&h=a-EfOCLUQqoWxmtHHXTuOBCJgEmy3Mc_uZsn03qeVNY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/56687095-8a0b-48b3-97ed-673018e2dc32?api-version=2025-05-01&t=639246197414800555&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LNLfgAEPc6wrwI-XdOcOzy6CmqMpaGAq1yagboO4Qy79is0sRJpaNpN_UdvxG8vf1zX58lpQJypj17nIxuTY78F6e33bsV6kU3JZZhzl1C8n-n94eUGgem4m6oojYbC96nsnMtelvvL2cS5U1rNm3AV3RibKFUFQVh3mvk11kIrjMWisGY1qZCz_sAo1tyDjTw4ZIbMm7t6m1enbBDEpdY5c5mWxUj9TOwXRsCtP0r8el93IkMx0oJDBHS6gJq6HGE08QZOz5kGZxuVo0AEGQjXNV1REY7_IMHQ3oTfgsktGRIBS-9vskEkCT5I0swOFzdXxx3vY_nF7fsoEaoPSzA&h=6gcgb2S4gtvmF93RJ7ESM9cvuDqTmBrzAwo9Osb70_k response: body: string: '{"status":"InProgress"}' @@ -719,7 +795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:34:52 GMT + - Thu, 10 Sep 2026 06:49:13 GMT expires: - '-1' pragma: @@ -731,16 +807,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 428f009c-b61a-4478-94b2-03f2c99384fd + - 6e2b6d18-b4cb-4fe3-9c93-122fe4af3aef x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d38952d7-dd6b-43b4-bb45-da80500cf39d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/503decfb-5ee2-4c6c-a9a9-8be7cbe76cb2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc x-msedge-ref: - - 'Ref A: 85A0FA9404AA4C7FA31D3DD31B43077F Ref B: BN1AA2051012009 Ref C: 2026-04-03T02:34:52Z' + - 'Ref A: DD09467D14BC4473AD0D64A7AF934E60 Ref B: SYD281080706029 Ref C: 2026-09-10T06:49:13Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -756,9 +834,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/ba1d73f2-ff7d-4cb7-8581-945a286c1257?api-version=2025-05-01&t=639107804795517656&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=uM8mg7_PMG01HSgFCUkgiBuGowAgwd2BdX4z7KjUQz74lMO6zXJv2dnakmWzaTtTUuVAbYpIEb5diRKfjiKQY0mm1wjHqYd1YsBSIlgn2Oq9AGwWjaFU7LqiuxlxN53BD70vQaVIu89BoTlDpK2-Xouhq0BjtNFrp0M5-9Yri95pewR2iHJCthCv1Q-fL5lp-Sil3WvvYTxEAEilWW0u8p59_ldZNzPz8RHluL9T8Q7g6wQxqY2d_fEntDjj79Sz4WomhQcgT2kgih7s24Gvu7ZjSj8faS2pbaBTgv6IuGxND_qwplCRWFUa216ipID_XfPHw6C1M-S9Rt9tOc47gw&h=a-EfOCLUQqoWxmtHHXTuOBCJgEmy3Mc_uZsn03qeVNY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/56687095-8a0b-48b3-97ed-673018e2dc32?api-version=2025-05-01&t=639246197414800555&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LNLfgAEPc6wrwI-XdOcOzy6CmqMpaGAq1yagboO4Qy79is0sRJpaNpN_UdvxG8vf1zX58lpQJypj17nIxuTY78F6e33bsV6kU3JZZhzl1C8n-n94eUGgem4m6oojYbC96nsnMtelvvL2cS5U1rNm3AV3RibKFUFQVh3mvk11kIrjMWisGY1qZCz_sAo1tyDjTw4ZIbMm7t6m1enbBDEpdY5c5mWxUj9TOwXRsCtP0r8el93IkMx0oJDBHS6gJq6HGE08QZOz5kGZxuVo0AEGQjXNV1REY7_IMHQ3oTfgsktGRIBS-9vskEkCT5I0swOFzdXxx3vY_nF7fsoEaoPSzA&h=6gcgb2S4gtvmF93RJ7ESM9cvuDqTmBrzAwo9Osb70_k response: body: string: '{"status":"Succeeded"}' @@ -770,7 +848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:14 GMT + - Thu, 10 Sep 2026 06:49:34 GMT expires: - '-1' pragma: @@ -782,13 +860,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d93f7f8a-3fec-42a4-bd3c-d725c4e1ffdf + - a5506ffe-8539-49e9-8313-3a6305d06ec1 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/57ba7898-28bf-400f-bf5a-058b8b411ce4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/67f4c1fb-56dc-4bdf-967d-46bed5d19360 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 189B8ADC4C7B43C8A3ACC173E8C0AB67 Ref B: BN1AA2051013051 Ref C: 2026-04-03T02:35:14Z' + - 'Ref A: 7FCFB409F9C14EA095B23F465CE4E380 Ref B: SYD281080705060 Ref C: 2026-09-10T06:49:34Z' status: code: 200 message: OK @@ -807,12 +888,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"8a2025e3-1ac7-4472-97ea-4e6e71420c3e\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Succeeded","resourceGuid":"d0a19229-3089-4655-b1b8-e3ffc110aacb","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"8a2025e3-1ac7-4472-97ea-4e6e71420c3e\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.10884058-9428-4847-91e6-69e9dceb3038"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"9c194f22-e04b-449b-8859-875f6a48dbdc\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Succeeded","resourceGuid":"2b014bdd-87fd-41dd-a171-5b3dc76fb846","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"9c194f22-e04b-449b-8859-875f6a48dbdc\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.234b3e02-a772-4c8f-b114-409cf727561e"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: cache-control: - no-cache @@ -821,9 +902,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:15 GMT + - Thu, 10 Sep 2026 06:49:35 GMT etag: - - W/"8a2025e3-1ac7-4472-97ea-4e6e71420c3e" + - W/"9c194f22-e04b-449b-8859-875f6a48dbdc" expires: - '-1' pragma: @@ -835,11 +916,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c1ef14c7-0e50-45d1-9fd4-a273b064130e + - c25c7584-09fc-4267-b13e-8e6a98581e5a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc x-msedge-ref: - - 'Ref A: AACF77B6FF824F9A92C575CAE9840A23 Ref B: BN1AA2051012023 Ref C: 2026-04-03T02:35:16Z' + - 'Ref A: A7C4119254454B05BB9DC59F7561793C Ref B: SYD281080708040 Ref C: 2026-09-10T06:49:35Z' status: code: 200 message: OK @@ -857,19 +940,20 @@ interactions: ParameterSetName: - -g --registry-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"testreg000002.66362881734e4a4fbb07a94f5936328d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -877,7 +961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:17 GMT + - Thu, 10 Sep 2026 06:49:36 GMT expires: - '-1' pragma: @@ -889,11 +973,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2793afb5-2a48-4b83-9a5a-f0e76f6ff296 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/439af416-1403-468d-b9c3-47e6585859b8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1DA6C3AE64114061985CD64BE38EC89D Ref B: BN1AA2051015035 Ref C: 2026-04-03T02:35:18Z' + - 'Ref A: 7CC8959BCF6E4AAC8B1CFE9ECE0620D8 Ref B: SYD281080705025 Ref C: 2026-09-10T06:49:36Z' status: code: 200 message: OK @@ -911,19 +995,20 @@ interactions: ParameterSetName: - -g --registry-name -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"testreg000002.66362881734e4a4fbb07a94f5936328d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -931,7 +1016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:19 GMT + - Thu, 10 Sep 2026 06:49:37 GMT expires: - '-1' pragma: @@ -943,11 +1028,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/4059fbba-8822-48a6-a436-0c41397444cf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/c94ccecf-8fdd-4e15-ac08-cdf80a736640 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C77FB74429FA4339B0CFD101D085ADF3 Ref B: BN1AA2051015021 Ref C: 2026-04-03T02:35:20Z' + - 'Ref A: A51E75C8D2DE4577941B9E69046D2514 Ref B: SYD281080709036 Ref C: 2026-09-10T06:49:37Z' status: code: 200 message: OK @@ -970,21 +1055,22 @@ interactions: ParameterSetName: - -g --registry-name -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:35:22.1598984+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:35:22.1598984+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"testreg000002.66362881734e4a4fbb07a94f5936328d","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:49:38.5174831+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:49:38.5174831+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805223005260&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=LcnUHlcpIpoXx1_aRFWSYUh1aDyQ0eCuyqSRLSdjOX9rTLrWYiAz6g7fzp0XjAex5yHiCVyalMTCc1V9MiPoUDPRX9g7RbZVgVerlRmBkBTy-4oqF55bIB3jAughkcgedwEWjNdhvIT9afkJkc44Rj-DrZCx6K2rvDJQhzHTsIUTNznV3VU3APooE6fQH1T3BKqAzqrtaRyLLTmIWwA3yerfFoYSjZhTIWsVh7Oq2gFWohUWPOQOlpsADvEAZkPY492_3BhYN5imyQ9n2I_o6btsrbtfcld5brgcDVwBNuof3wLEMKvUkGRiTZOs0_RaDp2Riikvzmt9IiqBuzeN6A&h=xiq2c1TqqRt7mW1GcNByW8qZMayBhWDr8Bb3wyMKNO0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197786737353&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=fgpKmTqybzDXld3XMZewdtN3xQZHRml-T8CGApNc4GeoUrAXxrHU2ZzLquMzDjyhnMdWc9bYbdLvEyCubw_Iacleo3EheyjqUVbDc8xSE_uR4Vl1GuGmdiwDl81s4UqNkG6073jZ_Uq9gDRgbiRPklV7XAnEC2xT5k0YZNuUyvMxynpLS3TL4lKRYE3WqAVS3e8PqOKvNqu8iUVM9Eik1K0Hrgq7TBlmD5GMSfYA_XeF8lQOOmJKRoB1yqG3NLyYvDzRnlUw0v4ci3ywKeJpwCDeWlDUW8F1MWYFwWXGN8FMecQbNJXdReaVAXAhrxPM9sWzn-Ao_8N-TZ1-fa5DzQ&h=tCvWRgQjUenyznUzSoDPN6D7kvvepPS030XysaLJsXU cache-control: - no-cache content-length: @@ -992,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:22 GMT + - Thu, 10 Sep 2026 06:49:38 GMT expires: - '-1' pragma: @@ -1004,13 +1090,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/510a6219-3170-4545-844e-1f1814687c7b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/54495b60-977b-4ee0-be1e-ccaccff12f3c x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E05CA3C1059740AAAF525733BCE9F38B Ref B: BN1AA2051012039 Ref C: 2026-04-03T02:35:22Z' + - 'Ref A: 0CFCE1103FC74D3FB3F42A52F4DCE5CA Ref B: SYD281080710036 Ref C: 2026-09-10T06:49:38Z' status: code: 201 message: Created @@ -1028,21 +1114,22 @@ interactions: ParameterSetName: - -g --registry-name -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805223005260&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=LcnUHlcpIpoXx1_aRFWSYUh1aDyQ0eCuyqSRLSdjOX9rTLrWYiAz6g7fzp0XjAex5yHiCVyalMTCc1V9MiPoUDPRX9g7RbZVgVerlRmBkBTy-4oqF55bIB3jAughkcgedwEWjNdhvIT9afkJkc44Rj-DrZCx6K2rvDJQhzHTsIUTNznV3VU3APooE6fQH1T3BKqAzqrtaRyLLTmIWwA3yerfFoYSjZhTIWsVh7Oq2gFWohUWPOQOlpsADvEAZkPY492_3BhYN5imyQ9n2I_o6btsrbtfcld5brgcDVwBNuof3wLEMKvUkGRiTZOs0_RaDp2Riikvzmt9IiqBuzeN6A&h=xiq2c1TqqRt7mW1GcNByW8qZMayBhWDr8Bb3wyMKNO0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197786737353&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=fgpKmTqybzDXld3XMZewdtN3xQZHRml-T8CGApNc4GeoUrAXxrHU2ZzLquMzDjyhnMdWc9bYbdLvEyCubw_Iacleo3EheyjqUVbDc8xSE_uR4Vl1GuGmdiwDl81s4UqNkG6073jZ_Uq9gDRgbiRPklV7XAnEC2xT5k0YZNuUyvMxynpLS3TL4lKRYE3WqAVS3e8PqOKvNqu8iUVM9Eik1K0Hrgq7TBlmD5GMSfYA_XeF8lQOOmJKRoB1yqG3NLyYvDzRnlUw0v4ci3ywKeJpwCDeWlDUW8F1MWYFwWXGN8FMecQbNJXdReaVAXAhrxPM9sWzn-Ao_8N-TZ1-fa5DzQ&h=tCvWRgQjUenyznUzSoDPN6D7kvvepPS030XysaLJsXU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4","status":"Updating"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc","status":"Updating"}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805241013872&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=VatFPctcBd-3RRg6YBWGNbrDlWQgnYRZs6-KgXhh3WtMNyPthIXMxKIkLER5IPGkb0js4VCHxf2HOuMA5OlhzLzyqTv0qfcaV_ti7YLx2URTd9l3lnSSfT-4Lrcy37ELsB4mRM_AkDO5835qoz5SI5WyFHzKXuNFJzz9d9KMSTOpRYc6Wh7eqG8dfhZorJyuMcLzSlI3FHvEw4Xg0dk-qy3IwbKfBJMi_QncrPRL6iVND2XFXr2sgjvJK1mDt0fUnZYFAuYmDO2-XTADqD8VyEBCQocHVB_P9AhKLGBGR0wS_pnWGmXp5_ijKWrn0_f5MLzGXTvVzTuXiKSHzNDciQ&h=Iu4JhRru329BPxQnPc5uZH2EchjL0cCJZETKSA6Td8g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197796580726&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=jsu4wwjC97vhf1j6EnQ_FbtCdO3i9WlLM8V66q4lDNGIIQ4ziC0t2mw_u0YsgthX9DvYzj1Jt4aC6vsRb_Qw5zUhB9TOXZ0CsmNCYqU8VkjYQDm65wPgEKoXDPVME2Fl2cFUCIeAPMKAVPbXx5qW5YydFWdQZtc0ymk062d19V3XQi6LtcxnBT4M2b5BjLvf2vsIgHi_4g0UVLTpRdiMPXdHgroZq2zHOBNCe5slsJxCWIQLoRDx14Z4AxbvzY3SOPgE038JKHd19jwST8IYPkDj5KX1RYjokRQ6QMGJuA2J-5BPZTqCioXH1hv8_WxRx2A9R4XuKhjls9jyZyM9cA&h=LNcq3B1VaEzhaDoF7oDPKuzZbxo93O5XP5N_hefZx1Q cache-control: - no-cache content-length: @@ -1050,7 +1137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:23 GMT + - Thu, 10 Sep 2026 06:49:39 GMT expires: - '-1' pragma: @@ -1062,11 +1149,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/7d5e38ae-eab3-4c4b-b68a-921040774236 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/24d0b249-6273-4616-a08d-144472ab6ada x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 45CEF0F13F5146978F3005332DF327A4 Ref B: BN1AA2051014025 Ref C: 2026-04-03T02:35:24Z' + - 'Ref A: 51D318DBF7944B54A144666A4E07AEA8 Ref B: SYD281080709025 Ref C: 2026-09-10T06:49:39Z' status: code: 201 message: Created @@ -1084,21 +1171,22 @@ interactions: ParameterSetName: - -g --registry-name -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805223005260&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=LcnUHlcpIpoXx1_aRFWSYUh1aDyQ0eCuyqSRLSdjOX9rTLrWYiAz6g7fzp0XjAex5yHiCVyalMTCc1V9MiPoUDPRX9g7RbZVgVerlRmBkBTy-4oqF55bIB3jAughkcgedwEWjNdhvIT9afkJkc44Rj-DrZCx6K2rvDJQhzHTsIUTNznV3VU3APooE6fQH1T3BKqAzqrtaRyLLTmIWwA3yerfFoYSjZhTIWsVh7Oq2gFWohUWPOQOlpsADvEAZkPY492_3BhYN5imyQ9n2I_o6btsrbtfcld5brgcDVwBNuof3wLEMKvUkGRiTZOs0_RaDp2Riikvzmt9IiqBuzeN6A&h=xiq2c1TqqRt7mW1GcNByW8qZMayBhWDr8Bb3wyMKNO0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197786737353&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=fgpKmTqybzDXld3XMZewdtN3xQZHRml-T8CGApNc4GeoUrAXxrHU2ZzLquMzDjyhnMdWc9bYbdLvEyCubw_Iacleo3EheyjqUVbDc8xSE_uR4Vl1GuGmdiwDl81s4UqNkG6073jZ_Uq9gDRgbiRPklV7XAnEC2xT5k0YZNuUyvMxynpLS3TL4lKRYE3WqAVS3e8PqOKvNqu8iUVM9Eik1K0Hrgq7TBlmD5GMSfYA_XeF8lQOOmJKRoB1yqG3NLyYvDzRnlUw0v4ci3ywKeJpwCDeWlDUW8F1MWYFwWXGN8FMecQbNJXdReaVAXAhrxPM9sWzn-Ao_8N-TZ1-fa5DzQ&h=tCvWRgQjUenyznUzSoDPN6D7kvvepPS030XysaLJsXU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4","status":"Updating"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc","status":"Updating"}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805358707537&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=RWRrgPvKevhMsGbTuM--OFCk29T9RgjpB5cn1hrunio0X8wRLoFOlzJ2Y1ulHavclhfhHJU0EQGwuPwdn3a53ZCcgLpoigtu-aBu3iAs7EdH9W0T0iHpNNYq8umlwfXt4TnEsc8xAli0x_xWCbTzMzwUAJI50gpvEChgdtc27MNqWbohXlWyGFP1YMvIyVJwcja23vX_w1yPa4om-TMJ0nBEv7Q90mUp2-UPXQZXkJ8HpuN-M4FsaltYU-l-YPkAvbTEAG5CAH9MmpW5BEEm5QjZ8UO61W3XO4K47U1tehOS7eqLowHQHFJuNj5aENNUEnYjvO6mUAcCY_-qGsUv9w&h=7aPGJs8Gw_e_Jswnfy55pnya2F1XrThTI5tj5P0ZugM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197903553426&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=UhJ8VwMiG3KCX-i0UplCYVGFhtLa8X31Kt1wonZDTASl2TW2fSeX0md99sy2VkPhlB3cbDhWGiM1tzsgR9CjJrCz1PUxeTmAtZ0uBOTF27F3sT_mI_P_TmAkCi8PR4Hq02fMygkFNfT0oBwtnOCrn_Cb4dXzJtCksKTggXRZ-c3OC5NB1XOUwMU751WVepDp7Ovrp-CJuZNapt_PJo7MiqMIciOT_weSkkNoCp6EHr4SxBQ9S4b17PRqFOixQXamDOK-qjaITAM6Y6vCEzNGJYkPThyYY64h7o0YGuAobKw4h669zuY1hvrD6zhMiSbP5uS3BF605UKBTUfKIxeblg&h=a8jYcFNxRuwoXc1qPZII7qAZmbCy3dvEd4vOYZhGXfg cache-control: - no-cache content-length: @@ -1106,7 +1194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:35 GMT + - Thu, 10 Sep 2026 06:49:50 GMT expires: - '-1' pragma: @@ -1118,11 +1206,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/8f185a61-1816-4d0b-bbc5-a0890c0fc5a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/b12cdcd2-a591-4ed3-b7d4-f68cb4115c68 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F8E5D796C7D4F928FADEAF55E6146F0 Ref B: BN1AA2051015047 Ref C: 2026-04-03T02:35:35Z' + - 'Ref A: FF51FCE7B63042C79519D8D44BA0AAA9 Ref B: SYD281080710025 Ref C: 2026-09-10T06:49:50Z' status: code: 201 message: Created @@ -1140,21 +1228,22 @@ interactions: ParameterSetName: - -g --registry-name -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805223005260&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=LcnUHlcpIpoXx1_aRFWSYUh1aDyQ0eCuyqSRLSdjOX9rTLrWYiAz6g7fzp0XjAex5yHiCVyalMTCc1V9MiPoUDPRX9g7RbZVgVerlRmBkBTy-4oqF55bIB3jAughkcgedwEWjNdhvIT9afkJkc44Rj-DrZCx6K2rvDJQhzHTsIUTNznV3VU3APooE6fQH1T3BKqAzqrtaRyLLTmIWwA3yerfFoYSjZhTIWsVh7Oq2gFWohUWPOQOlpsADvEAZkPY492_3BhYN5imyQ9n2I_o6btsrbtfcld5brgcDVwBNuof3wLEMKvUkGRiTZOs0_RaDp2Riikvzmt9IiqBuzeN6A&h=xiq2c1TqqRt7mW1GcNByW8qZMayBhWDr8Bb3wyMKNO0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197786737353&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=fgpKmTqybzDXld3XMZewdtN3xQZHRml-T8CGApNc4GeoUrAXxrHU2ZzLquMzDjyhnMdWc9bYbdLvEyCubw_Iacleo3EheyjqUVbDc8xSE_uR4Vl1GuGmdiwDl81s4UqNkG6073jZ_Uq9gDRgbiRPklV7XAnEC2xT5k0YZNuUyvMxynpLS3TL4lKRYE3WqAVS3e8PqOKvNqu8iUVM9Eik1K0Hrgq7TBlmD5GMSfYA_XeF8lQOOmJKRoB1yqG3NLyYvDzRnlUw0v4ci3ywKeJpwCDeWlDUW8F1MWYFwWXGN8FMecQbNJXdReaVAXAhrxPM9sWzn-Ao_8N-TZ1-fa5DzQ&h=tCvWRgQjUenyznUzSoDPN6D7kvvepPS030XysaLJsXU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4","status":"Updating"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc","status":"Updating"}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805478237571&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=lOTJ9_Fo_bGxLxgnb4-spoNMqTx7-__nGh75z85bmwv6Bx6mYGbTBttA9HFpO3h4IQm1Tx8Oc00Kvp5Ba_18wvMP2mzPNWx7C4J_yTJcg8CDGvyU2LK591-28lMnlItIr4xy9g1Ydc4qkAWAEAc2woOz7wL7oPBSTh4g46be0QZOWVSTCyBYdJeyYM8RS4k-l0RZm9YKYG3CO0k5D4ysH_T0206fh8as3C60ej4-sSjbu9wD9wgegYGxs_CH00sBs1sdc-czSFyK9oXjYrGcRZJL2Fd8N1uDG02-ozkeUF0GfwPP4KXblt-5-aS1WlfM6yTfqnlhe-j31z6KKufhZA&h=6CuAA5Of9tT95dV2FEBIMli5651WsWN8ogrn8tKjfd4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198011489376&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Qxq56Ouo3nyTvH5adeHKzfhQKn6C1kMZRT-Oo3ZBQf8S-r-pZrb-waKQYpeY6KXscT0VyIhYyrkcxj9nD04S1Oey-ShuTbTM6NNa7wsxAIKv-jaAXI8tvCtsuho-GCBhOcB4nzKmEhHGXtSgxY5yphYRKwdCQFGznDMgwWcXRhhliH5IWQM0RrlkkuqmeUgnlFnHCf-A-UmVUKbPPo-4RjomsQtcNCGd6VXdiUnIfmZjtszwSLXkFMlADiQZa5PZeMgRyx6o6MYtcOHbXa2y_lbaKELbE-bM0TDBWEZ6kMj0O-g6GhDoV0QRp4D5wZfeKPKZuezM0yeTADG7xh4cQg&h=pJPlS5LJzqHCuTvCLsnM33eeI8hcZh5ti1RsdkzP00U cache-control: - no-cache content-length: @@ -1162,7 +1251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:46 GMT + - Thu, 10 Sep 2026 06:50:00 GMT expires: - '-1' pragma: @@ -1174,11 +1263,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/35de119d-64de-4fd6-a0e3-543f981f2479 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/e83a07c9-ae6a-4ad5-aedb-2c74f4e3c6a8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D93EE865B5A4003B38359D208E7A115 Ref B: BN1AA2051015033 Ref C: 2026-04-03T02:35:47Z' + - 'Ref A: FA51A5C011924472BAEE76C9CDB95662 Ref B: SYD281080709052 Ref C: 2026-09-10T06:50:00Z' status: code: 201 message: Created @@ -1196,19 +1285,20 @@ interactions: ParameterSetName: - -g --registry-name -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84/operationStatuses/privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107805223005260&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=LcnUHlcpIpoXx1_aRFWSYUh1aDyQ0eCuyqSRLSdjOX9rTLrWYiAz6g7fzp0XjAex5yHiCVyalMTCc1V9MiPoUDPRX9g7RbZVgVerlRmBkBTy-4oqF55bIB3jAughkcgedwEWjNdhvIT9afkJkc44Rj-DrZCx6K2rvDJQhzHTsIUTNznV3VU3APooE6fQH1T3BKqAzqrtaRyLLTmIWwA3yerfFoYSjZhTIWsVh7Oq2gFWohUWPOQOlpsADvEAZkPY492_3BhYN5imyQ9n2I_o6btsrbtfcld5brgcDVwBNuof3wLEMKvUkGRiTZOs0_RaDp2Riikvzmt9IiqBuzeN6A&h=xiq2c1TqqRt7mW1GcNByW8qZMayBhWDr8Bb3wyMKNO0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d/operationStatuses/privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc?api-version=2026-09-01-preview&t=639246197786737353&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=fgpKmTqybzDXld3XMZewdtN3xQZHRml-T8CGApNc4GeoUrAXxrHU2ZzLquMzDjyhnMdWc9bYbdLvEyCubw_Iacleo3EheyjqUVbDc8xSE_uR4Vl1GuGmdiwDl81s4UqNkG6073jZ_Uq9gDRgbiRPklV7XAnEC2xT5k0YZNuUyvMxynpLS3TL4lKRYE3WqAVS3e8PqOKvNqu8iUVM9Eik1K0Hrgq7TBlmD5GMSfYA_XeF8lQOOmJKRoB1yqG3NLyYvDzRnlUw0v4ci3ywKeJpwCDeWlDUW8F1MWYFwWXGN8FMecQbNJXdReaVAXAhrxPM9sWzn-Ao_8N-TZ1-fa5DzQ&h=tCvWRgQjUenyznUzSoDPN6D7kvvepPS030XysaLJsXU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"privateendpointconnections-c0cc6e92-2f05-11f1-8304-44a3bbbaa7c4","status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"privateendpointconnections-cabb4667-ace3-11f1-8130-3cefa50a58cc","status":"Succeeded"}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1216,7 +1306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:58 GMT + - Thu, 10 Sep 2026 06:50:12 GMT expires: - '-1' pragma: @@ -1228,11 +1318,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/0098dd01-5626-4409-a808-b9989609eeee + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/eac23043-574c-4b34-b629-8f04fda1cebf x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 27F33638CAE54454B0D4D72F04216EBB Ref B: BN1AA2051013037 Ref C: 2026-04-03T02:35:58Z' + - 'Ref A: 6DEE9D3D2AC348F3855C3B4177334B77 Ref B: SYD281080711023 Ref C: 2026-09-10T06:50:11Z' status: code: 200 message: OK @@ -1250,19 +1340,20 @@ interactions: ParameterSetName: - -g --registry-name -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"testreg000002.66362881734e4a4fbb07a94f5936328d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1270,7 +1361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:35:59 GMT + - Thu, 10 Sep 2026 06:50:12 GMT expires: - '-1' pragma: @@ -1282,11 +1373,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/345dc0ef-f9c6-4d3f-8a28-87d6a41de13a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/570bbea9-bf3d-4595-8702-02d51fbf2703 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F86C4A6B6114600A284F462C571BC9A Ref B: BN1AA2051015025 Ref C: 2026-04-03T02:36:00Z' + - 'Ref A: F6E6B7D0B5CA4FBA8027D276D752ECE0 Ref B: SYD281080710031 Ref C: 2026-09-10T06:50:12Z' status: code: 200 message: OK @@ -1305,12 +1396,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-04-03T02:33:56Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_private_endpoint","date":"2026-09-10T06:48:30Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1319,7 +1410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:00 GMT + - Thu, 10 Sep 2026 06:50:13 GMT expires: - '-1' pragma: @@ -1333,7 +1424,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5B960D4408A8469AA86E366D8EBDCA8D Ref B: BN1AA2051015031 Ref C: 2026-04-03T02:36:01Z' + - 'Ref A: 11D144DF0B9C4B3C9F9EAE7945E26FF6 Ref B: SYD281080708023 Ref C: 2026-09-10T06:50:13Z' status: code: 200 message: OK @@ -1359,18 +1450,18 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"9ba1e0c8-692f-43b3-9d80-0569fad06a8d\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Updating","resourceGuid":"17c0b07d-5a4c-4b94-b437-4a171b1167ab","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"9ba1e0c8-692f-43b3-9d80-0569fad06a8d\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting - Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.b91e095b-cc94-4e5b-a047-11dc4b084d3d"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"60241d95-ce65-4ecd-abdd-932365be9d52\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Updating","resourceGuid":"1dd223fe-bc03-4a98-a44a-32de64e23014","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"60241d95-ce65-4ecd-abdd-932365be9d52\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.88cb926a-e194-4bc2-8f00-83e48ce5df75"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4eb9d99a-c909-463e-9541-561cb1adb85f?api-version=2025-05-01&t=639107805627195029&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=BraYH-1bh_ejksBjtnQY8GKBfsAVv7vVEXjspx8NqRGm_fbxfCXWQpYWtrRo_1AZOmw1Ez91z2XF120GiIiENdME45pSk6xwy3415v9hiSfB1dF9KaFtZIPx970p2Hg4qVMTrHiI3D6LVlDv-dYq3vbBBt06iiavw2cCost1WSrIf8DLN1wppG0j4vUN5hvy0WR1aXDV1U2X2Z32r_WQp6yyiUP56S0Xob1jZsHyR-7wYoZu6pWgn1TVXOEmiwmNP98mOLtMaTQlN4DGMIIj-m7EyPPanRm_1D24hminaWvlaUJGSmMjP-Fda0htfT0PrzkJC6rRNa7iGy9pUXF-YA&h=5n02FF5iIdMeFHzJTZ3kR8s-gTEVP2FtKiNQN4wMNhI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8ea6d9ae-66ee-4f8c-a71a-dd48f3b09ceb?api-version=2025-05-01&t=639246198148956078&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Jio73V63R3RAtiinsDjtSO621NEiKhbCghoz0y6Pm47cJ1DE3cY4B28pGp6EpHs9hxiWMysmAKyZ5If3_c6MLoXqq5y3N8oThEXsr5hjqAaIwP20ggpKocIdvq_nC-dgMMYB2MAkPQ-_oHCJi3nWy6IsJTcjOLPjipOJVK2tHa9Ws3D1ZNp-7mJRpvQwd378orsRGTGjpTxoLsJE7SxkL5RhWW726iYu2aW6a5jvX1wh6eyhxqID79TyxJ8PoCYhOnhzsRkN4Tvj5pJRIgD8vHt87_a2MbT2Y38bjcXoRlmk5_U7cBAabQCWerTWf55ExYxnxTS8LNWGlO75AlozLA&h=JEEXyqIdrV-n4QrQ_j_5MLOvaTOd_aKG-DJL2lcmaBk cache-control: - no-cache content-length: @@ -1378,7 +1469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:01 GMT + - Thu, 10 Sep 2026 06:50:14 GMT expires: - '-1' pragma: @@ -1390,18 +1481,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 64a47e16-5e40-41eb-9e1d-6f44bff0db37 + - 7bd77134-dbff-454a-bda2-a15e8ad96839 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/401b715d-944c-4157-a7da-1fb6ec63a39b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/5ae62665-61d2-4e8a-8291-88f90a246daf x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.4, + etc x-msedge-ref: - - 'Ref A: 6BFD22C981E244E297D786D7B1BA8613 Ref B: BN1AA2051014035 Ref C: 2026-04-03T02:36:02Z' + - 'Ref A: D83AA659CE7441DCA2631BFEBA605620 Ref B: SYD281080708029 Ref C: 2026-09-10T06:50:14Z' status: code: 201 - message: Created + message: '' - request: body: null headers: @@ -1417,9 +1511,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4eb9d99a-c909-463e-9541-561cb1adb85f?api-version=2025-05-01&t=639107805627195029&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=BraYH-1bh_ejksBjtnQY8GKBfsAVv7vVEXjspx8NqRGm_fbxfCXWQpYWtrRo_1AZOmw1Ez91z2XF120GiIiENdME45pSk6xwy3415v9hiSfB1dF9KaFtZIPx970p2Hg4qVMTrHiI3D6LVlDv-dYq3vbBBt06iiavw2cCost1WSrIf8DLN1wppG0j4vUN5hvy0WR1aXDV1U2X2Z32r_WQp6yyiUP56S0Xob1jZsHyR-7wYoZu6pWgn1TVXOEmiwmNP98mOLtMaTQlN4DGMIIj-m7EyPPanRm_1D24hminaWvlaUJGSmMjP-Fda0htfT0PrzkJC6rRNa7iGy9pUXF-YA&h=5n02FF5iIdMeFHzJTZ3kR8s-gTEVP2FtKiNQN4wMNhI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8ea6d9ae-66ee-4f8c-a71a-dd48f3b09ceb?api-version=2025-05-01&t=639246198148956078&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Jio73V63R3RAtiinsDjtSO621NEiKhbCghoz0y6Pm47cJ1DE3cY4B28pGp6EpHs9hxiWMysmAKyZ5If3_c6MLoXqq5y3N8oThEXsr5hjqAaIwP20ggpKocIdvq_nC-dgMMYB2MAkPQ-_oHCJi3nWy6IsJTcjOLPjipOJVK2tHa9Ws3D1ZNp-7mJRpvQwd378orsRGTGjpTxoLsJE7SxkL5RhWW726iYu2aW6a5jvX1wh6eyhxqID79TyxJ8PoCYhOnhzsRkN4Tvj5pJRIgD8vHt87_a2MbT2Y38bjcXoRlmk5_U7cBAabQCWerTWf55ExYxnxTS8LNWGlO75AlozLA&h=JEEXyqIdrV-n4QrQ_j_5MLOvaTOd_aKG-DJL2lcmaBk response: body: string: '{"status":"InProgress"}' @@ -1431,7 +1525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:03 GMT + - Thu, 10 Sep 2026 06:50:15 GMT expires: - '-1' pragma: @@ -1443,16 +1537,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - edba3411-6b83-4e16-8534-28c08070348e + - 934a075e-e6ce-4c6f-a23f-96cfd578dd57 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/40dab8c2-3e97-4d0c-a6e1-8eebeb51b53a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b717f860-b18b-4b56-a64e-acac432edc79 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.3, etc x-msedge-ref: - - 'Ref A: BD1DCA7313B24F3EB736C206E33CB95B Ref B: BN1AA2051013045 Ref C: 2026-04-03T02:36:03Z' + - 'Ref A: E7689CADAEC84D09845DFFF7BF002F02 Ref B: SYD281080709025 Ref C: 2026-09-10T06:50:15Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1468,9 +1564,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4eb9d99a-c909-463e-9541-561cb1adb85f?api-version=2025-05-01&t=639107805627195029&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=BraYH-1bh_ejksBjtnQY8GKBfsAVv7vVEXjspx8NqRGm_fbxfCXWQpYWtrRo_1AZOmw1Ez91z2XF120GiIiENdME45pSk6xwy3415v9hiSfB1dF9KaFtZIPx970p2Hg4qVMTrHiI3D6LVlDv-dYq3vbBBt06iiavw2cCost1WSrIf8DLN1wppG0j4vUN5hvy0WR1aXDV1U2X2Z32r_WQp6yyiUP56S0Xob1jZsHyR-7wYoZu6pWgn1TVXOEmiwmNP98mOLtMaTQlN4DGMIIj-m7EyPPanRm_1D24hminaWvlaUJGSmMjP-Fda0htfT0PrzkJC6rRNa7iGy9pUXF-YA&h=5n02FF5iIdMeFHzJTZ3kR8s-gTEVP2FtKiNQN4wMNhI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8ea6d9ae-66ee-4f8c-a71a-dd48f3b09ceb?api-version=2025-05-01&t=639246198148956078&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Jio73V63R3RAtiinsDjtSO621NEiKhbCghoz0y6Pm47cJ1DE3cY4B28pGp6EpHs9hxiWMysmAKyZ5If3_c6MLoXqq5y3N8oThEXsr5hjqAaIwP20ggpKocIdvq_nC-dgMMYB2MAkPQ-_oHCJi3nWy6IsJTcjOLPjipOJVK2tHa9Ws3D1ZNp-7mJRpvQwd378orsRGTGjpTxoLsJE7SxkL5RhWW726iYu2aW6a5jvX1wh6eyhxqID79TyxJ8PoCYhOnhzsRkN4Tvj5pJRIgD8vHt87_a2MbT2Y38bjcXoRlmk5_U7cBAabQCWerTWf55ExYxnxTS8LNWGlO75AlozLA&h=JEEXyqIdrV-n4QrQ_j_5MLOvaTOd_aKG-DJL2lcmaBk response: body: string: '{"status":"InProgress"}' @@ -1482,7 +1578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:15 GMT + - Thu, 10 Sep 2026 06:50:25 GMT expires: - '-1' pragma: @@ -1494,13 +1590,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 278dc4f0-c853-478b-9fa4-ba7a8daf6433 + - 37e2711b-16d9-4bce-8097-39a71ca7cdc5 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/a25cefe0-07dc-487a-93e7-580a7b993fe8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/01cf4961-877f-4eec-90cc-260f00e89847 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.4, + etc x-msedge-ref: - - 'Ref A: FFE4739109A64DB39ABE11CBAA5DF857 Ref B: BN1AA2051015037 Ref C: 2026-04-03T02:36:15Z' + - 'Ref A: E538B3D8D5824613860915262460F3A2 Ref B: SYD281080705060 Ref C: 2026-09-10T06:50:26Z' status: code: 200 message: OK @@ -1519,9 +1618,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/4eb9d99a-c909-463e-9541-561cb1adb85f?api-version=2025-05-01&t=639107805627195029&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=BraYH-1bh_ejksBjtnQY8GKBfsAVv7vVEXjspx8NqRGm_fbxfCXWQpYWtrRo_1AZOmw1Ez91z2XF120GiIiENdME45pSk6xwy3415v9hiSfB1dF9KaFtZIPx970p2Hg4qVMTrHiI3D6LVlDv-dYq3vbBBt06iiavw2cCost1WSrIf8DLN1wppG0j4vUN5hvy0WR1aXDV1U2X2Z32r_WQp6yyiUP56S0Xob1jZsHyR-7wYoZu6pWgn1TVXOEmiwmNP98mOLtMaTQlN4DGMIIj-m7EyPPanRm_1D24hminaWvlaUJGSmMjP-Fda0htfT0PrzkJC6rRNa7iGy9pUXF-YA&h=5n02FF5iIdMeFHzJTZ3kR8s-gTEVP2FtKiNQN4wMNhI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8ea6d9ae-66ee-4f8c-a71a-dd48f3b09ceb?api-version=2025-05-01&t=639246198148956078&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Jio73V63R3RAtiinsDjtSO621NEiKhbCghoz0y6Pm47cJ1DE3cY4B28pGp6EpHs9hxiWMysmAKyZ5If3_c6MLoXqq5y3N8oThEXsr5hjqAaIwP20ggpKocIdvq_nC-dgMMYB2MAkPQ-_oHCJi3nWy6IsJTcjOLPjipOJVK2tHa9Ws3D1ZNp-7mJRpvQwd378orsRGTGjpTxoLsJE7SxkL5RhWW726iYu2aW6a5jvX1wh6eyhxqID79TyxJ8PoCYhOnhzsRkN4Tvj5pJRIgD8vHt87_a2MbT2Y38bjcXoRlmk5_U7cBAabQCWerTWf55ExYxnxTS8LNWGlO75AlozLA&h=JEEXyqIdrV-n4QrQ_j_5MLOvaTOd_aKG-DJL2lcmaBk response: body: string: '{"status":"Succeeded"}' @@ -1533,7 +1632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:36 GMT + - Thu, 10 Sep 2026 06:50:46 GMT expires: - '-1' pragma: @@ -1545,16 +1644,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ebfd442e-76ab-46ae-9c1b-22638ad05c10 + - 8498cc4a-6353-45df-844b-a33345c577ef x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/4d87f7cf-c837-4e76-939e-c05ef78c0ca1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f21090ce-5fce-4d75-b04f-e6a1385ac7d8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.4, etc x-msedge-ref: - - 'Ref A: 8A8E7E4FB57D4445ACD76063C22FD4CC Ref B: BN1AA2051015021 Ref C: 2026-04-03T02:36:37Z' + - 'Ref A: 6717F2F4C26B485396484A437721F853 Ref B: SYD281080705036 Ref C: 2026-09-10T06:50:47Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1570,12 +1671,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-ids --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"6db6d748-8b29-4e5f-b3df-13d847b85d06\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Succeeded","resourceGuid":"17c0b07d-5a4c-4b94-b437-4a171b1167ab","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"6db6d748-8b29-4e5f-b3df-13d847b85d06\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.b91e095b-cc94-4e5b-a047-11dc4b084d3d"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"7bd70c0f-9088-4459-858d-ae822fd6d2ec\"","type":"Microsoft.Network/privateEndpoints","location":"eastus2","properties":{"provisioningState":"Succeeded","resourceGuid":"1dd223fe-bc03-4a98-a44a-32de64e23014","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"7bd70c0f-9088-4459-858d-ae822fd6d2ec\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.88cb926a-e194-4bc2-8f00-83e48ce5df75"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: cache-control: - no-cache @@ -1584,9 +1685,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:38 GMT + - Thu, 10 Sep 2026 06:50:47 GMT etag: - - W/"6db6d748-8b29-4e5f-b3df-13d847b85d06" + - W/"7bd70c0f-9088-4459-858d-ae822fd6d2ec" expires: - '-1' pragma: @@ -1598,14 +1699,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f591bcec-fc0e-476a-a33a-2be12c6fd450 + - 01bed1d6-86c1-4418-9d38-e29db51343b0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.4, etc x-msedge-ref: - - 'Ref A: 39BC9A9B4E334D1685BBF5AB231FA042 Ref B: BN1AA2051015023 Ref C: 2026-04-03T02:36:38Z' + - 'Ref A: CB8E10A235E647F093F4FEE7F4FDC436 Ref B: SYD281080711042 Ref C: 2026-09-10T06:50:47Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1620,19 +1723,20 @@ interactions: ParameterSetName: - -g -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","name":"testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80","name":"testreg000002.5016b56208dc47fca1b6d1d3db7daf80","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"testreg000002.66362881734e4a4fbb07a94f5936328d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1640,7 +1744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:39 GMT + - Thu, 10 Sep 2026 06:50:48 GMT expires: - '-1' pragma: @@ -1652,11 +1756,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/74930526-f8c1-4e0a-bc2e-aaea4f3d5733 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/6a3ec955-f7f7-4391-b309-70da449d29cd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FE9E8EE726484EEEA3C9F8055741C236 Ref B: BN1AA2051015033 Ref C: 2026-04-03T02:36:40Z' + - 'Ref A: 671BD677C7EC485ABDA5E7781A543452 Ref B: SYD281080712034 Ref C: 2026-09-10T06:50:48Z' status: code: 200 message: OK @@ -1674,19 +1778,20 @@ interactions: ParameterSetName: - -g -r -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","name":"testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80","name":"testreg000002.5016b56208dc47fca1b6d1d3db7daf80","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1694,7 +1799,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:40 GMT + - Thu, 10 Sep 2026 06:50:48 GMT expires: - '-1' pragma: @@ -1706,11 +1811,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/fccb37a5-c632-4ab6-a201-02dd33653586 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/d6db43cf-c5ed-4141-a2de-10dc1ba9c804 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 08B2E7B14F4B441192B8CE2B3D310768 Ref B: BN1AA2051012045 Ref C: 2026-04-03T02:36:41Z' + - 'Ref A: 84EDFCAFE8BB4D66B87D16782E2905CC Ref B: SYD281080708034 Ref C: 2026-09-10T06:50:49Z' status: code: 200 message: OK @@ -1733,21 +1838,22 @@ interactions: ParameterSetName: - -g -r -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","name":"testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:36:42.0251324+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:36:42.0251324+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80","name":"testreg000002.5016b56208dc47fca1b6d1d3db7daf80","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:50:50.3788504+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:50:50.3788504+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff/operationStatuses/privateendpointconnections-f17b5ec3-2f05-11f1-bacd-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806022751367&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=ivbNu8WbB5jWBIqZpoMQSo5yWbaQXt94RFRCXskL3qwPKlCfCmTYJIZJkhuzg0_p6DFrS8_cTkLib5MecOM6RKahY4CTTsBm7AMKq8AaltKtajYmyrRsdugxHcGQdVU5eI45yx9IelUgwx2At-ODN_eHq4mefd652Gvazy_TzGaXxpirWu1G2E4HtczwZQvrMrnhI0_mN_74cDLeoCJy8SdUoprvDX-fE2he-M1h3i8qal75f6D-UhKRWyWZgchs4sk5yjBzJ5GJL7diRJu3O461aEzfchesdsrCapQfmjB-rYp2PYNK0P0z1my3CpS8Ct1w3NBMIKPneZrZhJ4mQQ&h=9CWd6NyaVdCMeErSsZ6QfQdi78QoiqFoh5G-vcCZ9HQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80/operationStatuses/privateendpointconnections-f5cdca56-ace3-11f1-b239-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198504882212&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=NX-mk8SvYCdt85DW_2BxFqlaTNAoUhAJcCtPURlrUELhedNTcgAsgCiUtBwR6IyurITpI-YosVGP6Yvp-r2-lGmF5weEacDhqzsGW-6J8WjCdYjWdj6Ojrmriqig-ATSyl3dHsBKloqQFuYnAk7g-tzbEl8it8qEVFT-kMw8qxyJYH0q9-SrZ6ilV1okdRQR-5ICdhATiOIyL55zWPOf1AWHMQGc-n0mFoNK8zVtTFvbFsYt84xJe6y4C8fZ3aWhv17R_StA7LHOVuEKdYR50aapGiV6hmcGnNYxvG1Ekz5WrnaAqjQuSfAdnYsfMz8uw8GQbPpi4MLkr_bed6vQ9w&h=NKpoHakLR4NAW10AwV7MrZ4l3StBmP4reA5JGuurMEM cache-control: - no-cache content-length: @@ -1755,7 +1861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:41 GMT + - Thu, 10 Sep 2026 06:50:50 GMT expires: - '-1' pragma: @@ -1767,13 +1873,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/10c1d179-03cf-44de-a500-977a64a6e77f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/748bb86b-6a9b-4a74-91e4-b9384fe521a6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5BF912A9939E476D99D5E93712E53757 Ref B: BN1AA2051013045 Ref C: 2026-04-03T02:36:41Z' + - 'Ref A: F8075E8B701947AB97EBC3F1A94734B8 Ref B: SYD281080706062 Ref C: 2026-09-10T06:50:50Z' status: code: 201 message: Created @@ -1791,21 +1897,22 @@ interactions: ParameterSetName: - -g -r -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff/operationStatuses/privateendpointconnections-f17b5ec3-2f05-11f1-bacd-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806022751367&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=ivbNu8WbB5jWBIqZpoMQSo5yWbaQXt94RFRCXskL3qwPKlCfCmTYJIZJkhuzg0_p6DFrS8_cTkLib5MecOM6RKahY4CTTsBm7AMKq8AaltKtajYmyrRsdugxHcGQdVU5eI45yx9IelUgwx2At-ODN_eHq4mefd652Gvazy_TzGaXxpirWu1G2E4HtczwZQvrMrnhI0_mN_74cDLeoCJy8SdUoprvDX-fE2he-M1h3i8qal75f6D-UhKRWyWZgchs4sk5yjBzJ5GJL7diRJu3O461aEzfchesdsrCapQfmjB-rYp2PYNK0P0z1my3CpS8Ct1w3NBMIKPneZrZhJ4mQQ&h=9CWd6NyaVdCMeErSsZ6QfQdi78QoiqFoh5G-vcCZ9HQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80/operationStatuses/privateendpointconnections-f5cdca56-ace3-11f1-b239-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198504882212&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=NX-mk8SvYCdt85DW_2BxFqlaTNAoUhAJcCtPURlrUELhedNTcgAsgCiUtBwR6IyurITpI-YosVGP6Yvp-r2-lGmF5weEacDhqzsGW-6J8WjCdYjWdj6Ojrmriqig-ATSyl3dHsBKloqQFuYnAk7g-tzbEl8it8qEVFT-kMw8qxyJYH0q9-SrZ6ilV1okdRQR-5ICdhATiOIyL55zWPOf1AWHMQGc-n0mFoNK8zVtTFvbFsYt84xJe6y4C8fZ3aWhv17R_StA7LHOVuEKdYR50aapGiV6hmcGnNYxvG1Ekz5WrnaAqjQuSfAdnYsfMz8uw8GQbPpi4MLkr_bed6vQ9w&h=NKpoHakLR4NAW10AwV7MrZ4l3StBmP4reA5JGuurMEM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","name":"privateendpointconnections-f17b5ec3-2f05-11f1-bacd-44a3bbbaa7c4","status":"Updating"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80","name":"privateendpointconnections-f5cdca56-ace3-11f1-b239-3cefa50a58cc","status":"Updating"}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff/operationStatuses/privateendpointconnections-f17b5ec3-2f05-11f1-bacd-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806034397483&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=f9UF9mWUZHWd3HMJPuku-Xvq5zcPLmT2Ds7giBp96olrlZ1lGVBlJyX8A90am3wPgZfj1kfXtfcyv-Ma9jI8OrHeeQGtkcvNnotZyxbtgq2QE--K780COoityo1TYZBcXDcy1GJci5AhSGWhWcfjUyVGZHtVWJcDYjNSWMi2IL5ETIGwpE_Exgt26xDL9AQxGDtkyaQVFUKbYdI178VBILmDPEiVFAEt3ot72KmfVKYtFMcQgF72GmL8WDE-QR5weGkBdLjOuCJ-0vDF-3LX2_HDq_zfuHkpBZDVWTKyUlN7-KkQYGVqRWvSlrAQ9gVgF-aScfYQmny-IJP3DJHVGQ&h=ZUccBZNhuW9TUcrIdQzufveGVOa0nGwZ-sxkuYAcB3k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80/operationStatuses/privateendpointconnections-f5cdca56-ace3-11f1-b239-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198511416356&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=k0eQY_-UDpUUbI0Lg4WzY2rRwW6UQgGnWxk1TP3w0XQQYv-j30s1zwsbE8rxnEyI2-fUXOZ2Bn6ULn-H69YOkYkoB7FcbQg8N9l48HwMw23hh4WQzKwc2TlCySaXGwzQHKCmVSg3fB093TZM5-bmzmTb2Y7frLYNLvdE6W7fY7r5BXgiZlB3Lkp9jGjlZc7_JQc1iwydZADtj8GRthaWBEW1LTQq5MxxXnhnDWWvpMjjyxHoqqK30IR7VaKQcGC-I7ho9j3HBSYjJeBuDUBzsTuvgjSbPECEHYzPGmlihQRJ3OaYYEBNm_OkfhQTvWRAg2kuXEYi7I0om0cgqF00zA&h=CdmspKETd_Wj8cPZJ16wtREZ_5nUX8COJDxcXHGS9M4 cache-control: - no-cache content-length: @@ -1813,7 +1920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:42 GMT + - Thu, 10 Sep 2026 06:50:50 GMT expires: - '-1' pragma: @@ -1825,11 +1932,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/e26cd581-6a1f-4283-8c2d-336ae8a1a03f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/fa47f141-6458-480d-b2b1-89d6f3a993bd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F3AE4822D35D48A69935EA39F42CDC05 Ref B: BN1AA2051015017 Ref C: 2026-04-03T02:36:43Z' + - 'Ref A: 8B7D51F6B3C44FAAA06AC2AE1FCD7016 Ref B: SYD281080710036 Ref C: 2026-09-10T06:50:51Z' status: code: 201 message: Created @@ -1847,19 +1954,20 @@ interactions: ParameterSetName: - -g -r -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff/operationStatuses/privateendpointconnections-f17b5ec3-2f05-11f1-bacd-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806022751367&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=ivbNu8WbB5jWBIqZpoMQSo5yWbaQXt94RFRCXskL3qwPKlCfCmTYJIZJkhuzg0_p6DFrS8_cTkLib5MecOM6RKahY4CTTsBm7AMKq8AaltKtajYmyrRsdugxHcGQdVU5eI45yx9IelUgwx2At-ODN_eHq4mefd652Gvazy_TzGaXxpirWu1G2E4HtczwZQvrMrnhI0_mN_74cDLeoCJy8SdUoprvDX-fE2he-M1h3i8qal75f6D-UhKRWyWZgchs4sk5yjBzJ5GJL7diRJu3O461aEzfchesdsrCapQfmjB-rYp2PYNK0P0z1my3CpS8Ct1w3NBMIKPneZrZhJ4mQQ&h=9CWd6NyaVdCMeErSsZ6QfQdi78QoiqFoh5G-vcCZ9HQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80/operationStatuses/privateendpointconnections-f5cdca56-ace3-11f1-b239-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198504882212&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=NX-mk8SvYCdt85DW_2BxFqlaTNAoUhAJcCtPURlrUELhedNTcgAsgCiUtBwR6IyurITpI-YosVGP6Yvp-r2-lGmF5weEacDhqzsGW-6J8WjCdYjWdj6Ojrmriqig-ATSyl3dHsBKloqQFuYnAk7g-tzbEl8it8qEVFT-kMw8qxyJYH0q9-SrZ6ilV1okdRQR-5ICdhATiOIyL55zWPOf1AWHMQGc-n0mFoNK8zVtTFvbFsYt84xJe6y4C8fZ3aWhv17R_StA7LHOVuEKdYR50aapGiV6hmcGnNYxvG1Ekz5WrnaAqjQuSfAdnYsfMz8uw8GQbPpi4MLkr_bed6vQ9w&h=NKpoHakLR4NAW10AwV7MrZ4l3StBmP4reA5JGuurMEM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","name":"privateendpointconnections-f17b5ec3-2f05-11f1-bacd-44a3bbbaa7c4","status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80","name":"privateendpointconnections-f5cdca56-ace3-11f1-b239-3cefa50a58cc","status":"Succeeded"}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1867,7 +1975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:53 GMT + - Thu, 10 Sep 2026 06:51:01 GMT expires: - '-1' pragma: @@ -1879,11 +1987,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/fce52a46-8433-4b87-9c7f-9c6e47da7460 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/9c598c23-7f01-44f2-b054-798f9fd4fad0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F6E902DD12B84A52AB91CC48605EC17F Ref B: BN1AA2051015051 Ref C: 2026-04-03T02:36:54Z' + - 'Ref A: FA587CF9840945E792ED46C8F623E169 Ref B: SYD281080705052 Ref C: 2026-09-10T06:51:01Z' status: code: 200 message: OK @@ -1901,19 +2009,20 @@ interactions: ParameterSetName: - -g -r -n --description User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","name":"testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80","name":"testreg000002.5016b56208dc47fca1b6d1d3db7daf80","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1921,7 +2030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:55 GMT + - Thu, 10 Sep 2026 06:51:03 GMT expires: - '-1' pragma: @@ -1933,11 +2042,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/ac90f941-5522-4bb9-a368-1518e3a52fd3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/59fbca86-4923-4ee2-b238-0881ea4b5c59 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E9AAFF96940846B7909C0D9A76250A97 Ref B: BN1AA2051013049 Ref C: 2026-04-03T02:36:55Z' + - 'Ref A: 97325D0ACCE34F24B85DE294CBEBFB18 Ref B: SYD281080709062 Ref C: 2026-09-10T06:51:02Z' status: code: 200 message: OK @@ -1955,19 +2064,20 @@ interactions: ParameterSetName: - -g -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-09-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","name":"testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80","name":"testreg000002.5016b56208dc47fca1b6d1d3db7daf80","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"testreg000002.66362881734e4a4fbb07a94f5936328d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1975,7 +2085,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:36:56 GMT + - Thu, 10 Sep 2026 06:51:03 GMT expires: - '-1' pragma: @@ -1987,11 +2097,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2fe2aadc-923f-4aa2-9017-275afb17bd3d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/57039dfd-ffb0-4f04-a4b2-ec497cff702e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E5B779A6AB2B45E5BBBE3326E5F10334 Ref B: BN1AA2051015053 Ref C: 2026-04-03T02:36:56Z' + - 'Ref A: 983160D370DB4251AC738AAD9ACAB9F5 Ref B: SYD281080708060 Ref C: 2026-09-10T06:51:03Z' status: code: 200 message: OK @@ -2011,9 +2121,9 @@ interactions: ParameterSetName: - -g --registry-name -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.81cf956c8fbb4731ad8b4e401fbe6eff?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5016b56208dc47fca1b6d1d3db7daf80?api-version=2026-09-01-preview response: body: string: '' @@ -2023,17 +2133,18 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:36:57 GMT + - Thu, 10 Sep 2026 06:51:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-fb699f47-2f05-11f1-9cec-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806180704778&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=KQwc7aOIhXJGwCEKQHdYsFUk3MAp5poKEODtEW22WP4oSv3Nwrjk-F715LgOHgban8Gq_eFGtztP2yKzW7CaXrf1WZBmQu_D7suHEpOT0Ju367ec-o7pKXWniMzi7aFiH6EjeUtlJCQg0kg3M7H7JyH3z4GezXWt_keApXsGDdOhMUQj-zpEd0sIRlrWc-mVEwkU4wo1HSpCbpD18ZRwMSWBP-d0uj09CtvkQyYUJz8M4TI9KcV7pvKXfVgljLfg4lQzbymOSnQTfW7S3oTQ6i5N_-J8EteUgnInbwLDIBPgXC-TxswSuaUJQp2H5TOQpJt1vIsD0799gkqeiSOK7g&h=lCxF7Af69t8ojV7--agiZHOdQrir-FgPTWjsyPTtaNY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-fe9ea597-ace3-11f1-b01a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198674555421&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=PHzN8Nnf6QOpdk_o2ksN1RyZIoTC0CHEzTTB1Cf-znIcjA7cSDCaN_lB_6F5DU-v6sQqUwm8a2hh4VW3PRx0GaBmLP9828Uj02VRFJaHDHzFX1LEYNgHq4X9lULcS1loj66PdKZkWODtppHSvnlqJMMYCcd-cOQLZD-gse4hvNmxaMhBP2rgUUTNRWNRsyWcNVFb3wwiyPOuHVSsEE7leQx6NHHAj0VYMNtSXzz1UuRiyj5UiPNeYVebnxj-VeSSfQS-DILZ_7Z-lTJlkbi8xmGRjM0zglzJGWFIFZvlOKrKri3XzsT084wdcYMW-prrqKBpl-dGyLRBFzd6Hmt_ng&h=TlSSyK97Bqdx6D1skoOwSy0Cow3wLvBlRHa3xhdpo5s pragma: - no-cache strict-transport-security: @@ -2043,61 +2154,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/97a7b6a9-71ea-482f-b6bb-791dbbf1823b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/18aaf56d-4d0b-43d6-937d-695c850a8485 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: BD52CBEFE0BD4F27B2F60206A66F6A06 Ref B: BN1AA2051014011 Ref C: 2026-04-03T02:36:57Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr private-endpoint-connection delete - Connection: - - keep-alive - ParameterSetName: - - -g --registry-name -n - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-fb699f47-2f05-11f1-9cec-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806180704778&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=KQwc7aOIhXJGwCEKQHdYsFUk3MAp5poKEODtEW22WP4oSv3Nwrjk-F715LgOHgban8Gq_eFGtztP2yKzW7CaXrf1WZBmQu_D7suHEpOT0Ju367ec-o7pKXWniMzi7aFiH6EjeUtlJCQg0kg3M7H7JyH3z4GezXWt_keApXsGDdOhMUQj-zpEd0sIRlrWc-mVEwkU4wo1HSpCbpD18ZRwMSWBP-d0uj09CtvkQyYUJz8M4TI9KcV7pvKXfVgljLfg4lQzbymOSnQTfW7S3oTQ6i5N_-J8EteUgnInbwLDIBPgXC-TxswSuaUJQp2H5TOQpJt1vIsD0799gkqeiSOK7g&h=lCxF7Af69t8ojV7--agiZHOdQrir-FgPTWjsyPTtaNY - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 03 Apr 2026 02:36:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-fb699f47-2f05-11f1-9cec-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806193447840&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=NPAupQTUACJ-kpHH-Nay5LNjLo_yyHTgsCmHoZA0QovSFPNtIagvc7NBazmV6Sk5xvKsDCpcE8esLESp6fB9T15-GPhg5GmxAVJ3wvrW5gly6XfigolvUgXEGOUPlQvOcjcrN8tT4psi7JMPCtrxsJzt63w66mTUsnIxNDgK2zbST1qd-so-H46nlLG-jTGh0HMRD9BEL1cULnnq3VOF8Dw1najdRJXm46i80IxZ-cMBAdCU659vjh-V_aYZ36Xngp03ngOCqfcltjuXNfduU_FfIwVSWTUHTatr1770KWtzH1hzryd6RvlAuWI7xq8P5J23nGHIrX_ozveA0YuvxQ&h=o4ezVdwvJRhWFo4GrFZL7nAvz35m_VTGxIBSRCDE4Ek - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/edbe660a-a68c-4014-b31a-61bcd9aae57e - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: BA491439BF234CC180655C798691A494 Ref B: BN1AA2051012025 Ref C: 2026-04-03T02:36:59Z' + - 'Ref A: 98B9E79B48354F02B65D47454EC047A7 Ref B: SYD281080712040 Ref C: 2026-09-10T06:51:04Z' status: code: 202 message: Accepted @@ -2115,9 +2178,9 @@ interactions: ParameterSetName: - -g --registry-name -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-fb699f47-2f05-11f1-9cec-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806193447840&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=NPAupQTUACJ-kpHH-Nay5LNjLo_yyHTgsCmHoZA0QovSFPNtIagvc7NBazmV6Sk5xvKsDCpcE8esLESp6fB9T15-GPhg5GmxAVJ3wvrW5gly6XfigolvUgXEGOUPlQvOcjcrN8tT4psi7JMPCtrxsJzt63w66mTUsnIxNDgK2zbST1qd-so-H46nlLG-jTGh0HMRD9BEL1cULnnq3VOF8Dw1najdRJXm46i80IxZ-cMBAdCU659vjh-V_aYZ36Xngp03ngOCqfcltjuXNfduU_FfIwVSWTUHTatr1770KWtzH1hzryd6RvlAuWI7xq8P5J23nGHIrX_ozveA0YuvxQ&h=o4ezVdwvJRhWFo4GrFZL7nAvz35m_VTGxIBSRCDE4Ek + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-fe9ea597-ace3-11f1-b01a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198674555421&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=PHzN8Nnf6QOpdk_o2ksN1RyZIoTC0CHEzTTB1Cf-znIcjA7cSDCaN_lB_6F5DU-v6sQqUwm8a2hh4VW3PRx0GaBmLP9828Uj02VRFJaHDHzFX1LEYNgHq4X9lULcS1loj66PdKZkWODtppHSvnlqJMMYCcd-cOQLZD-gse4hvNmxaMhBP2rgUUTNRWNRsyWcNVFb3wwiyPOuHVSsEE7leQx6NHHAj0VYMNtSXzz1UuRiyj5UiPNeYVebnxj-VeSSfQS-DILZ_7Z-lTJlkbi8xmGRjM0zglzJGWFIFZvlOKrKri3XzsT084wdcYMW-prrqKBpl-dGyLRBFzd6Hmt_ng&h=TlSSyK97Bqdx6D1skoOwSy0Cow3wLvBlRHa3xhdpo5s response: body: string: '' @@ -2127,7 +2190,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:37:10 GMT + - Thu, 10 Sep 2026 06:51:07 GMT expires: - '-1' pragma: @@ -2139,11 +2202,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/c71b41b4-c40f-4817-96d6-adb7e2a8fe16 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/d072e587-5dc5-434f-b147-f17c7efcbf6c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 782BAAA05E58474F978DC2E4DC3438BF Ref B: BN1AA2051013035 Ref C: 2026-04-03T02:37:10Z' + - 'Ref A: 3FA6783F38E54DBE963D902E5BC7C37F Ref B: SYD281080707060 Ref C: 2026-09-10T06:51:08Z' status: code: 200 message: OK @@ -2161,19 +2224,20 @@ interactions: ParameterSetName: - -g -r -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","name":"testreg000002.1d92ebc15c5046749b9a85bc5eafbd84","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d","name":"testreg000002.66362881734e4a4fbb07a94f5936328d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -2181,7 +2245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:37:11 GMT + - Thu, 10 Sep 2026 06:51:09 GMT expires: - '-1' pragma: @@ -2193,11 +2257,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/4307d44d-2af2-4a36-b328-ec291449a134 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/631712c7-8edc-454b-b9a8-4bd46f77d01d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 07932CBEC2D44526883E987346A92DE9 Ref B: BN1AA2051015039 Ref C: 2026-04-03T02:37:12Z' + - 'Ref A: 780A3F74A31B46EE8EABCF41A66AE698 Ref B: SYD281080709025 Ref C: 2026-09-10T06:51:09Z' status: code: 200 message: OK @@ -2217,9 +2281,9 @@ interactions: ParameterSetName: - -g --registry-name -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.1d92ebc15c5046749b9a85bc5eafbd84?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.66362881734e4a4fbb07a94f5936328d?api-version=2026-09-01-preview response: body: string: '' @@ -2229,17 +2293,18 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 02:37:13 GMT + - Thu, 10 Sep 2026 06:51:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-047ca761-2f06-11f1-a9c3-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806334001657&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=bIy4hxVWBq7nRN-kc21X8vN3P-tjIBB70X1kGmAZcnJu1q6t1AqtHknngt7GUsms9lh6Y2qrUAQxDHSN4yaWHsGyfYws3jOmGk0Oll184h6GwU5ZX6qQu3amb-75cqXQeeebuGXMSsbjf3R55uf1EsMbEwL4hzcBQIIjbTyrDU00rhFRLV0tTM8JmTNYXEH-ygNWj9H3iCOcwdDXZKxotK_CA6TydOJzCTF-JqLqeWEdXpiH6Ja7UvOTVS3uIkLRj87xompXCVBEJJI2ISYR8OYpnz5NULeg7SOmN0Ps_rp8YrHmcyYWyyZQvXDVSMVfD7EaV4dl2REfAQ3gw59Ljg&h=eEZRYpfzQMBuzghRWeMRLJBc1IbntXdvy1N6fMXCK30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-0233017c-ace4-11f1-9319-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198710264460&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ObRezh1_016iY74NYrbC-UOxcP_15aTHW0UaWEdCTq-MoU0xBW7OTlQ0Gp_67EsNIZ2Ah_xCExYxDWzSIYIHBGLHkNUr99IYMO1IzhUjY62H4AKw5OTV6FaK19cXNNQbxIWK121CSSvvzIDjhTLXpi4NmL1qACGxfQTwkD5KWmxZ0knZIN1h9v9P7D-R5Vd5edjSYw3zmfb1gtT8-HeWUjH8xxiYV_1zykrfp_Z-hVmqqxFElX-aHyORUSqQz7T-BEZoUajjTxwOuCcSfCMDsVnWJEW_fHvpR0iX9R-eAiD0G2nv4rYP-gAjdMU9uzPUShb0YohmEaHqbHFg9XmIAg&h=-kH5rVy-pEN08e2kIkejcu3xD7eODVfNNGlGgo6xjcU pragma: - no-cache strict-transport-security: @@ -2249,13 +2314,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/30653abb-0133-4afc-9a38-a9b7e8955f1c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/89b9b4d4-85f2-4f52-979c-ad6179efca10 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 0C3BD53B35A24F9793701F485B4CBDEB Ref B: BN1AA2051015027 Ref C: 2026-04-03T02:37:13Z' + - 'Ref A: 95496FF6E04A4178B4D932325E8ED205 Ref B: SYD281080705062 Ref C: 2026-09-10T06:51:10Z' status: code: 202 message: Accepted @@ -2273,9 +2338,9 @@ interactions: ParameterSetName: - -g --registry-name -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-047ca761-2f06-11f1-a9c3-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639107806334001657&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=bIy4hxVWBq7nRN-kc21X8vN3P-tjIBB70X1kGmAZcnJu1q6t1AqtHknngt7GUsms9lh6Y2qrUAQxDHSN4yaWHsGyfYws3jOmGk0Oll184h6GwU5ZX6qQu3amb-75cqXQeeebuGXMSsbjf3R55uf1EsMbEwL4hzcBQIIjbTyrDU00rhFRLV0tTM8JmTNYXEH-ygNWj9H3iCOcwdDXZKxotK_CA6TydOJzCTF-JqLqeWEdXpiH6Ja7UvOTVS3uIkLRj87xompXCVBEJJI2ISYR8OYpnz5NULeg7SOmN0Ps_rp8YrHmcyYWyyZQvXDVSMVfD7EaV4dl2REfAQ3gw59Ljg&h=eEZRYpfzQMBuzghRWeMRLJBc1IbntXdvy1N6fMXCK30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/eastus2/operationResults/privateendpointconnections-0233017c-ace4-11f1-9319-3cefa50a58cc?api-version=2026-09-01-preview&t=639246198710264460&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ObRezh1_016iY74NYrbC-UOxcP_15aTHW0UaWEdCTq-MoU0xBW7OTlQ0Gp_67EsNIZ2Ah_xCExYxDWzSIYIHBGLHkNUr99IYMO1IzhUjY62H4AKw5OTV6FaK19cXNNQbxIWK121CSSvvzIDjhTLXpi4NmL1qACGxfQTwkD5KWmxZ0knZIN1h9v9P7D-R5Vd5edjSYw3zmfb1gtT8-HeWUjH8xxiYV_1zykrfp_Z-hVmqqxFElX-aHyORUSqQz7T-BEZoUajjTxwOuCcSfCMDsVnWJEW_fHvpR0iX9R-eAiD0G2nv4rYP-gAjdMU9uzPUShb0YohmEaHqbHFg9XmIAg&h=-kH5rVy-pEN08e2kIkejcu3xD7eODVfNNGlGgo6xjcU response: body: string: '' @@ -2285,7 +2350,7 @@ interactions: content-length: - '0' date: - - Fri, 03 Apr 2026 02:37:14 GMT + - Thu, 10 Sep 2026 06:51:12 GMT expires: - '-1' pragma: @@ -2297,11 +2362,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/8cbcd6fc-6c9b-4fa5-9d50-3e96e09afcdc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/f5bdb3f3-b912-440d-91e2-93a840a36cab x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1372EAD12CD3473F82568E7D1298DB17 Ref B: BN1AA2051014021 Ref C: 2026-04-03T02:37:14Z' + - 'Ref A: A613B911F0F74108B5EB703778A30B33 Ref B: SYD281080709031 Ref C: 2026-09-10T06:51:11Z' status: code: 200 message: OK @@ -2319,9 +2384,9 @@ interactions: ParameterSetName: - -g -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2026-09-01-preview response: body: string: '{"value":[]}' @@ -2331,7 +2396,8 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -2339,7 +2405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:37:15 GMT + - Thu, 10 Sep 2026 06:51:12 GMT expires: - '-1' pragma: @@ -2351,11 +2417,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/c0020d7b-0594-4198-a9f5-9861ff4d2550 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/8be0cf49-a478-4a32-b297-95192520f14d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5A8D8C85A5E949A68D41E38563D73AC8 Ref B: BN1AA2051014017 Ref C: 2026-04-03T02:37:15Z' + - 'Ref A: 3EEFEB3DBE1846CC9820537A37628110 Ref B: SYD281080707062 Ref C: 2026-09-10T06:51:13Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access.yaml index 7cd24c99660..f4bbcd69058 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_public_network_access","date":"2026-04-03T02:32:10Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_public_network_access","date":"2026-09-10T06:51:15Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:16 GMT + - Thu, 10 Sep 2026 06:51:18 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 56870A076D5D43E89AECFD6B308E64B7 Ref B: BN1AA2051015021 Ref C: 2026-04-03T02:32:17Z' + - 'Ref A: 0A4B18600379496D8901BBA664A50FE0 Ref B: SYD281080707025 Ref C: 2026-09-10T06:51:19Z' status: code: 200 message: OK @@ -64,23 +64,23 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:20.5036465+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:32:20.5036465Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:32.3460808+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:32.3461282+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:22.0823646+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:22.0823646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:51:31.185577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:51:31.1856172+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:32 GMT + - Thu, 10 Sep 2026 06:51:31 GMT expires: - '-1' pragma: @@ -92,13 +92,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b8b4c26a-27bc-42dc-9f86-730002aa356c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/da8f5db6-f6b9-4e92-a402-c56cc3eb7da7 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: A3462586391D4746B60E76B30016901C Ref B: BN1AA2051012009 Ref C: 2026-04-03T02:32:19Z' + - 'Ref A: 64CE8A47AE7547E4B0C904E2A30CF18B Ref B: SYD281080710025 Ref C: 2026-09-10T06:51:19Z' status: code: 200 message: OK @@ -116,23 +116,23 @@ interactions: ParameterSetName: - --name --resource-group --public-network-enabled --allow-trusted-services User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:20.5036465+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:32:20.5036465Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:32.3460808+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:32.3461282+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:22.0823646+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:22.0823646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:51:31.185577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:51:31.1856172+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:34 GMT + - Thu, 10 Sep 2026 06:51:32 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A69A4F48F7E8470688726E77004FE957 Ref B: BN1AA2051014011 Ref C: 2026-04-03T02:32:34Z' + - 'Ref A: E5555CD2825E4B9D8B59CD0D2D9F8FD4 Ref B: SYD281080712029 Ref C: 2026-09-10T06:51:32Z' status: code: 200 message: OK @@ -169,23 +169,23 @@ interactions: ParameterSetName: - --name --resource-group --public-network-enabled --allow-trusted-services User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:37.5368862+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:32:20.5036465Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:32.3460808+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:32.3461282+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"None","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:33.8338518+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:22.0823646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:51:31.185577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:51:31.1856172+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"None","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1659' + - '1715' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:37 GMT + - Thu, 10 Sep 2026 06:51:33 GMT expires: - '-1' pragma: @@ -197,13 +197,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/7d74f4a8-be01-48cf-b785-c0f24adb9531 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/982455ae-d01c-49a0-b5e4-6b64e4c850da x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: B6663C4748B04B14A406C4EF665FC9FD Ref B: BN1AA2051012045 Ref C: 2026-04-03T02:32:37Z' + - 'Ref A: 8A26E33BA5464D8FB9C215CB4350F2A2 Ref B: SYD281080707023 Ref C: 2026-09-10T06:51:33Z' status: code: 200 message: OK @@ -221,23 +221,23 @@ interactions: ParameterSetName: - --name --resource-group --allow-trusted-services User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:37.5368862+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:32:20.5036465Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:32.3460808+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:32.3461282+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"None","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:33.8338518+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:22.0823646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:51:31.185577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:51:31.1856172+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"None","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1659' + - '1715' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:39 GMT + - Thu, 10 Sep 2026 06:51:34 GMT expires: - '-1' pragma: @@ -251,7 +251,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8125E91260A640CBBB4C08BD223863CA Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:32:39Z' + - 'Ref A: CA26E853786B41B6A91C268719694E49 Ref B: SYD281080710052 Ref C: 2026-09-10T06:51:34Z' status: code: 200 message: OK @@ -273,23 +273,23 @@ interactions: ParameterSetName: - --name --resource-group --allow-trusted-services User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:20.5036465+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:42.293725+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:32:20.5036465Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:32.3460808+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:32.3461282+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:22.0823646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:35.6594878+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:22.0823646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:51:31.185577+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:51:31.1856172+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1667' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:42 GMT + - Thu, 10 Sep 2026 06:51:35 GMT expires: - '-1' pragma: @@ -301,13 +301,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/4e90a693-1b8c-40b3-97fa-fee924fe6b39 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b2025956-e360-4de9-8176-8cce783e9327 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6DFCB48E6FEC44CB9189586FFE500FE9 Ref B: BN1AA2051013011 Ref C: 2026-04-03T02:32:41Z' + - 'Ref A: A3BDD047722D43748FF3B57616D2C8C9 Ref B: SYD281080709054 Ref C: 2026-09-10T06:51:35Z' status: code: 200 message: OK @@ -325,12 +325,12 @@ interactions: ParameterSetName: - --name --resource-group --sku --public-network-enabled --allow-trusted-services User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_public_network_access","date":"2026-04-03T02:32:10Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_public_network_access","date":"2026-09-10T06:51:15Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -339,7 +339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:44 GMT + - Thu, 10 Sep 2026 06:51:36 GMT expires: - '-1' pragma: @@ -353,7 +353,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC75CA6461EA423B97A9D1A70D763D67 Ref B: BN1AA2051013031 Ref C: 2026-04-03T02:32:44Z' + - 'Ref A: 09215266266A4F4FAD6B84F61434C57F Ref B: SYD281080707042 Ref C: 2026-09-10T06:51:36Z' status: code: 200 message: OK @@ -377,23 +377,23 @@ interactions: ParameterSetName: - --name --resource-group --sku --public-network-enabled --allow-trusted-services User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:32:47.4406113+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:32:47.4406113+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2026-04-03T02:32:47.4406113Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:32:54.2723638+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:32:54.2724088+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"None","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:37.7034045+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:37.7034045+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2026-09-10T06:51:37.7034045Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:51:44.6562153+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:51:44.656251+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"None","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1662' + - '1718' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:54 GMT + - Thu, 10 Sep 2026 06:51:44 GMT expires: - '-1' pragma: @@ -405,13 +405,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b6214604-1fb7-41e3-87ef-1502d260d948 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3296f390-62cb-40d8-9183-ce53f7b5eebd x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 42D79D92CFE8462BB2F55370ED1D2986 Ref B: BN1AA2051014039 Ref C: 2026-04-03T02:32:46Z' + - 'Ref A: 85ABEE999A70402BA26E8A9F802999DB Ref B: SYD281080706031 Ref C: 2026-09-10T06:51:37Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access_disabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access_disabled.yaml index 6d606b1b85b..20b95b080df 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access_disabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_public_network_access_disabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_public_network_access_disabled","date":"2026-04-03T02:31:09Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_public_network_access_disabled","date":"2026-09-10T06:51:47Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:21 GMT + - Thu, 10 Sep 2026 06:51:50 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 094E9846C7694F26A5E71A776741A7EF Ref B: BN1AA2051012039 Ref C: 2026-04-03T02:31:21Z' + - 'Ref A: 6C878E5615C14450B1FC771704CC353F Ref B: SYD281080709042 Ref C: 2026-09-10T06:51:50Z' status: code: 200 message: OK @@ -64,23 +64,23 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:26.6785239+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:31:26.6785239Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581781+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:52.1487214+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:52.1487214Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:04.1289869+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:04.1290304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:33 GMT + - Thu, 10 Sep 2026 06:52:03 GMT expires: - '-1' pragma: @@ -92,13 +92,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/17ecf826-a6fe-4fbb-b3f8-281aeca73f7e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/471f2b28-100e-4c85-b697-88630280326b x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: BEE6E77120C04A50A52DB2178B61BFCA Ref B: BN1AA2051013029 Ref C: 2026-04-03T02:31:26Z' + - 'Ref A: FC5304BAE90147729AC5D9AC2C46AEAD Ref B: SYD281080706023 Ref C: 2026-09-10T06:51:51Z' status: code: 200 message: OK @@ -116,23 +116,23 @@ interactions: ParameterSetName: - --name --resource-group --public-network-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:26.6785239+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:31:26.6785239Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581781+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:51:52.1487214+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:52.1487214Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:04.1289869+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:04.1290304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:38 GMT + - Thu, 10 Sep 2026 06:52:05 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F26A9EA973BD4FD0811E9CD25744A6A0 Ref B: BN1AA2051013045 Ref C: 2026-04-03T02:31:38Z' + - 'Ref A: 3F9DE4FCFD3A429AB8662CD9D17AD921 Ref B: SYD281080709042 Ref C: 2026-09-10T06:52:05Z' status: code: 200 message: OK @@ -169,23 +169,23 @@ interactions: ParameterSetName: - --name --resource-group --public-network-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:43.4902771+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:31:26.6785239Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581781+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:07.5613028+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:52.1487214Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:04.1289869+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:04.1290304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:42 GMT + - Thu, 10 Sep 2026 06:52:07 GMT expires: - '-1' pragma: @@ -197,13 +197,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5158658c-172f-4301-80ab-03062f3ba510 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/dbbcd64a-9668-46d4-8d7a-497de58fa49b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 210762529BF34A52AD280D094A769A0E Ref B: BN1AA2051013025 Ref C: 2026-04-03T02:31:43Z' + - 'Ref A: BC35C45973944BC59D0CCFCCB5CDD1C0 Ref B: SYD281080705040 Ref C: 2026-09-10T06:52:06Z' status: code: 200 message: OK @@ -221,23 +221,23 @@ interactions: ParameterSetName: - --name --resource-group --public-network-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:43.4902771+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:31:26.6785239Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581781+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:07.5613028+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:52.1487214Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:04.1289869+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:04.1290304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Disabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1668' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:48 GMT + - Thu, 10 Sep 2026 06:52:08 GMT expires: - '-1' pragma: @@ -251,7 +251,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E46F45126BDC4A2CB56B85B6859FB5A4 Ref B: BN1AA2051012021 Ref C: 2026-04-03T02:31:48Z' + - 'Ref A: C95FA37455D14B13B2A8952E176BDC2F Ref B: SYD281080712023 Ref C: 2026-09-10T06:52:08Z' status: code: 200 message: OK @@ -273,23 +273,23 @@ interactions: ParameterSetName: - --name --resource-group --public-network-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:31:26.6785239+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:31:52.7759837+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-03T02:31:26.6785239Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:31:33.6581781+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:51:52.1487214+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:52:10.9982419+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T06:51:52.1487214Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:52:04.1289869+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:52:04.1290304+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1667' + - '1724' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:31:52 GMT + - Thu, 10 Sep 2026 06:52:10 GMT expires: - '-1' pragma: @@ -301,13 +301,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/4616be9d-87de-4889-b5ff-3259250c894f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/7b402f7c-2b75-40c6-99ea-aedfd696e531 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 15E86ECC61064268801258FC06492ADE Ref B: BN1AA2051012019 Ref C: 2026-04-03T02:31:52Z' + - 'Ref A: 759655DE2A0745B18114F2D1966D0D4C Ref B: SYD281080707062 Ref C: 2026-09-10T06:52:09Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_zone_redundancy.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_zone_redundancy.yaml index b1fbabc4112..e39b0a83f84 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_zone_redundancy.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_with_zone_redundancy.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_zone_redundancy","date":"2025-05-16T02:59:30Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_zone_redundancy","date":"2026-09-10T10:01:12Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 02:59:33 GMT + - Thu, 10 Sep 2026 10:01:19 GMT expires: - '-1' pragma: @@ -39,15 +39,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 02928792DAD547939EDE9C2B87A4AE84 Ref B: TYO01EDGE1508 Ref C: 2025-05-16T02:59:33Z' + - 'Ref A: 6F63899B08F542C78475B29F69877D73 Ref B: SG2AA1070304042 Ref C: 2026-09-10T10:01:20Z' status: code: 200 message: OK - request: body: '{"location": "eastus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": - false, "anonymousPullEnabled": false}}' + false}}' headers: Accept: - application/json @@ -58,31 +58,29 @@ interactions: Connection: - keep-alive Content-Length: - - '124' + - '93' Content-Type: - application/json ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:35.3104046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:35.3104046+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T02:59:35.3104046Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:42.389143+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:42.3891753+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:22.1816727+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:22.1816727+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T10:01:22.1816727Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:35.0173993+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:35.0174351+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-05-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-caa7858f-3201-11f0-8524-644ed7a2823f?api-version=2026-03-01-preview&t=638829611827634653&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=rj3BwAdR6sNbX-hW9Yo6hsFlpFfxuBEPb6_EIp2eod90BnJTuDv_tlN6VUQTo3Ule1Ukp4zC4ISmcC4yQ7SgmEP1iIxAyMSCiy1TZUx_l4FbMPHC7H6s4l25vxr6O66p4D0WMN3e982Ap9lbgCerSLoYQu3BTHpK2X4P61I830rSBP2I68m_F6pqxYgZlYQTJFtJwtXz1vMzEJw6xwRZ8mve2kNG6sEQrfWztKmZthRRS784k5TZTAT0K8P_7qb6mXMsxQEm1WGkDKyN5KTIlZNSn26M1erxhTnZaNxDTna81OukNo1bbjLCZc-eMpTBEGsxyJR3vpkuHwGtHGSRAA&h=HDX_0EoppyzfZp3w_hnXRjwHEb8XFJaWPX00QPU7bnI + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1537' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 02:59:42 GMT + - Thu, 10 Sep 2026 10:01:35 GMT expires: - '-1' pragma: @@ -94,21 +92,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/bcf969fa-905b-48ca-b666-3318350230ca + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/d8750a29-bde8-4a75-8950-0071ef35ee75 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: A3A53F5986444FAC8CF57FC293DCAD41 Ref B: TYO01EDGE3121 Ref C: 2025-05-16T02:59:34Z' + - 'Ref A: EF877AF909354D16BAEDF299973AA8D1 Ref B: SG2AA1070302031 Ref C: 2026-09-10T10:01:21Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -116,27 +114,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --sku + - --name --resource-group --sku --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-caa7858f-3201-11f0-8524-644ed7a2823f?api-version=2026-03-01-preview&t=638829611827634653&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=rj3BwAdR6sNbX-hW9Yo6hsFlpFfxuBEPb6_EIp2eod90BnJTuDv_tlN6VUQTo3Ule1Ukp4zC4ISmcC4yQ7SgmEP1iIxAyMSCiy1TZUx_l4FbMPHC7H6s4l25vxr6O66p4D0WMN3e982Ap9lbgCerSLoYQu3BTHpK2X4P61I830rSBP2I68m_F6pqxYgZlYQTJFtJwtXz1vMzEJw6xwRZ8mve2kNG6sEQrfWztKmZthRRS784k5TZTAT0K8P_7qb6mXMsxQEm1WGkDKyN5KTIlZNSn26M1erxhTnZaNxDTna81OukNo1bbjLCZc-eMpTBEGsxyJR3vpkuHwGtHGSRAA&h=HDX_0EoppyzfZp3w_hnXRjwHEb8XFJaWPX00QPU7bnI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_zone_redundancy","date":"2026-09-10T10:01:12Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: - api-supported-versions: - - 2025-05-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-caa7858f-3201-11f0-8524-644ed7a2823f?api-version=2026-03-01-preview&t=638829611839245648&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=IoGOwWcATdL7gLDH_KRXwaPrGfJUfNf8b425QRlIE3ycFJOwgogp4H-JjGhAbMwxkIiHo5-cPOlghpKzneCYUwqQHg2-i71qNS2RJ_8hSXb6UwAhTHzxHrh6sWR2oJLyOJ2gP4R_M3KaK4XiGBAN6fuyF-p52O_qpTRJIL31hNXVGUDYqtygb6x-gc-3Q04wPqKGg3ui_JTOu0_Z6b1SmXQLEQ-bn6fNBJrC39zm3z9wNJf5Cla8SZ4BQO2JQOg3PgIvjKoJoYqb5rJHAW2zAxG2LV0TdZ8S8KG_GTyQ68Kdwt9Z-4d00zK301S8xKlm7BikA0W7Y3i2WcrGwTezQw&h=Z7QzpKPZKWPpHXvKKc1mfVveJSyrES5XGgtkOS7skXQ cache-control: - no-cache content-length: - - '22' + - '364' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 02:59:43 GMT + - Thu, 10 Sep 2026 10:01:36 GMT expires: - '-1' pragma: @@ -147,46 +141,49 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/0ba3019b-4697-411b-a3d9-89f227e0d903 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 60078ED64C984CD0A3C2D0DA4B2F0AFE Ref B: TYO01EDGE3121 Ref C: 2025-05-16T02:59:43Z' + - 'Ref A: 0A121BE6B8D0475099A87F5F2E3D607A Ref B: SG2AA1070301052 Ref C: 2026-09-10T10:01:36Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": + false, "zoneRedundancy": "Enabled"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - acr create Connection: - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json ParameterSetName: - - --name --resource-group --sku + - --name --resource-group --sku --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:35.3104046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:35.3104046+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T02:59:35.3104046Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:42.389143+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:42.3891753+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:43.1915494+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:43.1915494+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2026-09-10T10:01:43.1915494Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:50.3353923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:50.3354266+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-05-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1538' + - '1727' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 02:59:44 GMT + - Thu, 10 Sep 2026 10:01:50 GMT expires: - '-1' pragma: @@ -197,10 +194,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/malaysiasouth/bb5a8f91-0f27-40dc-8ddd-941c5187f60e + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' + x-ms-ratelimit-remaining-subscription-writes: + - '800' x-msedge-ref: - - 'Ref A: AAC1D341A1E24F34BEA8149602BD29F4 Ref B: TYO01EDGE3121 Ref C: 2025-05-16T02:59:44Z' + - 'Ref A: 55C70E451AC44A8B9111F67732B6BC04 Ref B: SG2AA1040513031 Ref C: 2026-09-10T10:01:38Z' status: code: 200 message: OK @@ -212,27 +213,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr create + - acr replication create Connection: - keep-alive ParameterSetName: - - --name --resource-group --sku --zone-redundancy + - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_acr_with_zone_redundancy","date":"2025-05-16T02:59:30Z","module":"acr","Creator":"test@example.com","DateCreated":"2025-05-16T02:59:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:22.1816727+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:22.1816727+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-10T10:01:22.1816727Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:35.0173993+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:35.0174351+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: + api-supported-versions: + - 2026-09-01-preview cache-control: - no-cache content-length: - - '430' + - '1725' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 02:59:45 GMT + - Thu, 10 Sep 2026 10:01:51 GMT expires: - '-1' pragma: @@ -244,50 +247,54 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 4AD0D4879CBD48F195A8E4C91E89BDD7 Ref B: TYO01EDGE1812 Ref C: 2025-05-16T02:59:46Z' + - 'Ref A: 85D9CB22E42F42958E41D248FFDB7449 Ref B: SG2AA1070304036 Ref C: 2026-09-10T10:01:52Z' status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": - false, "zoneRedundancy": "Enabled", "anonymousPullEnabled": false}}' + body: '{"location": "eastus2", "properties": {"zoneRedundancy": "Enabled"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr create + - acr replication create Connection: - keep-alive Content-Length: - - '153' + - '68' Content-Type: - application/json ParameterSetName: - - --name --resource-group --sku --zone-redundancy + - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:48.4138389+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:48.4138389+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2025-05-16T02:59:48.4138389Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983747+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:54.0581251+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:54.0581251+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-09-10T10:01:54.4477519Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Enabled"}}' headers: api-supported-versions: - - 2025-05-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, + 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/operationStatuses/registries-d1e52bbf-3201-11f0-a3e6-644ed7a2823f?api-version=2026-03-01-preview&t=638829611960858098&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=SpRXU82TYVttLBbuZzgd2UY353rlzKfihe3B2Lcvd7dPRPDrNnJXKoQD_06uXPCGuMmOXsLpCGLJJggDBCzFCOa2q-NGla3AVQhgEgqKL6wl9NosnPykpzDupvuPRKuV2NKr0w2wlpLv6w-mk-bE_LoQJPmXIFV1pp7fTXAc_b518hwyWbgTYe7ZWZiR9Cp7-cn1urfmwM6OICdD00nDjer-vCnTv_jNOMa3Y3APBrM14YAcCjPH5wKErG1fyHgQfg3L-edlxj9XSt7dpb13LhDaV5GWFELLxcFBiKrxEHcxNQnTNrB7-fGnMKvsU25s6Kss4Yj2P73zrYxpB9Inyg&h=P5XAoOxJ0BqB8F5D3bF9auydTCMb_ng1sz0jJ1w1fyA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-a48fd912-acfe-11f1-8ce6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313145581369&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=xOf8glK_9thJBvBzi-5_-2oF8ByB9c_lEerdWislmJ2A5WOdh7Rixj-B75EAEkl62mf5KPfwDVMXGqz-rOwDmPLqmTyLExVlaqF9mmxxmF59U8lU2N6kXVfrHp7UrnGktvGK9MPAGbEqgBPNU1-UdQlr7765wr3mWvgPlmR6IlD-gLX03eCqcmY5ijwlf2QQVgMN6SWlq2Ngk_5WMWwpxn0J3p9K-N6nmBjorSq-ERzEUDgLHiJeAOU9pqUTiVgoMbouhqKyg6Aaf_cBKnP9Mp7LD7ofdP4Bz9JR1o4dxnhLPJbpdSnBvDrh2MNQM9zu-4vFS3ie-LOslDR1LsauPQ&h=0zZvhN7LrLzhG5hT_ZjWS1ODw0kZyfPdWlScLLixWFg cache-control: - no-cache content-length: - - '1540' + - '675' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 02:59:55 GMT + - Thu, 10 Sep 2026 10:01:54 GMT expires: - '-1' pragma: @@ -299,13 +306,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/e7ba02fe-904b-42d4-84e4-f05cd51e41cf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/7971f774-a7d9-4122-aaab-3de223825392 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: D38F3C20939641D9A347313244A6AF1F Ref B: TYO01EDGE3417 Ref C: 2025-05-16T02:59:46Z' + - 'Ref A: 94D8FA08F29C47CAA85590D6F9EE7F5A Ref B: SG2AA1070302034 Ref C: 2026-09-10T10:01:53Z' status: code: 201 message: Created @@ -317,23 +324,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr create + - acr replication create Connection: - keep-alive ParameterSetName: - - --name --resource-group --sku --zone-redundancy + - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/operationStatuses/registries-d1e52bbf-3201-11f0-a3e6-644ed7a2823f?api-version=2026-03-01-preview&t=638829611960858098&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=SpRXU82TYVttLBbuZzgd2UY353rlzKfihe3B2Lcvd7dPRPDrNnJXKoQD_06uXPCGuMmOXsLpCGLJJggDBCzFCOa2q-NGla3AVQhgEgqKL6wl9NosnPykpzDupvuPRKuV2NKr0w2wlpLv6w-mk-bE_LoQJPmXIFV1pp7fTXAc_b518hwyWbgTYe7ZWZiR9Cp7-cn1urfmwM6OICdD00nDjer-vCnTv_jNOMa3Y3APBrM14YAcCjPH5wKErG1fyHgQfg3L-edlxj9XSt7dpb13LhDaV5GWFELLxcFBiKrxEHcxNQnTNrB7-fGnMKvsU25s6Kss4Yj2P73zrYxpB9Inyg&h=P5XAoOxJ0BqB8F5D3bF9auydTCMb_ng1sz0jJ1w1fyA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-a48fd912-acfe-11f1-8ce6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313145581369&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=xOf8glK_9thJBvBzi-5_-2oF8ByB9c_lEerdWislmJ2A5WOdh7Rixj-B75EAEkl62mf5KPfwDVMXGqz-rOwDmPLqmTyLExVlaqF9mmxxmF59U8lU2N6kXVfrHp7UrnGktvGK9MPAGbEqgBPNU1-UdQlr7765wr3mWvgPlmR6IlD-gLX03eCqcmY5ijwlf2QQVgMN6SWlq2Ngk_5WMWwpxn0J3p9K-N6nmBjorSq-ERzEUDgLHiJeAOU9pqUTiVgoMbouhqKyg6Aaf_cBKnP9Mp7LD7ofdP4Bz9JR1o4dxnhLPJbpdSnBvDrh2MNQM9zu-4vFS3ie-LOslDR1LsauPQ&h=0zZvhN7LrLzhG5hT_ZjWS1ODw0kZyfPdWlScLLixWFg response: body: string: '{"status":"Creating"}' headers: api-supported-versions: - - 2025-05-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, + 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/operationStatuses/registries-d1e52bbf-3201-11f0-a3e6-644ed7a2823f?api-version=2026-03-01-preview&t=638829611974047471&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=bcy0IyG34YoVnbAF-3DowIZx3SRq51qeV_BUgUKjlxjWM8c1Tue9ACePGOgclIiZcE3ESgTm6-QvOmDhVCu5j1iODi2hiW8W9BCPSbajqi7hjLgeeeZUPcJI8x1XfBipKQBG7cv7v80EWvhxMWkgpobarkJ3GTN3DvGyUqNGNgXdV_Nld8Pi4Q1f3GgM2-28Dl5Ontm4fnT8Yi-H5T65AEUfQL1nGjjmtB_JCHqgLPaJPE_8MeAB0JqpfiUlGE6dpsHxqAHFPTs4TqPPzRvtxwvvIVRvN0IO0_99y5Y_QATW6AL2A1xcKznV68soH9_odniuk3sFmfFgRHaeY0Jqyg&h=UbOPleA_2mW17f_TF4I3Npy3pYMeT4esjbcMB9VtwlI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-a48fd912-acfe-11f1-8ce6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313160447685&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=oHnVuGgbsoYdit8FksH_sM595S5S6W4HEY2Dmy86rqhcbA8BZGn_45PiDj1bMhj1-eFB96DIu1u3HyBlaFHRUSCQuez5YJQf2J38H7Fv2Y18v7l9sFlqWf-jv4jW54jj2tb192qrZxK2PRtxNerUYc0jkxlvm9c_c7QHA2cPXtZwQcmNDhxf9-CsAT0d7mHOZYJDMQl2XpD9m0JchaCUOpb_pwYM-pqKEyWphIbhfa6Ytvc8NKbspkoKp1RLfZfO6F2OUp6-FdtrqzKrYJLXDuxp_RWOQFmfkzt3x_mhaiAX_W4Emak6BMefiaCJwyPvC5yBbzK90CFcneBImvrjMw&h=0AB1T5iOQBjyHkUCVYDDIQAqB73hqhwXR1-LUb-NVQY cache-control: - no-cache content-length: @@ -341,7 +353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 02:59:56 GMT + - Thu, 10 Sep 2026 10:01:55 GMT expires: - '-1' pragma: @@ -353,11 +365,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/eb2bbd55-c90e-4736-a537-dbc042819451 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/f13ca048-1643-413b-a8a6-38dc03744c1a x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 161356C70E2242DB8DD13A0862C9369F Ref B: TYO01EDGE3417 Ref C: 2025-05-16T02:59:56Z' + - 'Ref A: 9E47716B51994FB9A3221A46F1A00796 Ref B: SG2AA1070303034 Ref C: 2026-09-10T10:01:55Z' status: code: 200 message: OK @@ -369,23 +381,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr create + - acr replication create Connection: - keep-alive ParameterSetName: - - --name --resource-group --sku --zone-redundancy + - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/operationStatuses/registries-d1e52bbf-3201-11f0-a3e6-644ed7a2823f?api-version=2026-03-01-preview&t=638829611960858098&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=SpRXU82TYVttLBbuZzgd2UY353rlzKfihe3B2Lcvd7dPRPDrNnJXKoQD_06uXPCGuMmOXsLpCGLJJggDBCzFCOa2q-NGla3AVQhgEgqKL6wl9NosnPykpzDupvuPRKuV2NKr0w2wlpLv6w-mk-bE_LoQJPmXIFV1pp7fTXAc_b518hwyWbgTYe7ZWZiR9Cp7-cn1urfmwM6OICdD00nDjer-vCnTv_jNOMa3Y3APBrM14YAcCjPH5wKErG1fyHgQfg3L-edlxj9XSt7dpb13LhDaV5GWFELLxcFBiKrxEHcxNQnTNrB7-fGnMKvsU25s6Kss4Yj2P73zrYxpB9Inyg&h=P5XAoOxJ0BqB8F5D3bF9auydTCMb_ng1sz0jJ1w1fyA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-a48fd912-acfe-11f1-8ce6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313145581369&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=xOf8glK_9thJBvBzi-5_-2oF8ByB9c_lEerdWislmJ2A5WOdh7Rixj-B75EAEkl62mf5KPfwDVMXGqz-rOwDmPLqmTyLExVlaqF9mmxxmF59U8lU2N6kXVfrHp7UrnGktvGK9MPAGbEqgBPNU1-UdQlr7765wr3mWvgPlmR6IlD-gLX03eCqcmY5ijwlf2QQVgMN6SWlq2Ngk_5WMWwpxn0J3p9K-N6nmBjorSq-ERzEUDgLHiJeAOU9pqUTiVgoMbouhqKyg6Aaf_cBKnP9Mp7LD7ofdP4Bz9JR1o4dxnhLPJbpdSnBvDrh2MNQM9zu-4vFS3ie-LOslDR1LsauPQ&h=0zZvhN7LrLzhG5hT_ZjWS1ODw0kZyfPdWlScLLixWFg response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2025-05-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, + 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/operationStatuses/registries-d1e52bbf-3201-11f0-a3e6-644ed7a2823f?api-version=2026-03-01-preview&t=638829612087264800&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=ReusfnYDQ6Zb79zDCKAE5DkW0m6-zigxasPeuPTwBB5UCYn5PtEroydgmJDh1GPnOIjpfD4SHoMQX11N2UPARh0uDCULmXC5yn7hL_faUwRfQpYs91DIavsryf8WJmEPOAveGyhqvKqFJ9QTWvnMumTO6wctYkSN8mVLpJ93o-yzd-xHqRh4ps64RFw20KhOWHfUSOJebPT38H-uwr34EO20r8yhV8NL5VOCwevk4Sliob6BPJiIeyACa8iPjVFD1rn69iwn7cf6bB06ejpcPUTWyZhKktJK-Bz2-SPLILFVSvb1KfeAgeQs12udTNoWj_pihnsfRCGOnFlTKEprJw&h=e41XrAXFmNPuzdg0oH_gGQvSJiSkuyGTRQG4zZT7bTU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-a48fd912-acfe-11f1-8ce6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313283032543&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=zM5AeM_NqPkV1a3h1pAA9G3UP7asCQmhdoTCk2GhlsW-_tpJS8nQwb7YCVKnXlcBz-4ittxuKw7MJ06N50TOZTNBeqVmePc1uo5jybsNkWhHlDdj_UkqaSdghNuVfmVdO0dkkaydzwvZHNDW-_i-J2JSBMPFCx5KDaHeoiJNdOdZhaUexremYjbbAOvglSRzFrN8lDP2dq1psTNcMVbCiM-jp5sZuTmsgK9gfkW-kQW2nm6mO3l1AOWcMyPwUapoaMyQ60mGWgLGluCGXgAZQoCXqaB2ZIrWnrPdNSJl3bYNAhF5vdcDPVe6cc90t7wtflu6t4zAmEOBYO3cM5pFGA&h=Tc6gzIiqHWbSJV4k6vEJzFIGRwAm-JQDKrnWyX_LjD8 cache-control: - no-cache content-length: @@ -393,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:07 GMT + - Thu, 10 Sep 2026 10:02:08 GMT expires: - '-1' pragma: @@ -405,11 +422,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/3744033a-fe6c-403d-9917-a55bb7c17fe7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/c3a85a7e-3959-44bb-bb56-267e80d1a46b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7F5A0944539F47BDA884DB8AFA4F13B1 Ref B: TYO01EDGE3417 Ref C: 2025-05-16T03:00:08Z' + - 'Ref A: 067862C5DD934FF090BC47C8EB55648D Ref B: SG2AA1070306036 Ref C: 2026-09-10T10:02:07Z' status: code: 200 message: OK @@ -421,128 +438,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --zone-redundancy - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:48.4138389+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:48.4138389+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2025-05-16T02:59:48.4138389Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983747+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-05-01-preview - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 03:00:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: A8736F529E874163898C607E27D71CC8 Ref B: TYO01EDGE3417 Ref C: 2025-05-16T03:00:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication show - Connection: - - keep-alive - ParameterSetName: - - --name --registry --resource-group - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:48.4138389+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:48.4138389+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2025-05-16T02:59:48.4138389Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983747+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-05-01-preview - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 03:00:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1485FB92307E4D8C9DD2B7580B1DB4F8 Ref B: TYO201151005054 Ref C: 2025-05-16T03:00:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication show + - acr replication create Connection: - keep-alive ParameterSetName: - - --name --registry --resource-group + - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus","name":"eastus","location":"eastus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2025-05-16T02:59:56.5979169+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2025-05-16T02:59:56.5979169+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2025-05-16T03:00:06.5600385Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:54.0581251+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:54.0581251+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T10:02:05.1722558Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Enabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '752' + - '700' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:11 GMT + - Thu, 10 Sep 2026 10:02:09 GMT expires: - '-1' pragma: @@ -554,9 +477,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B78271F54AF04A2282524A5AEE4DBCF9 Ref B: TYO201151004052 Ref C: 2025-05-16T03:00:11Z' + - 'Ref A: 1746F368F3D44413BAB526FDB0FA73A4 Ref B: SG2AA1040513023 Ref C: 2026-09-10T10:02:09Z' status: code: 200 message: OK @@ -572,25 +495,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --registry -g --location --zone-redundancy + - --registry -g --location User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:35.3104046+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:35.3104046+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T02:59:35.3104046Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:42.389143+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:42.3891753+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:43.1915494+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:43.1915494+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2026-09-10T10:01:43.1915494Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:50.3353923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:50.3354266+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-05-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1538' + - '1727' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:12 GMT + - Thu, 10 Sep 2026 10:02:12 GMT expires: - '-1' pragma: @@ -602,14 +525,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 74A7680B812545A99FFFE283C5117C4D Ref B: TYO201100115037 Ref C: 2025-05-16T03:00:12Z' + - 'Ref A: 4B4C869EBE314AF88958F103061E86BD Ref B: SG2AA1040519036 Ref C: 2026-09-10T10:02:11Z' status: code: 200 message: OK - request: - body: '{"location": "eastus2", "properties": {"zoneRedundancy": "Enabled"}}' + body: '{"location": "eastus2", "properties": {}}' headers: Accept: - application/json @@ -620,26 +543,28 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '41' Content-Type: - application/json ParameterSetName: - - --registry -g --location --zone-redundancy + - --registry -g --location User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T03:00:15.4919071+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T03:00:15.4919071+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2025-05-16T03:00:16.4254379Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:02:14.612894+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:02:14.612894+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-09-10T10:02:15.0157745Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-e1cc02e4-3201-11f0-bb80-644ed7a2823f?api-version=2026-03-01-preview&t=638829612168200398&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=RmYiOk8BiZPLKDFnoroGjBQZUecvqmutj6hEcSWFOld1BLxhaCTa4aabNS7EEKYfe5XNCeUFuIwL96Gi3L0DKrks1S4xhCQzCpirac1WGHZO8b1sRflEBhBRe-OFgrG3UFTMib8WFsEhBfTGBIaa9J7-jEVDDDctjT1HiaTyRNLbtj1qpWSxbGskSixBlJIZyNRa5X8ZQQutJElr3ddqmqnB4jbpLk-PvCEA7VbW7VA5SDbX1i32UIL7_3vXXzd1Qm2SJRWNrfkEvWIfRn4xgNSxTyhn4och9rz0JodOMU7atVuAYD2QxpR2W5PV_Xiy40Gpek4W0113YLFvsthNcg&h=6hIdzgnoUEhPFhDue1r-M7eQtmQzFKv_5KaBaWeXd_8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-b0756735-acfe-11f1-9820-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313351441372&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=J-KVRqnRiiQ4quiaSUTOR3xEpsswL26xj5-CVcfjfPN204EDfrArSVlFHy4vNqPL6a3zdjQe2oeOUC0Hy08DNw4U4OzHhWCsBrpOOYf9f8sJJH7p1VucaoGm9P3JlzsQaoiFlMSFKpwUs7IR722CqUGhPRhQyr4ajrImY3b5bta9skYg9VNCHCtVVy_-D_BL8mJs-DH-idpYa8eCDR60xMZIEu6Q8REPRs-a_twi4RxFl6E5duFIc55ILbjDQnpJDoAj9DNho4ZZttW1Bw_kg9Pg8zVSXDi9lBqnYNSh2QdOevz2lacLSGQAwVJvj-4z-kXaBjP1fvXiSVndYrqW_A&h=31AmVtcSwc_7Q6nPUPe93BR_bG5-QQPDvwZB1P9PM5g cache-control: - no-cache content-length: @@ -647,7 +572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:16 GMT + - Thu, 10 Sep 2026 10:02:14 GMT expires: - '-1' pragma: @@ -659,13 +584,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8af5a18b-b36e-4430-8484-7010a49351cf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/a5519f80-f69f-406a-90a2-0c1ea155e2bb x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 89D858A0AED448CA9C099BA9A8136A3A Ref B: TYO01EDGE3320 Ref C: 2025-05-16T03:00:13Z' + - 'Ref A: 260C4A80EAF34AE4AA36F5486B4CA79F Ref B: SG2AA1070304062 Ref C: 2026-09-10T10:02:14Z' status: code: 201 message: Created @@ -681,11 +606,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - --registry -g --location --zone-redundancy + - --registry -g --location User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-e1cc02e4-3201-11f0-bb80-644ed7a2823f?api-version=2026-03-01-preview&t=638829612168200398&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=RmYiOk8BiZPLKDFnoroGjBQZUecvqmutj6hEcSWFOld1BLxhaCTa4aabNS7EEKYfe5XNCeUFuIwL96Gi3L0DKrks1S4xhCQzCpirac1WGHZO8b1sRflEBhBRe-OFgrG3UFTMib8WFsEhBfTGBIaa9J7-jEVDDDctjT1HiaTyRNLbtj1qpWSxbGskSixBlJIZyNRa5X8ZQQutJElr3ddqmqnB4jbpLk-PvCEA7VbW7VA5SDbX1i32UIL7_3vXXzd1Qm2SJRWNrfkEvWIfRn4xgNSxTyhn4och9rz0JodOMU7atVuAYD2QxpR2W5PV_Xiy40Gpek4W0113YLFvsthNcg&h=6hIdzgnoUEhPFhDue1r-M7eQtmQzFKv_5KaBaWeXd_8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-b0756735-acfe-11f1-9820-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313351441372&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=J-KVRqnRiiQ4quiaSUTOR3xEpsswL26xj5-CVcfjfPN204EDfrArSVlFHy4vNqPL6a3zdjQe2oeOUC0Hy08DNw4U4OzHhWCsBrpOOYf9f8sJJH7p1VucaoGm9P3JlzsQaoiFlMSFKpwUs7IR722CqUGhPRhQyr4ajrImY3b5bta9skYg9VNCHCtVVy_-D_BL8mJs-DH-idpYa8eCDR60xMZIEu6Q8REPRs-a_twi4RxFl6E5duFIc55ILbjDQnpJDoAj9DNho4ZZttW1Bw_kg9Pg8zVSXDi9lBqnYNSh2QdOevz2lacLSGQAwVJvj-4z-kXaBjP1fvXiSVndYrqW_A&h=31AmVtcSwc_7Q6nPUPe93BR_bG5-QQPDvwZB1P9PM5g response: body: string: '{"status":"Creating"}' @@ -693,10 +618,12 @@ interactions: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-e1cc02e4-3201-11f0-bb80-644ed7a2823f?api-version=2026-03-01-preview&t=638829612180857665&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=o_LKqtZ9_JlGN2wO9DRzlfvzHYkrr7gRyYGeKguVQHfkZK0R3Mt_NsSGZXz7hny2Zrppqpf5lF5x2B95v4FNFbJpcV6QOJhYQ5JpG2FEb4DYGCKDg2fa-ftfE_Uw_a0HBl3tx-FWSZ03vmyzVN17tz_RTttCT-XlTuFdjauQKC3_bj7yhB2iYbq0IjVgXQbl1AdnIuhanSeqa5Ry900uztUL-X3xz0cAUCGGi3d6wWZjbzWDk1b4YZPSeNvWloPdbaNpq7m3qkjf0eau2o15BTIlXotdxXUTCR48oZ0y2kDGvrblSLHskBbV8pRWYcZ3oYj3f4Z695hL7cuDQ1sHwQ&h=xrO_jxLn5ZXAd8qOuV75yVagAW4AlpFZc5B18h7p0U8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-b0756735-acfe-11f1-9820-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313366869223&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=lQKbnp4YGYB59hT9ydDTHrQ3PJE4_95r3Yop5OiwxzA3qSDKTHFiHTeI0-25O-xcYuOV1CiKzU6bpSrjMFA4BsUQGzpUQhnLiXCzy2S3iP5IA-cR8mR5bkdplbkFypnn87VydGYz4hNnN9iV6TWOn3wkUfr_9FIPaBwpiFi4cHvak5fjIBSnIxubxc2hOd7Woe0AGo0ZmCcB1HsFEp6V25dycw3kwghIwvhCWtplSbDttZLTgcVmBorSFG4VoYJMDjD73x8V3ItlLR5ZP7sfi4p4lez5IJTDrMRhF8xctHU8GExyC0f6HUNYLUTlDLIcDRCNUm_uh4puT1TiSWsx0Q&h=RgmBfb9vBduxyOOfE4jwsQkqqYmuyMDtO0DWyk1FXd0 cache-control: - no-cache content-length: @@ -704,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:17 GMT + - Thu, 10 Sep 2026 10:02:16 GMT expires: - '-1' pragma: @@ -716,11 +643,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b2322468-fb4e-40e2-a1b0-f16fc9bc3ecb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/bf2e5524-a899-401e-886c-75a0cf009bf4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5BDA65E7568343ADBDA96105891F5082 Ref B: TYO01EDGE3320 Ref C: 2025-05-16T03:00:17Z' + - 'Ref A: FA3B925DE39A48B682A27C27F1BFFBB8 Ref B: SG2AA1070303040 Ref C: 2026-09-10T10:02:16Z' status: code: 200 message: OK @@ -736,11 +663,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - --registry -g --location --zone-redundancy + - --registry -g --location User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-e1cc02e4-3201-11f0-bb80-644ed7a2823f?api-version=2026-03-01-preview&t=638829612168200398&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=RmYiOk8BiZPLKDFnoroGjBQZUecvqmutj6hEcSWFOld1BLxhaCTa4aabNS7EEKYfe5XNCeUFuIwL96Gi3L0DKrks1S4xhCQzCpirac1WGHZO8b1sRflEBhBRe-OFgrG3UFTMib8WFsEhBfTGBIaa9J7-jEVDDDctjT1HiaTyRNLbtj1qpWSxbGskSixBlJIZyNRa5X8ZQQutJElr3ddqmqnB4jbpLk-PvCEA7VbW7VA5SDbX1i32UIL7_3vXXzd1Qm2SJRWNrfkEvWIfRn4xgNSxTyhn4och9rz0JodOMU7atVuAYD2QxpR2W5PV_Xiy40Gpek4W0113YLFvsthNcg&h=6hIdzgnoUEhPFhDue1r-M7eQtmQzFKv_5KaBaWeXd_8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-b0756735-acfe-11f1-9820-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313351441372&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=J-KVRqnRiiQ4quiaSUTOR3xEpsswL26xj5-CVcfjfPN204EDfrArSVlFHy4vNqPL6a3zdjQe2oeOUC0Hy08DNw4U4OzHhWCsBrpOOYf9f8sJJH7p1VucaoGm9P3JlzsQaoiFlMSFKpwUs7IR722CqUGhPRhQyr4ajrImY3b5bta9skYg9VNCHCtVVy_-D_BL8mJs-DH-idpYa8eCDR60xMZIEu6Q8REPRs-a_twi4RxFl6E5duFIc55ILbjDQnpJDoAj9DNho4ZZttW1Bw_kg9Pg8zVSXDi9lBqnYNSh2QdOevz2lacLSGQAwVJvj-4z-kXaBjP1fvXiSVndYrqW_A&h=31AmVtcSwc_7Q6nPUPe93BR_bG5-QQPDvwZB1P9PM5g response: body: string: '{"status":"Succeeded"}' @@ -748,10 +675,12 @@ interactions: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2/operationStatuses/replications-e1cc02e4-3201-11f0-bb80-644ed7a2823f?api-version=2026-03-01-preview&t=638829612294377290&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=o1XfyD4WjyTpttfnPUXCL5vcu7TbdCMqhXiTa0wfXbSu0CVrkhL-iGMOkH8T1xRvqIfKNpWXmp9239nAJ-ItiM9Lts-CE_zNsGyHIor9QKN__9LS9xc6D9r3VMAmKacbHdvuF7aJ0iy1p-mdB_M4GQYngpy28NlwfLTgkVVaEbaiSI0O8jjWzo2CuaqGw9uHoN6Y-c5lw7cHdrIzQ2AoDkmaXPFHkkBmr8hsXNaEKXUrb0oiayJb2RbGxgDUWjokh5oE34GK8gvsjg4T0vq7NsCu8VrhKWICaXZqfZ5h_pezxiX0cBldW08oOw8DqbpD15HnQEE5UGk-i1u-lSRM8w&h=fxkmswnbBCETYaMn1Jd4fib8nM-7PkVjGMJilITptjw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-b0756735-acfe-11f1-9820-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313483728946&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=fkJSE-B1UVmW8_fjqUfzy3zCgpCZS-WTj753todoJQI4CufsNjrdkBG52_fdt3OedUjCYslO2uGpXXrB9jgygJJ2dLsqmGB2U6vmqPx2eQ1bHfv2p1MBx1TsES2GYQUqFa0dZ_kxzuvHn4EDHl_78KhVLfFLKbd4bX_8u_gbXp_9OU2YYiH3_IG-K9J1Ka-iPbTVsN2qH2isb3HxF34CA7qzfRcPNi2e62MxGTNxPF-7eGMxNuRCQbKq-ntgZ3_Pm1TlZs25OK4LYX5pGuKnBZNN67HPaCfYNo6HpOVC9wftShU_N6xVTgGQIzTNBcrDDnavPgbmAzaU80GWHcbg7g&h=aPe7UmSkt0BFB-Gxwixjd5dFvBgHAYxi2saWDj0YOsc cache-control: - no-cache content-length: @@ -759,7 +688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:29 GMT + - Thu, 10 Sep 2026 10:02:27 GMT expires: - '-1' pragma: @@ -771,11 +700,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/43885895-d403-40b1-946a-cf00d582a449 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/09604cea-3add-4bf3-b20f-cc0cb1cd067f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8C6AAC89B7534070875C2BC5CDAC8740 Ref B: TYO01EDGE3320 Ref C: 2025-05-16T03:00:28Z' + - 'Ref A: 3D0BA1363E004099A91876BD3EFC8ACF Ref B: SG2AA1070304036 Ref C: 2026-09-10T10:02:28Z' status: code: 200 message: OK @@ -791,20 +720,22 @@ interactions: Connection: - keep-alive ParameterSetName: - - --registry -g --location --zone-redundancy + - --registry -g --location User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T03:00:15.4919071+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T03:00:15.4919071+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2025-05-16T03:00:30.2186197Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:02:14.612894+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:02:14.612894+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T10:02:27.5904365Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -812,7 +743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:30 GMT + - Thu, 10 Sep 2026 10:02:30 GMT expires: - '-1' pragma: @@ -824,9 +755,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: 8F5D4573DBC64DE48EEEB89678B4C70D Ref B: TYO01EDGE3320 Ref C: 2025-05-16T03:00:29Z' + - 'Ref A: 6619D1FFDEB0473CAA0BCEB326DA99E5 Ref B: SG2AA1070302060 Ref C: 2026-09-10T10:02:30Z' status: code: 200 message: OK @@ -838,198 +769,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr replication create - Connection: - - keep-alive - ParameterSetName: - - --registry -g --location - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:48.4138389+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:48.4138389+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2025-05-16T02:59:48.4138389Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983747+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-05-01-preview - cache-control: - - no-cache - content-length: - - '1541' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 03:00:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 09CCFB9A002147A292D55E5B9A65D53C Ref B: TYO01EDGE3813 Ref C: 2025-05-16T03:00:31Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication create - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json - ParameterSetName: - - --registry -g --location - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2?api-version=2026-03-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T03:00:35.2014251+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T03:00:35.2014251+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2025-05-16T03:00:36.0398315Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' - headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-ed34d8cd-3201-11f0-a90b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612364202589&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=eCcCTBxi3jfm2ykOiGtSutQqXNRmgZ7MZxEHVHV18DyAIBpGrUmtZJcS4K2JwvGA_2jx16uzOUyAb9cM-axfgj_7qSdvsImHCO9aBNuPCz5HQJ16K797Ak_mmA1WOya4G90JN7UWGOlVH3Km0w1u48eILgfpvGBO-FhhxoZGC57XklIOSlk21rbiqnXk2QaswDSW0DOZSBcdkaIH9pP4yb9XeNTJpdV1Lv5cff4nrGWiVjPdM5WqTAujrv_B2YhPJg2wGIoW0Oz-QYhZTSFgb2n-xphU2xraU-8YQ8NBACEf8SAkQFMhDToCIg1wzBZXTPv9wuS7jV8IlHwzg1BuuQ&h=VlMZnDGWtNJ5teWQ5y1MUYTr2qfI2Fwdy_IaZlnETvM - cache-control: - - no-cache - content-length: - - '677' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 03:00:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b84d98fe-91ec-41f7-83b6-e04b3eb58a75 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 01B6946F4A28403B84AC0435AE59B16B Ref B: TYO01EDGE3315 Ref C: 2025-05-16T03:00:33Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication create - Connection: - - keep-alive - ParameterSetName: - - --registry -g --location - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-ed34d8cd-3201-11f0-a90b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612364202589&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=eCcCTBxi3jfm2ykOiGtSutQqXNRmgZ7MZxEHVHV18DyAIBpGrUmtZJcS4K2JwvGA_2jx16uzOUyAb9cM-axfgj_7qSdvsImHCO9aBNuPCz5HQJ16K797Ak_mmA1WOya4G90JN7UWGOlVH3Km0w1u48eILgfpvGBO-FhhxoZGC57XklIOSlk21rbiqnXk2QaswDSW0DOZSBcdkaIH9pP4yb9XeNTJpdV1Lv5cff4nrGWiVjPdM5WqTAujrv_B2YhPJg2wGIoW0Oz-QYhZTSFgb2n-xphU2xraU-8YQ8NBACEf8SAkQFMhDToCIg1wzBZXTPv9wuS7jV8IlHwzg1BuuQ&h=VlMZnDGWtNJ5teWQ5y1MUYTr2qfI2Fwdy_IaZlnETvM - response: - body: - string: '{"status":"Creating"}' - headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-ed34d8cd-3201-11f0-a90b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612377084483&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=U60eQzlX8p5sqcoUWUpeo_Z6kalvFInSCDOKabGcd4n1PfDkKuHxJfL8YsLHf3gBMD83UDcHZhMUI0YewZFIbcb-Hjz5df4vd9eV8BdAgs0U69GZgQ7uFwTZnxNUXpzOEyTw-zH_TH1v20_yakOB3jk07E_pJwjT_ZrlQTenD8x5sqnKN1ShsRwVXjRvBXPwvzEcHf50-39eaw7FDBYeij89FfJzcNvWuhs6XW1-rTFfdr20WeDY6aYPIj_bvS3A8_bnBg_Kcy87l5fB2I1dWpY6c8V_E8ChauOZ5UFhDtI3LLW0E273ft9ULgna05F65N5PveDP3qG4za45k_84Pw&h=hE7YfaXfghRhfWY3LBGgIbrMa1qqXby2kwrkwa8t-Iw - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 03:00:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/59b88e9b-cab8-4c81-ab1d-9715ac6495f6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 41F8E752A41F4465A1B8B758C0B15278 Ref B: TYO01EDGE3315 Ref C: 2025-05-16T03:00:36Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication create + - acr replication show Connection: - keep-alive ParameterSetName: - - --registry -g --location + - --name --registry --resource-group User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-ed34d8cd-3201-11f0-a90b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612364202589&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=eCcCTBxi3jfm2ykOiGtSutQqXNRmgZ7MZxEHVHV18DyAIBpGrUmtZJcS4K2JwvGA_2jx16uzOUyAb9cM-axfgj_7qSdvsImHCO9aBNuPCz5HQJ16K797Ak_mmA1WOya4G90JN7UWGOlVH3Km0w1u48eILgfpvGBO-FhhxoZGC57XklIOSlk21rbiqnXk2QaswDSW0DOZSBcdkaIH9pP4yb9XeNTJpdV1Lv5cff4nrGWiVjPdM5WqTAujrv_B2YhPJg2wGIoW0Oz-QYhZTSFgb2n-xphU2xraU-8YQ8NBACEf8SAkQFMhDToCIg1wzBZXTPv9wuS7jV8IlHwzg1BuuQ&h=VlMZnDGWtNJ5teWQ5y1MUYTr2qfI2Fwdy_IaZlnETvM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-09-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:43.1915494+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:43.1915494+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2026-09-10T10:01:43.1915494Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:50.3353923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:50.3354266+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, - 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2/operationStatuses/replications-ed34d8cd-3201-11f0-a90b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612490872687&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=GtU5qOdlvMs549QsqI-Rb1WKuwJGgbmotl2bJFbSnoAh2ziwtp2X7smXxF2NoRGOsJdFeag_7ZhyzbsH6DzglXHmAszbhK3XePUgq6Sid_hC_HC3XwFJtKg3NvjKfm4hFqHbQ-oIWQO4ArTs8VlsCaUA_FMmomlicvZQntRYty1_wfEN857u6GVSDqsitlcBOa5EjqwYCTxGq4kFxKy7AVmIDGdFJiHkIe5ZQKVL1w1Cx96Uz7wX7erjhsGPA31iY0O-lLLH-Hsif5udrbHq6tw5uy6iGcl53QaeBQqW5Tnh0vakzrGF_edJoK8eIGhV2EINzEpaKjEs3EkrOuWnzA&h=NTr8R3rfD_gKlv0F3kRn1NSgjs1r7DCAmsNJaZ_idas + - 2026-09-01-preview cache-control: - no-cache content-length: - - '22' + - '1727' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:48 GMT + - Thu, 10 Sep 2026 10:02:31 GMT expires: - '-1' pragma: @@ -1040,12 +802,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/6cc524f1-d4a3-45c8-aba3-82d884e9ba4d x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 02827E89095F4829A25DCC905DFCFB0F Ref B: TYO01EDGE3315 Ref C: 2025-05-16T03:00:48Z' + - 'Ref A: FAAD7DE58CE647BF8C2EB9A7E6EAD3AE Ref B: SG2AA1070306062 Ref C: 2026-09-10T10:02:32Z' status: code: 200 message: OK @@ -1053,36 +813,38 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr replication create + - acr replication show Connection: - keep-alive ParameterSetName: - - --registry -g --location + - --name --registry --resource-group User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus2","name":"eastus2","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T03:00:35.2014251+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T03:00:35.2014251+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2025-05-16T03:00:48.0055332Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/eastus","name":"eastus","location":"eastus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2026-09-10T10:02:19.5278493+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2026-09-10T10:02:19.5278493+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T10:02:19.3703919Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Enabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: - - '702' + - '752' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:48 GMT + - Thu, 10 Sep 2026 10:02:33 GMT expires: - '-1' pragma: @@ -1094,9 +856,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: A6E7E57D292741E6A52B7366C94C3178 Ref B: TYO01EDGE3315 Ref C: 2025-05-16T03:00:49Z' + - 'Ref A: 7F79DE31F24F496FA4570C3A31B6DA5F Ref B: SG2AA1040513042 Ref C: 2026-09-10T10:02:33Z' status: code: 200 message: OK @@ -1114,23 +876,23 @@ interactions: ParameterSetName: - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T02:59:48.4138389+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T02:59:48.4138389+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2025-05-16T02:59:48.4138389Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983293+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T02:59:55.6983747+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003","name":"testreg2000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:01:43.1915494+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:01:43.1915494+00:00"},"properties":{"loginServer":"testreg2000003.azurecr.io","creationDate":"2026-09-10T10:01:43.1915494Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:01:50.3353923+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:01:50.3354266+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-05-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1541' + - '1727' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:51 GMT + - Thu, 10 Sep 2026 10:02:35 GMT expires: - '-1' pragma: @@ -1142,9 +904,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A6E304FC5E9F46F282794F13DA8E0C65 Ref B: TYO01EDGE1919 Ref C: 2025-05-16T03:00:50Z' + - 'Ref A: 9BDFB5DA552C4600916205E3D152EB49 Ref B: SG2AA1070304025 Ref C: 2026-09-10T10:02:35Z' status: code: 200 message: OK @@ -1166,20 +928,22 @@ interactions: ParameterSetName: - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2","name":"westus2","location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T03:00:54.5711474+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T03:00:54.5711474+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2025-05-16T03:00:55.7649998Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2","name":"westus2","location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:02:37.5961313+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:02:37.5961313+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2026-09-10T10:02:39.0136958Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-f850634a-3201-11f0-8f5b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612561961870&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=cMvDzbg9e4tm9Zu7W_O7E34gvC4Ya3UurwOh3Je5_3dVdNvsueCAh3_qccpEzZcT8RsGMbPzWqmGuYntZVWkBQW9-NTDIfO6shN25aO8MAwvJWZhVCnma2G99v-WrNVeqXjH8ozmUl4ocoULPuKhn4k72gQ14-ydV6x3rJeSLg7cOx_YwKA-OjaveEMWypYJTVMsIaeO-UABbpz3pP7jVOzTiw8HSnP0oBq7FmL2v2w0Zylp3xPRMD8YiDSEsXcPAgUgRHSiWAQHngt5AP-kcTMzCGs5YjUMAG41Sm-AdGVf8GI13Aetygkk7IB_D8_TrcBXBS77Jevq-HhURrytEg&h=wTlR9NR4xxqbWz-Aa0Km_Xl-cYnv0NqiuLzPQo_dKWM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-be71b981-acfe-11f1-a0d6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313592211353&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=KiBFvdEHPkT9upjA5RVF2E1_fZzCb-2Id6_e02Yeu5Oqm6_Xsr-75HRULhGlzfttJLtUJig2RrJ4skyQxsJlUUUJEFNHmv4JHzZgM3DBEo33C6mdKS6bYiTkjmjAJJ7Q8lCnU1NNkSkAfv11yRjq_cNmNtZcYSNIk79N15-JTa0Ai19GygFE88I0eq02Jifv6qHWRP7cGGlzB_BzWJf748lp0RXhabstaMcdYhTpazCxh4WszL9FlMpeU8erG2bEy5qK08q1FM3RdFSgNpufMC5OMnMgZXr5RCSUgm2_bmtSWFwzVmNs_qSsNPnaDqJhR3qcNTPhXHSX78x-u-3SIw&h=5LQEIxcQKOU_z46ea3kx7vH5y8IfoKjyIR2E7wCpPrk cache-control: - no-cache content-length: @@ -1187,7 +951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:56 GMT + - Thu, 10 Sep 2026 10:02:38 GMT expires: - '-1' pragma: @@ -1199,13 +963,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/b3c5d98d-734c-49ed-9bea-4fb0ec16a351 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/8c9655ca-94b2-44ec-ba44-df16106dfe57 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 9E47D82FAA3341C4B606CB3E42A827BE Ref B: TYO01EDGE2406 Ref C: 2025-05-16T03:00:52Z' + - 'Ref A: 155B1D075F354A51B050FF113732A572 Ref B: SG2AA1070305054 Ref C: 2026-09-10T10:02:37Z' status: code: 201 message: Created @@ -1223,9 +987,9 @@ interactions: ParameterSetName: - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-f850634a-3201-11f0-8f5b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612561961870&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=cMvDzbg9e4tm9Zu7W_O7E34gvC4Ya3UurwOh3Je5_3dVdNvsueCAh3_qccpEzZcT8RsGMbPzWqmGuYntZVWkBQW9-NTDIfO6shN25aO8MAwvJWZhVCnma2G99v-WrNVeqXjH8ozmUl4ocoULPuKhn4k72gQ14-ydV6x3rJeSLg7cOx_YwKA-OjaveEMWypYJTVMsIaeO-UABbpz3pP7jVOzTiw8HSnP0oBq7FmL2v2w0Zylp3xPRMD8YiDSEsXcPAgUgRHSiWAQHngt5AP-kcTMzCGs5YjUMAG41Sm-AdGVf8GI13Aetygkk7IB_D8_TrcBXBS77Jevq-HhURrytEg&h=wTlR9NR4xxqbWz-Aa0Km_Xl-cYnv0NqiuLzPQo_dKWM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-be71b981-acfe-11f1-a0d6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313592211353&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=KiBFvdEHPkT9upjA5RVF2E1_fZzCb-2Id6_e02Yeu5Oqm6_Xsr-75HRULhGlzfttJLtUJig2RrJ4skyQxsJlUUUJEFNHmv4JHzZgM3DBEo33C6mdKS6bYiTkjmjAJJ7Q8lCnU1NNkSkAfv11yRjq_cNmNtZcYSNIk79N15-JTa0Ai19GygFE88I0eq02Jifv6qHWRP7cGGlzB_BzWJf748lp0RXhabstaMcdYhTpazCxh4WszL9FlMpeU8erG2bEy5qK08q1FM3RdFSgNpufMC5OMnMgZXr5RCSUgm2_bmtSWFwzVmNs_qSsNPnaDqJhR3qcNTPhXHSX78x-u-3SIw&h=5LQEIxcQKOU_z46ea3kx7vH5y8IfoKjyIR2E7wCpPrk response: body: string: '{"status":"Creating"}' @@ -1233,10 +997,12 @@ interactions: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-f850634a-3201-11f0-8f5b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612571112908&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=B6BgcfpY-0ucGoAnkH6v4IP-BHkb8vhZpiHeX9SjPEpWewzEf63NNiWifnWA_rUbLXk9Un5aS2sKfYABO5V7hlXccFLt6I0QlteTMwClA_MltrQHzcXWm313qx5ul4FqqODvou8HUny6mvySHWVOfEb6Dx3gu92nG-_YrynkHtw4kKE-ualiNeTLqmoyOczJsYf7K3m4Tha7-dnmESPaEMMdjRDez-niAMhmwfjnQcNo0bBjEslbZj4OhLMw_T7THDDWK96MvFV2hlLYJ2v69VEIL0QjbNjxAVLEItq84IMTG9N6my29i70a9JWdncwjpnW-3vOdqtVQCA65OBKmdA&h=7CCpZzpglD80pfSUFwYH2cIYupdf4u1dEe_cEDxt9vE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-be71b981-acfe-11f1-a0d6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313613434109&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=omI5nJ2r7SwTzDb5OCLK1vK18sl5NANHucgQoS-olewJU0rPM2CykvqvppRs8mnd4JbSqjyZXIiHoxualoq9_xuCLuhXbc-KOhG8NScCcN2uOHVMweVTRbE7F-JAVzvh2I0NGADIT552Tm-C-hnJb8nd_lgQG1KwYP73V4Tt3QR5lfsX5w9ZJ2UWImMhRdKGzwZEgQ6PgzPZ9PrNCsfo4ab5dMQpy2Ptcf_Tw9HCnyYplEfjRzpIokMzpt5nRsZPs3uu-OQemfq2TvCHs-A5HticFzTCdMU5kGFFEdLTwtkHPkOx3ZDvC9PQ75zuSlvfxU_GjGKCVVvGjb33K_sYqg&h=lCscyxElJgsP3QsfS_brfNgqOHQmvLhE9kraUlUJUno cache-control: - no-cache content-length: @@ -1244,7 +1010,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:00:56 GMT + - Thu, 10 Sep 2026 10:02:41 GMT expires: - '-1' pragma: @@ -1256,11 +1022,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/4611a364-7f81-403d-b910-97a95f507133 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/672670a0-01df-4f54-bba7-e7884748ddad x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3449B4E8A5C446B69010FF7141DA2C29 Ref B: TYO01EDGE2406 Ref C: 2025-05-16T03:00:56Z' + - 'Ref A: EF6EFDF2AFCE4655A617B32388C14DDA Ref B: SG2AA1070305060 Ref C: 2026-09-10T10:02:40Z' status: code: 200 message: OK @@ -1278,9 +1044,9 @@ interactions: ParameterSetName: - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-f850634a-3201-11f0-8f5b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612561961870&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=cMvDzbg9e4tm9Zu7W_O7E34gvC4Ya3UurwOh3Je5_3dVdNvsueCAh3_qccpEzZcT8RsGMbPzWqmGuYntZVWkBQW9-NTDIfO6shN25aO8MAwvJWZhVCnma2G99v-WrNVeqXjH8ozmUl4ocoULPuKhn4k72gQ14-ydV6x3rJeSLg7cOx_YwKA-OjaveEMWypYJTVMsIaeO-UABbpz3pP7jVOzTiw8HSnP0oBq7FmL2v2w0Zylp3xPRMD8YiDSEsXcPAgUgRHSiWAQHngt5AP-kcTMzCGs5YjUMAG41Sm-AdGVf8GI13Aetygkk7IB_D8_TrcBXBS77Jevq-HhURrytEg&h=wTlR9NR4xxqbWz-Aa0Km_Xl-cYnv0NqiuLzPQo_dKWM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-be71b981-acfe-11f1-a0d6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313592211353&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=KiBFvdEHPkT9upjA5RVF2E1_fZzCb-2Id6_e02Yeu5Oqm6_Xsr-75HRULhGlzfttJLtUJig2RrJ4skyQxsJlUUUJEFNHmv4JHzZgM3DBEo33C6mdKS6bYiTkjmjAJJ7Q8lCnU1NNkSkAfv11yRjq_cNmNtZcYSNIk79N15-JTa0Ai19GygFE88I0eq02Jifv6qHWRP7cGGlzB_BzWJf748lp0RXhabstaMcdYhTpazCxh4WszL9FlMpeU8erG2bEy5qK08q1FM3RdFSgNpufMC5OMnMgZXr5RCSUgm2_bmtSWFwzVmNs_qSsNPnaDqJhR3qcNTPhXHSX78x-u-3SIw&h=5LQEIxcQKOU_z46ea3kx7vH5y8IfoKjyIR2E7wCpPrk response: body: string: '{"status":"Succeeded"}' @@ -1288,10 +1054,12 @@ interactions: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-f850634a-3201-11f0-8f5b-644ed7a2823f?api-version=2026-03-01-preview&t=638829612689885726&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=OiniqnqbMppxoXBwd5E7wfaUXd9ZksLOi5PCGkKPlA1whF3BsxUU29oi7nAe3v_jjadEEDvKKvW1unBPRoMqEbsEfzw5cnTwHjUvfXzu6B93D1aPFOVgpdwqKxZlxF0vpsJhzsYNUy1cYvjcAPLVYqD8rxRP3CCzPco2BfHq6BJjCpIuGf86LIJozFEpjQ1nkmCcrWe0xogjB6AtGV_tWv1Av3Y5m8sfDExswmq_ZOaeh5k1fREw9BIODP1rdtBCPxfpoTFnpBAgtb_UrO2ZJaC2LZDJAHJgyX3ZpPtXArgQrLhoYQxB36Mkyj8UMSN07s6sTrV2JJlPgmHxmO03FQ&h=XUZSCF1Skwb6eDemoLEEq5yUWqCyoW6_jc2_dBPcQg0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2/operationStatuses/replications-be71b981-acfe-11f1-a0d6-3cefa50a58cc?api-version=2026-09-01-preview&t=639246313731396083&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=wvtXHGzb1X4um07EikBZaT5E2yod9kWuswm_PLtNHJ_QZ2aJASAWS5A1GThVUwHPiSOWoNlegiX4CjXtuDpg4s3Ro5uVdB0JeutjkQvSKphSTuJyMqyuQ7Ie2qxYYRPGI5Q5NSqTnnNZqtmcEimk_qVDh-pr9SapV3HQV2KNiaTWtUmGpxkakU-ALG8BDMUXXHI_znuLjKgHno7IwmCounTG2fKfzutBg1PDPQ5q-GDGs7nuP1m_OAueQRyoDu4vrgKIzGT76911WjuBzCcSCwqjSQqaak_Tyt_wYcHZvXoudsQ2sG8NMCAEuV98Zz5yV6NHPJSb1GMYW7VgnoQYpA&h=Cr-tk7IOSGmtOaAAKu7Sk7NJ8RCMAC7_Vz0N9tYdY5M cache-control: - no-cache content-length: @@ -1299,7 +1067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:01:08 GMT + - Thu, 10 Sep 2026 10:02:52 GMT expires: - '-1' pragma: @@ -1311,11 +1079,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/3c02f299-b014-4ed8-9ac1-02cf9fb080df + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus/56accfa2-5d98-42ca-8d90-fcb223d46fa7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6DEFFC4D8803459BB2BEFD8132A681B0 Ref B: TYO01EDGE2406 Ref C: 2025-05-16T03:01:08Z' + - 'Ref A: AA8180C754F84425B82C9ABA820D9321 Ref B: SG2AA1070303025 Ref C: 2026-09-10T10:02:52Z' status: code: 200 message: OK @@ -1333,18 +1101,20 @@ interactions: ParameterSetName: - --registry -g --location --zone-redundancy User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2","name":"westus2","location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T03:00:54.5711474+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T03:00:54.5711474+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2025-05-16T03:01:06.1751229Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg2000003/replications/westus2","name":"westus2","location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:02:37.5961313+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:02:37.5961313+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2026-09-10T10:02:50.2420651Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, - 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2025-05-01-preview, - 2025-05-01-preview, 2025-04-01, 2025-05-01-preview, 2025-09-01-preview + 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview, + 2026-11-01 cache-control: - no-cache content-length: @@ -1352,7 +1122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 03:01:10 GMT + - Thu, 10 Sep 2026 10:02:54 GMT expires: - '-1' pragma: @@ -1364,9 +1134,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '16499' x-msedge-ref: - - 'Ref A: B89D15A8D09942D2965567503EACBEDB Ref B: TYO01EDGE2406 Ref C: 2025-05-16T03:01:10Z' + - 'Ref A: DF61C41111BA44549A8220BFA173A1B0 Ref B: SG2AA1070305034 Ref C: 2026-09-10T10:02:54Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability.yaml index 85e0a835f8f..d690270b63c 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability.yaml @@ -18,9 +18,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview response: body: string: '{"availableLoginServerName":"clireg000001.azurecr.io","nameAvailable":true}' @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:11 GMT + - Thu, 10 Sep 2026 06:51:23 GMT expires: - '-1' pragma: @@ -44,11 +44,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e87084c2-d672-4089-bcc2-2989d240fce3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral/24bafeb0-7405-43f9-b230-25ff08b659f4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 796D015B2CE24E4E997CA6A3AA989138 Ref B: BN1AA2051012017 Ref C: 2026-04-03T02:32:11Z' + - 'Ref A: 05319B3CE0E2411483B620C053C49C85 Ref B: SYD281080708042 Ref C: 2026-09-10T06:51:21Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability_dnl_scope.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability_dnl_scope.yaml index cc3412bbcd4..ced15c94412 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability_dnl_scope.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_check_name_availability_dnl_scope.yaml @@ -18,12 +18,12 @@ interactions: ParameterSetName: - -n --dnl-scope User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-09-01-preview response: body: - string: '{"availableLoginServerName":"clireg000001-bgeqfzajegatgpdg.azurecr.io","nameAvailable":true}' + string: '{"availableLoginServerName":"clireg000001-azddgxfcd5akbaf9.azurecr.io","nameAvailable":true}' headers: cache-control: - no-cache @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 02:32:00 GMT + - Thu, 10 Sep 2026 06:51:24 GMT expires: - '-1' pragma: @@ -44,11 +44,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/87b40058-8f6c-44ac-8c8d-b739b6668e8a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/622f54fa-889c-4751-9aca-5ac33d82933d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B0CE8728970441758A23CEA04417C277 Ref B: BN1AA2051015035 Ref C: 2026-04-03T02:32:00Z' + - 'Ref A: C4C6495798734C008900160435261DC5 Ref B: SYD281080712036 Ref C: 2026-09-10T06:51:24Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml index 631ddca9242..4ab7ac45f4d 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_repository_token_create","date":"2026-03-24T02:51:34Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_repository_token_create","date":"2026-09-10T06:59:29Z","module":"acr"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:51:35 GMT + - Thu, 10 Sep 2026 06:59:31 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2E55D4DC2A644BECB6C753B7278E5999 Ref B: BY1AA1072317023 Ref C: 2026-03-24T02:51:35Z' + - 'Ref A: F13CB5353FF54B569AE5E8BA9126A74D Ref B: SYD281080708052 Ref C: 2026-09-10T06:59:32Z' status: code: 200 message: OK @@ -64,23 +64,23 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T02:51:36.2175971Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245081+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245588+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:59:35.3576955Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513528+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513988+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:51:48 GMT + - Thu, 10 Sep 2026 06:59:42 GMT expires: - '-1' pragma: @@ -92,13 +92,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/55e60037-4bbd-43c2-96ea-6ff452a84604 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f85617d6-6a47-4bcd-8f44-ae681d3b1437 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: AD320EC4C3AA431D81771B4D5E9E42C3 Ref B: BY1AA1072319054 Ref C: 2026-03-24T02:51:35Z' + - 'Ref A: C403F35E2894448B84F15ED9D815CCFE Ref B: SYD281080712062 Ref C: 2026-09-10T06:59:33Z' status: code: 200 message: OK @@ -116,21 +116,21 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:51:47 GMT + - Thu, 10 Sep 2026 06:59:43 GMT expires: - '-1' pragma: @@ -144,7 +144,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0D2299B1F7754A3EA3C62528FBAC49B7 Ref B: BY1AA1072319040 Ref C: 2026-03-24T02:51:48Z' + - 'Ref A: 642BC5D3632447328CC071B26BE28A22 Ref B: SYD281080706025 Ref C: 2026-09-10T06:59:43Z' status: code: 200 message: OK @@ -162,9 +162,9 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource acr-token-scope-map @@ -175,7 +175,7 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -183,7 +183,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:51:48 GMT + - Thu, 10 Sep 2026 06:59:44 GMT expires: - '-1' pragma: @@ -195,11 +195,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a5fee2dc-bccb-462d-97b3-f4b9268187ed + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/c16f1e41-b2d2-40cb-b37d-a8bd451ea3ae x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E29490730F9542D79EF1E3639D44A471 Ref B: BY1AA1072319040 Ref C: 2026-03-24T02:51:48Z' + - 'Ref A: F26CD91E52FE479788EF9427E6823FB8 Ref B: SYD281080706036 Ref C: 2026-09-10T06:59:44Z' status: code: 404 message: Not Found @@ -222,28 +222,28 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","name":"acr-token-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:49.3157971+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:49.3157971+00:00"},"properties":{"description":"Created - by token: acr-token","type":"UserDefined","creationDate":"2026-03-24T02:51:49.415929+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","name":"acr-token-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:46.0092335+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:46.0092335+00:00"},"properties":{"description":"Created + by token: acr-token","type":"UserDefined","creationDate":"2026-09-10T06:59:46.0669499+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '711' + - '712' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:51:48 GMT + - Thu, 10 Sep 2026 06:59:45 GMT expires: - '-1' pragma: @@ -255,19 +255,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/bd39591c-c5cb-4496-b04b-5a29316e094c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/409fe5da-6690-4346-9233-605ebf969ad4 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E5A492F540204EEA95A5579CC826620C Ref B: BY1AA1072319040 Ref C: 2026-03-24T02:51:49Z' + - 'Ref A: 26A6F668BF0E4F29AEB80821C7D3C6A9 Ref B: SYD281080708040 Ref C: 2026-09-10T06:59:45Z' status: code: 200 message: OK - request: - body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map", - "status": "enabled"}}' + body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map"}}' headers: Accept: - application/json @@ -284,21 +283,21 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token","name":"acr-token","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:49.6615999+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:49.6615999+00:00"},"properties":{"creationDate":"2026-03-24T02:51:50.6038154+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token","name":"acr-token","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:47.1767659+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:47.1767659+00:00"},"properties":{"creationDate":"2026-09-10T06:59:47.5787017+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-670ddf93-272c-11f1-94ff-70a8a51b6037?api-version=2026-03-01-preview&t=639099175107241173&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=HUgPnvYQFcXDHzJId0cJ_U9Z4qwrWbiWPQO-Kdpqngz5NmmXU48TpCL_9SJDmwoGqDeBeTqg1M32B8rrvS5zNhRcMTgNj8gO7R9rv3bdWCcN31TcyuimwpwNdLidb8WlVfu44xKirVtRoPUpHYzLqFRqZct3ey9m2LUnu3T2ojAt3qscZZtTH-bgIQd16XIBmDkcSBgxmIj9KR6WYAubkONihix4qWPSSFmmqRenE2jc52imbvIGhFY3OZ2pf7ucksdULRAv_wY8VWADK4DNzdAIaG9o4Im1t25hquc4WY_xEXAXw3NvnVZec76GmWE3oEVPx-T7Q53tfops1c-pfw&h=1mqN-eXHiko9wKWA2FJU8FeFi2Cr3HQQ9i4lQ6pyY-U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-33e822cc-ace5-11f1-a929-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203890987252&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=XqtdPhi4gFt9kzrGGTdZ-W7TH72lkukmDNIhhLs8cJewF9pCqrPUi6AYYtkPJlz8-F9dctF5wSKqnNSA9hBZsB8O9PYKJnf2c8Zy-qXicHM-UeK5QMwT6eNPy_MHF9uUokeVN8_r9I-yt1RoE35nCncbm5nG41jyFMJFhW2u0troloz5LR3cY1c35tU6zQmOiZwd2Bx-Rt2oR4VRim85YXdmViCoZmeGrDDDjwzSSDfb_rr4dfdDjPtI8E4DOz5HjuaUsfITdKqDdLyrYmT3kiq6gyzOWA2vJsOyoIYXMxH1QW8M9DeLYxPCIuMH7Ye1Hu25NG9TuFm8mVSiH7bYdQ&h=OI_dbaEWx0vBFDuQ5PwdV4k7abGSqEvWs9OMhoR7tRo cache-control: - no-cache content-length: @@ -306,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:51:50 GMT + - Thu, 10 Sep 2026 06:59:48 GMT expires: - '-1' pragma: @@ -318,13 +317,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a13fda41-000b-40fe-83f1-747ece9dbbcb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c0ae7ddc-ea6b-4540-b482-a9a9a504eaaa x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A35B5FDA479F46979AFCE6E13AB4C7B6 Ref B: SJC211051204037 Ref C: 2026-03-24T02:51:49Z' + - 'Ref A: B01D560A0DFB4A4BB02B94FD41EE73C5 Ref B: SYD281080709054 Ref C: 2026-09-10T06:59:46Z' status: code: 201 message: Created @@ -342,65 +341,9 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-670ddf93-272c-11f1-94ff-70a8a51b6037?api-version=2026-03-01-preview&t=639099175107241173&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=HUgPnvYQFcXDHzJId0cJ_U9Z4qwrWbiWPQO-Kdpqngz5NmmXU48TpCL_9SJDmwoGqDeBeTqg1M32B8rrvS5zNhRcMTgNj8gO7R9rv3bdWCcN31TcyuimwpwNdLidb8WlVfu44xKirVtRoPUpHYzLqFRqZct3ey9m2LUnu3T2ojAt3qscZZtTH-bgIQd16XIBmDkcSBgxmIj9KR6WYAubkONihix4qWPSSFmmqRenE2jc52imbvIGhFY3OZ2pf7ucksdULRAv_wY8VWADK4DNzdAIaG9o4Im1t25hquc4WY_xEXAXw3NvnVZec76GmWE3oEVPx-T7Q53tfops1c-pfw&h=1mqN-eXHiko9wKWA2FJU8FeFi2Cr3HQQ9i4lQ6pyY-U - response: - body: - string: '{"status":"Creating"}' - headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, - 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, - 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-670ddf93-272c-11f1-94ff-70a8a51b6037?api-version=2026-03-01-preview&t=639099175109938724&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=aeuMtZ553vCW3A08WPxRekH3X7VFT5nGr5A88SWRxVoqE3vP1L0_ga4cLj_WRFkJqF2JKxX4viBQWKeUc5nCm3lvd3S6VhI9urY3WbSvXplXilnvDEWyFvrqrUlrJ0r7E8dGrY6nvJ8t0g0lYtHiKXVoMWz04L6_dOrOXHJUNvWVsGjWtmkozS2XPy17oNDAOJkIc6JgkfxuJHD4C7FL8EVmb0useT73j0fRp5faAajHw94EjoYFD7hZjIB40uVRpRrkB3pr308QgNW9fDFIeJWUc-wJOKpUyY7MbtTXpHGfErtxOBu_Nw8YIAbu-R7EaKHvAKj1qZcme38tJQdqoA&h=N9eDpAwT8AW4bd_TB352ujhfC5GIHLzSQu0TBk57oeE - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 02:51:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4dc86419-73ce-4c90-ba71-9d1c3ee181ec - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 4A9C7A25B2F44ECB9D270DAFA31B0AB0 Ref B: BY1AA1072315054 Ref C: 2026-03-24T02:51:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr token create - Connection: - - keep-alive - ParameterSetName: - - -r -n --repository - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-670ddf93-272c-11f1-94ff-70a8a51b6037?api-version=2026-03-01-preview&t=639099175107241173&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=HUgPnvYQFcXDHzJId0cJ_U9Z4qwrWbiWPQO-Kdpqngz5NmmXU48TpCL_9SJDmwoGqDeBeTqg1M32B8rrvS5zNhRcMTgNj8gO7R9rv3bdWCcN31TcyuimwpwNdLidb8WlVfu44xKirVtRoPUpHYzLqFRqZct3ey9m2LUnu3T2ojAt3qscZZtTH-bgIQd16XIBmDkcSBgxmIj9KR6WYAubkONihix4qWPSSFmmqRenE2jc52imbvIGhFY3OZ2pf7ucksdULRAv_wY8VWADK4DNzdAIaG9o4Im1t25hquc4WY_xEXAXw3NvnVZec76GmWE3oEVPx-T7Q53tfops1c-pfw&h=1mqN-eXHiko9wKWA2FJU8FeFi2Cr3HQQ9i4lQ6pyY-U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-33e822cc-ace5-11f1-a929-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203890987252&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=XqtdPhi4gFt9kzrGGTdZ-W7TH72lkukmDNIhhLs8cJewF9pCqrPUi6AYYtkPJlz8-F9dctF5wSKqnNSA9hBZsB8O9PYKJnf2c8Zy-qXicHM-UeK5QMwT6eNPy_MHF9uUokeVN8_r9I-yt1RoE35nCncbm5nG41jyFMJFhW2u0troloz5LR3cY1c35tU6zQmOiZwd2Bx-Rt2oR4VRim85YXdmViCoZmeGrDDDjwzSSDfb_rr4dfdDjPtI8E4DOz5HjuaUsfITdKqDdLyrYmT3kiq6gyzOWA2vJsOyoIYXMxH1QW8M9DeLYxPCIuMH7Ye1Hu25NG9TuFm8mVSiH7bYdQ&h=OI_dbaEWx0vBFDuQ5PwdV4k7abGSqEvWs9OMhoR7tRo response: body: string: '{"status":"Succeeded"}' @@ -410,9 +353,9 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-670ddf93-272c-11f1-94ff-70a8a51b6037?api-version=2026-03-01-preview&t=639099175212843776&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=G7RQPGq0V2drrIZn8Qeksmvt7s0sqReA5ngt6LymR5_FpVWr3OdzaRo3ay1apeNdyUYzyntlsnHeeKYM2sMfZPDjT12f95_nJ2z1MSxLZD62I_XKmXXHSFGWP-nWa3-xq2smyTmDDcRFRZNC35UFYcl-UFjEJndB3ka9JFHEtm-dRzaXDgohepik0VbvODMo83p7v87lnIjSYFwx7MrbCVG-ykDnoCiKyT5ABqHGVM0YuP1QznBVI0wapiglYLdDc0dmzHk7_W3oDW58tZSyTdwGbKNEFgZhtJzeiEPM_SOBkTWL5El4V3-hNWdEwxG-LpcsvdXM9zOcAHLd_Th0hw&h=d-0qoTayqCOEtmesg4r7jT8rENKvEFX3GOp1e5NlRkk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token/operationStatuses/token-33e822cc-ace5-11f1-a929-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203897333298&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=CvgYA9crHNuNzf4rjcH_RGLjiV6vToA6iJMNUWmm8KEJxel73RcEJsv1Xn9uiQWFDF4q13onjsMbBd3g_-JsJcECs9Wpo7BvcGeO3wyyYF8uME52gFU-EnPxGBS-Z5G1Ji2V3KoFF8FIUTcQqachSm5Y9_oQbS3vn4dfgs9b0o2ahwtchdAj6aFekNt3ZPMksWOMcL_fidfa_gpX3_PPblw21_wMf4Jo8Ka5nQOe6dlXBjjWUel-HBiaFEdO8mCAPLjBA4FmbLCj7lMiz7zKeBjGwUlI4XloFsCRQ4k-5GJMvyIb9RPKSCwzfwYCTOn-moVw65HhOAzlb1CTP18RTg&h=sMOOnmxcrNAKVSCSr-eHO4Ng3NyGWTCFhwZdHQWdntk cache-control: - no-cache content-length: @@ -420,7 +363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:00 GMT + - Thu, 10 Sep 2026 06:59:49 GMT expires: - '-1' pragma: @@ -432,11 +375,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cbd38264-a12a-4201-8678-6cb6dcc8519b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0034a926-7351-47f0-9466-9dee87e67de4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2B85B256E8746C186217159D60DA9DE Ref B: SJC211051201035 Ref C: 2026-03-24T02:52:01Z' + - 'Ref A: 43E22DA2941F40FE92F3C3F17172D8BE Ref B: SYD281080707052 Ref C: 2026-09-10T06:59:49Z' status: code: 200 message: OK @@ -454,19 +397,19 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token","name":"acr-token","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:49.6615999+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:49.6615999+00:00"},"properties":{"creationDate":"2026-03-24T02:51:50.6038154+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/acr-token","name":"acr-token","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:47.1767659+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:47.1767659+00:00"},"properties":{"creationDate":"2026-09-10T06:59:47.5787017+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -474,7 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:01 GMT + - Thu, 10 Sep 2026 06:59:49 GMT expires: - '-1' pragma: @@ -486,11 +429,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5a857230-9c06-4e6c-8539-fbfb02a7daf6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/59cd18d0-dfff-49a6-a8a7-cf73b84ae494 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B1815C8B52AA4429AC39CE3DFD42CFF1 Ref B: BY1AA1072318042 Ref C: 2026-03-24T02:52:01Z' + - 'Ref A: 9BB6691C96484DF08626D53A85F104ED Ref B: SYD281080706029 Ref C: 2026-09-10T06:59:50Z' status: code: 200 message: OK @@ -508,21 +451,21 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:01 GMT + - Thu, 10 Sep 2026 06:59:50 GMT expires: - '-1' pragma: @@ -536,7 +479,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 24A11231F0554A3EB9CD6B7644CF88C5 Ref B: BY1AA1072316060 Ref C: 2026-03-24T02:52:01Z' + - 'Ref A: D603C79088874B21A8FF3E23141C15A8 Ref B: SYD281080708036 Ref C: 2026-09-10T06:59:50Z' status: code: 200 message: OK @@ -558,19 +501,19 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr-token","passwords":[{"creationTime":"2026-03-24T02:52:02.2285044+00:00","name":"password1","value":"***"},{"creationTime":"2026-03-24T02:52:02.2285649+00:00","name":"password2","value":"***"}]}' + string: '{"username":"acr-token","passwords":[{"creationTime":"2026-09-10T06:59:51.9623297+00:00","name":"password1","value":"84IL9ImGiDj1JPjNgaBlD3y2QEwKlQDoOqzxzBCeLCI2PQAZbqE3JQQJ99CIAC4f1cMEqg7NAAABAZCR3PKo"},{"creationTime":"2026-09-10T06:59:51.9623882+00:00","name":"password2","value":"890yrYISDWg5sQiDbUJBjczfBBTJJgwUw4logUBgIaeCe00FyE3xJQQJ99CIAC4f1cMEqg7NAAABAZCRy1Re"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -578,7 +521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:02 GMT + - Thu, 10 Sep 2026 06:59:51 GMT expires: - '-1' pragma: @@ -590,13 +533,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d01c5fc6-b862-48a5-9bdf-673e10f89ea6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/bc58fdd4-a9f2-45e3-8bc2-4b220cdeb06e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E9C33A3BC97F4A88B8C8A9E8EAAA4A30 Ref B: BY1AA1072320060 Ref C: 2026-03-24T02:52:02Z' + - 'Ref A: 12209997108546FD8A7DF443DFB04E54 Ref B: SYD281080712040 Ref C: 2026-09-10T06:59:51Z' status: code: 200 message: OK @@ -614,23 +557,23 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T02:51:36.2175971Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245081+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245588+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:59:35.3576955Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513528+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513988+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:02 GMT + - Thu, 10 Sep 2026 06:59:51 GMT expires: - '-1' pragma: @@ -644,7 +587,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D9E6354AF3A4313A2F5C3075BA347ED Ref B: BY1AA1072317042 Ref C: 2026-03-24T02:52:02Z' + - 'Ref A: A0D6341031A84851B1EE8A0A848A28F5 Ref B: SYD281080706025 Ref C: 2026-09-10T06:59:52Z' status: code: 200 message: OK @@ -662,21 +605,21 @@ interactions: ParameterSetName: - -r -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"name":"magic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"name":"cliregfckivn52alvx7u","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"name":"cliregxn66jbw4ic47u2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"name":"clireg000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:02 GMT + - Thu, 10 Sep 2026 06:59:53 GMT expires: - '-1' pragma: @@ -690,7 +633,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 16A0C24AD70A4C17B186989DA6225BC0 Ref B: BY1AA1072315029 Ref C: 2026-03-24T02:52:02Z' + - 'Ref A: C29B26D6CEA949419A5C59C75AE75EF6 Ref B: SYD281080707052 Ref C: 2026-09-10T06:59:53Z' status: code: 200 message: OK @@ -708,28 +651,28 @@ interactions: ParameterSetName: - -r -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","name":"acr-token-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:49.3157971+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:49.3157971+00:00"},"properties":{"description":"Created - by token: acr-token","type":"UserDefined","creationDate":"2026-03-24T02:51:49.415929+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/acr-token-scope-map","name":"acr-token-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:46.0092335+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:46.0092335+00:00"},"properties":{"description":"Created + by token: acr-token","type":"UserDefined","creationDate":"2026-09-10T06:59:46.0669499+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '711' + - '712' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:02 GMT + - Thu, 10 Sep 2026 06:59:53 GMT expires: - '-1' pragma: @@ -741,11 +684,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/77152b94-bee2-4066-ae68-04adfe498043 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/05236b89-19bc-4624-8558-578bb4f629a2 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 2425A105FBAF45F3BC9D72B0704986DF Ref B: BY1AA1072318023 Ref C: 2026-03-24T02:52:02Z' + - 'Ref A: E04200415CD947ED812213FCFF1E9355 Ref B: SYD281080707054 Ref C: 2026-09-10T06:59:53Z' status: code: 200 message: OK @@ -763,21 +706,21 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:02 GMT + - Thu, 10 Sep 2026 06:59:54 GMT expires: - '-1' pragma: @@ -791,7 +734,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AB05131FBC294617A21CDA2CB0F9E166 Ref B: BY1AA1072315040 Ref C: 2026-03-24T02:52:02Z' + - 'Ref A: 0BB7BEF29C404F03856ABB64C0B6ED08 Ref B: SYD281080708060 Ref C: 2026-09-10T06:59:54Z' status: code: 200 message: OK @@ -813,19 +756,19 @@ interactions: ParameterSetName: - -r -n --repository User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map","name":"scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:03.2929815+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:03.2929815+00:00"},"properties":{"type":"UserDefined","creationDate":"2026-03-24T02:52:03.3996628+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read","repositories/foo/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map","name":"scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:55.3081064+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:55.3081064+00:00"},"properties":{"type":"UserDefined","creationDate":"2026-09-10T06:59:55.4335462+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read","repositories/foo/metadata/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -833,7 +776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:02 GMT + - Thu, 10 Sep 2026 06:59:54 GMT expires: - '-1' pragma: @@ -845,13 +788,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7abb0140-2de3-4b78-8f92-4454a3db58b4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/679c6db1-90a0-46b2-97cd-1dc297f82746 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 44487130D5C34FCAA30271A4BF195FE5 Ref B: BY1AA1072317062 Ref C: 2026-03-24T02:52:03Z' + - 'Ref A: 73F9BBB7E47F4EFDB84253ED5CBB954E Ref B: SYD281080709054 Ref C: 2026-09-10T06:59:55Z' status: code: 200 message: OK @@ -869,21 +812,21 @@ interactions: ParameterSetName: - -r --scope-map -n --no-passwords User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:03 GMT + - Thu, 10 Sep 2026 06:59:55 GMT expires: - '-1' pragma: @@ -897,7 +840,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CBB5112E799746E2BB2E84F0655E6A44 Ref B: BY1AA1072316040 Ref C: 2026-03-24T02:52:03Z' + - 'Ref A: BD7E2C89C2C8431990BC9A914F3E3FA9 Ref B: SYD281080706031 Ref C: 2026-09-10T06:59:55Z' status: code: 200 message: OK @@ -915,21 +858,21 @@ interactions: ParameterSetName: - -r --scope-map -n --no-passwords User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:03 GMT + - Thu, 10 Sep 2026 06:59:56 GMT expires: - '-1' pragma: @@ -943,13 +886,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7DCACB895A80484AB577D71A965C3291 Ref B: BY1AA1072317040 Ref C: 2026-03-24T02:52:03Z' + - 'Ref A: 6796A11A01EA46DCBDB6160BFE254ECC Ref B: SYD281080707036 Ref C: 2026-09-10T06:59:56Z' status: code: 200 message: OK - request: - body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map", - "status": "enabled"}}' + body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map"}}' headers: Accept: - application/json @@ -966,21 +908,21 @@ interactions: ParameterSetName: - -r --scope-map -n --no-passwords User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2","name":"token-2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:04.0456988+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:04.0456988+00:00"},"properties":{"creationDate":"2026-03-24T02:52:04.1351171+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2","name":"token-2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:57.6940754+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:57.6940754+00:00"},"properties":{"creationDate":"2026-09-10T06:59:57.7446157+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-6fe3b186-272c-11f1-abf4-70a8a51b6037?api-version=2026-03-01-preview&t=639099175242488663&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=S8YjUtM4HZ1GCdRkFmPpqWTLBi89TB_Z1vyc0-RNAZ0warw7BTJYvhb1NyNp8SGsLhMYbdFgJIFjwSJTd94VRHui6TBhpJFiOh5bzVszw9_S9VDouZgguUy2R7DM1W70SPgcBQUNkPXQSbQNLjl5cB6u_vHHgHnwAmgBSAexwumsJdFG2PkTDnSQqhMbq-07mHvX0TaGVQFi0ZN9dSnUrldlTHT3Dm5_pKmip9J5P2Od5Dzwcc6IUzY3rnCw2VdSr-GFWON_5RwHNdjLwjnzbR9vH1GXaOiL8sRftLNQhc_niOfGv6yTU60E7M3KyQ3yU1vf0GWMpOdBj6uQUMHSYg&h=FXvMJlEZmpSMlzAmjKirEGoqRps9fVOwSFI6Xq-Hv3I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-3b70bd01-ace5-11f1-8634-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203978972000&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=MLoxvHbP3-SymrPTdF7bv4QfjTc_h30hEV2XlFHBX7fp-YPhaVj5DXFP4a1DHkTG4-pRQcx4XHS1ilPNkd-5DtKuQ169higfem8Uk8bciIMa2R_yDeKh4g68t2D5qH0dd3jqDF32UczJZhEb_E_xZ3aZcV8NGpnxKisohk3VpTBl7zSAD9wwEvNNF8weuui8sjqlDCOUQuDOw6JULOSDXvz4B9kwxR1rliFnXUo2cwFBfCMm147tuefT9jXY4_W0iOKh8348KSYSNqvyfdPAL4tTjRKXzJ4UuAA2HKXr-XmdtuJ3oVbTgaTt5M59duMlmGIsYcXLNHLVe-sgR5a9gw&h=zN0ZFzAL5N03aLDmxsGKz45GNrAHgtt7224Xnnl3S_U cache-control: - no-cache content-length: @@ -988,7 +930,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:03 GMT + - Thu, 10 Sep 2026 06:59:57 GMT expires: - '-1' pragma: @@ -1000,13 +942,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8d034fcf-ac77-4a1d-87c3-85c4593ae1c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/8c3910ea-ef66-41de-8e14-1926f8c102aa x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CFED781303C349FA9A4546140703A44E Ref B: BY1AA1072319036 Ref C: 2026-03-24T02:52:03Z' + - 'Ref A: 7F8A91E08007456BBC729259775A26E8 Ref B: SYD281080708034 Ref C: 2026-09-10T06:59:57Z' status: code: 201 message: Created @@ -1024,9 +966,65 @@ interactions: ParameterSetName: - -r --scope-map -n --no-passwords User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-3b70bd01-ace5-11f1-8634-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203978972000&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=MLoxvHbP3-SymrPTdF7bv4QfjTc_h30hEV2XlFHBX7fp-YPhaVj5DXFP4a1DHkTG4-pRQcx4XHS1ilPNkd-5DtKuQ169higfem8Uk8bciIMa2R_yDeKh4g68t2D5qH0dd3jqDF32UczJZhEb_E_xZ3aZcV8NGpnxKisohk3VpTBl7zSAD9wwEvNNF8weuui8sjqlDCOUQuDOw6JULOSDXvz4B9kwxR1rliFnXUo2cwFBfCMm147tuefT9jXY4_W0iOKh8348KSYSNqvyfdPAL4tTjRKXzJ4UuAA2HKXr-XmdtuJ3oVbTgaTt5M59duMlmGIsYcXLNHLVe-sgR5a9gw&h=zN0ZFzAL5N03aLDmxsGKz45GNrAHgtt7224Xnnl3S_U + response: + body: + string: '{"status":"Creating"}' + headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, + 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, + 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-3b70bd01-ace5-11f1-8634-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203985630518&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=KOyRmw6WHNCuID4YyBgRSBYP3o4x56Kcq5ck3CjnnUxayttAsAJ0BLm_xTFN7riuVZv9VMWEv4CUo-GqQeCvzHjhgkXcEM4Xgs9ArK7SaAPFksW-TtQd88kqsE5bHpJSAqq9O742xy7eqS4-WyozyJTrVUQsdamtDxlMoUwBF7XFgKSkLklnM3GGpPCLXtl7T6eaYtTQ57LyGIi-NCyL4iCQV3vWtQMVZUz1UDtV0QT9g4paZbkPPE8YpJu-IyOJ4t7cCzmhoz5JDr_y3qU-RhA2VzCBDTl1GfoN_QMVeADRC3s1odW_kv6687yqNQ5v0djtHzUmtti4mt4V7awsnw&h=t5Ocpkx_F2SMeF1Z4GdC00Dkvo9BW0rpbhzUmhN_b3g + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 10 Sep 2026 06:59:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/50b37ae4-8dd8-408c-9388-e5ca402d4e0b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B161D0DD2A8D4DCEBB526690A4E2FBA5 Ref B: SYD281080706054 Ref C: 2026-09-10T06:59:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr token create + Connection: + - keep-alive + ParameterSetName: + - -r --scope-map -n --no-passwords + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-6fe3b186-272c-11f1-abf4-70a8a51b6037?api-version=2026-03-01-preview&t=639099175242488663&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=S8YjUtM4HZ1GCdRkFmPpqWTLBi89TB_Z1vyc0-RNAZ0warw7BTJYvhb1NyNp8SGsLhMYbdFgJIFjwSJTd94VRHui6TBhpJFiOh5bzVszw9_S9VDouZgguUy2R7DM1W70SPgcBQUNkPXQSbQNLjl5cB6u_vHHgHnwAmgBSAexwumsJdFG2PkTDnSQqhMbq-07mHvX0TaGVQFi0ZN9dSnUrldlTHT3Dm5_pKmip9J5P2Od5Dzwcc6IUzY3rnCw2VdSr-GFWON_5RwHNdjLwjnzbR9vH1GXaOiL8sRftLNQhc_niOfGv6yTU60E7M3KyQ3yU1vf0GWMpOdBj6uQUMHSYg&h=FXvMJlEZmpSMlzAmjKirEGoqRps9fVOwSFI6Xq-Hv3I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-3b70bd01-ace5-11f1-8634-3cefa50a58cc?api-version=2026-09-01-preview&t=639246203978972000&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=MLoxvHbP3-SymrPTdF7bv4QfjTc_h30hEV2XlFHBX7fp-YPhaVj5DXFP4a1DHkTG4-pRQcx4XHS1ilPNkd-5DtKuQ169higfem8Uk8bciIMa2R_yDeKh4g68t2D5qH0dd3jqDF32UczJZhEb_E_xZ3aZcV8NGpnxKisohk3VpTBl7zSAD9wwEvNNF8weuui8sjqlDCOUQuDOw6JULOSDXvz4B9kwxR1rliFnXUo2cwFBfCMm147tuefT9jXY4_W0iOKh8348KSYSNqvyfdPAL4tTjRKXzJ4UuAA2HKXr-XmdtuJ3oVbTgaTt5M59duMlmGIsYcXLNHLVe-sgR5a9gw&h=zN0ZFzAL5N03aLDmxsGKz45GNrAHgtt7224Xnnl3S_U response: body: string: '{"status":"Succeeded"}' @@ -1036,9 +1034,9 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-6fe3b186-272c-11f1-abf4-70a8a51b6037?api-version=2026-03-01-preview&t=639099175245807462&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=ZMjbd9i70uBFm9wrzAB6xmVlFFJO8qJS2PyCxgYQWk--rgBPhmYlP5X7wdjuMTGIIllZF1mcdVOGI8bqgB-apbQP_eBBe842w5130x6KdTT0Vzmfk9oN5HN7oEjj9MYqr7beKOd1NdE2RXIBU2rmT-bqmqj0xmdy3Rg0ERkBkA3th9vHuigVIU5l6gEigx82Dx4VOX5JfQCXMs5jvP2CN13rVeAdFiR_tqhVTSxIUhCrVWXSL3zQJxecOCD6whedh5Bd7RURMPR80WpdbW6sjT722iolSFW40B3L4w450FNf5t0pVOrgR72HNrZvAK68D0XPeHSY7XlNQaQzNvIxFg&h=GwOqaY-BKQWUNSqraojVV0y9uz_OXyrPwvdEHeiVTi8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2/operationStatuses/token-3b70bd01-ace5-11f1-8634-3cefa50a58cc?api-version=2026-09-01-preview&t=639246204092711470&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=stMeVi8OVCsLtNwqkgjWgXeQuqkPnUrdJv5yQ5_lZi-MPT-Wmuqd18o72Ne7h_luFcAtZgsdb59gJDJxphwr5juG5NxenC7pV8mXFF13qYf9lsHGMjOeu0NZzMMjwZC4xTCvsPJN4lcAmRmibOah9vPdDPO4R4mSuuWZ_zsIacWQdL6XytOASh3nXJSM4BCn_igoTjaFvlZ2nUncP2PwKXGphpWmt5LAKRGshumNGR1SJj2eMmBrBXgEhnqUXz9GL8_24QaQG9M5ZLY3cOVxvtrfS6LOP2iXSspLJCqN87SZGlUC_zHy8DfikCFNH4jgUtBRN71GOsg3yYIv1UgIOQ&h=tBOpSY3eaD8TpoVHxK9da1NCXB4usrnvaX2UK-W9Hyg cache-control: - no-cache content-length: @@ -1046,7 +1044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:03 GMT + - Thu, 10 Sep 2026 07:00:09 GMT expires: - '-1' pragma: @@ -1058,11 +1056,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d375e812-f728-4293-92fb-cb61656ad615 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d73f1dc5-f0bb-4742-a339-cfb93a00536b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6D4889A826644B9986492A1AB048C7B5 Ref B: BY1AA1072320025 Ref C: 2026-03-24T02:52:04Z' + - 'Ref A: BB97A43A29A647649667D1144F4C6E9C Ref B: SYD281080707023 Ref C: 2026-09-10T07:00:09Z' status: code: 200 message: OK @@ -1080,19 +1078,19 @@ interactions: ParameterSetName: - -r --scope-map -n --no-passwords User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2","name":"token-2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:04.0456988+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:04.0456988+00:00"},"properties":{"creationDate":"2026-03-24T02:52:04.1351171+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-2","name":"token-2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:57.6940754+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:57.6940754+00:00"},"properties":{"creationDate":"2026-09-10T06:59:57.7446157+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -1100,7 +1098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:04 GMT + - Thu, 10 Sep 2026 07:00:09 GMT expires: - '-1' pragma: @@ -1112,11 +1110,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/31130ce1-3033-4ede-96a0-54f60e41563a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f2ed6499-ca77-4ab0-8ea3-9912b727c5cb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A911D8824C0F4704A60A182B767EFDD6 Ref B: BY1AA1072320036 Ref C: 2026-03-24T02:52:04Z' + - 'Ref A: 072FA46233A74B0B99B1F62E5C854E22 Ref B: SYD281080708054 Ref C: 2026-09-10T07:00:09Z' status: code: 200 message: OK @@ -1134,21 +1132,21 @@ interactions: ParameterSetName: - -r -n --password1 --password2 User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:05 GMT + - Thu, 10 Sep 2026 07:00:10 GMT expires: - '-1' pragma: @@ -1162,7 +1160,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 78E57A0193EF4E46BEF68B2CB2F5794E Ref B: BY1AA1072318023 Ref C: 2026-03-24T02:52:05Z' + - 'Ref A: F5492BE1516148E9AAD6C5FAE132002A Ref B: SYD281080712029 Ref C: 2026-09-10T07:00:10Z' status: code: 200 message: OK @@ -1180,21 +1178,21 @@ interactions: ParameterSetName: - -r -n --password1 --password2 User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:04 GMT + - Thu, 10 Sep 2026 07:00:11 GMT expires: - '-1' pragma: @@ -1208,7 +1206,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9B3C250B73394BC0A5C65613EA214089 Ref B: BY1AA1072320025 Ref C: 2026-03-24T02:52:05Z' + - 'Ref A: C06345683CEB45E98A4DA78A6BAE4AE9 Ref B: SYD281080706060 Ref C: 2026-09-10T07:00:11Z' status: code: 200 message: OK @@ -1230,27 +1228,27 @@ interactions: ParameterSetName: - -r -n --password1 --password2 User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"token-2","passwords":[{"creationTime":"2026-03-24T02:52:06.0364792+00:00","name":"password1","value":"***"},{"creationTime":"2026-03-24T02:52:06.0365848+00:00","name":"password2","value":"***"}]}' + string: '{"username":"token-2","passwords":[{"creationTime":"2026-09-10T07:00:12.5211327+00:00","name":"password1","value":"CALrr5gPbCaNfybCzMcfGe0HZ8Foz5UjUDYGIwB5cWc03G4diIbLJQQJ99CIAC4f1cMEqg7NAAABAZCRzCzi"},{"creationTime":"2026-09-10T07:00:12.5212+00:00","name":"password2","value":"EhE7S2FKizfrqts5GKcYjIPMTxqBpBEnaJp4Oceoy5p3KkEBfa2zJQQJ99CIAC4f1cMEqg7NAAABAZCRstuD"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '370' + - '367' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:05 GMT + - Thu, 10 Sep 2026 07:00:11 GMT expires: - '-1' pragma: @@ -1262,13 +1260,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a7e57271-f79c-4370-b0ba-d5305b516d92 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b51181ff-aeff-4e69-bb34-12c1a29284ab x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 104CAA743E274407B8610F3A8124EC46 Ref B: BY1AA1072316042 Ref C: 2026-03-24T02:52:05Z' + - 'Ref A: 31E0C88AD061448D9821A7DDDA4936C0 Ref B: SYD281080707025 Ref C: 2026-09-10T07:00:12Z' status: code: 200 message: OK @@ -1286,21 +1284,21 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:06 GMT + - Thu, 10 Sep 2026 07:00:12 GMT expires: - '-1' pragma: @@ -1314,7 +1312,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4FE580DD12CF48E2A002BC8077A31489 Ref B: SJC211051203025 Ref C: 2026-03-24T02:52:06Z' + - 'Ref A: 79E62FE962D141D3937EC5FE678DF206 Ref B: SYD281080706054 Ref C: 2026-09-10T07:00:12Z' status: code: 200 message: OK @@ -1332,9 +1330,9 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource token-3-scope-map @@ -1345,7 +1343,7 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -1353,7 +1351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:05 GMT + - Thu, 10 Sep 2026 07:00:13 GMT expires: - '-1' pragma: @@ -1365,11 +1363,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d0363286-fa29-4fc1-bad1-83ca79737af4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/585f659d-441a-4ac9-a394-dc23bd2acdfa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8297B35BE1044E39A96DD2AC53681D58 Ref B: SJC211051204031 Ref C: 2026-03-24T02:52:06Z' + - 'Ref A: C10BA2AD7E0D43E4B778C798C6EFFA6E Ref B: SYD281080712040 Ref C: 2026-09-10T07:00:13Z' status: code: 404 message: Not Found @@ -1392,20 +1390,20 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map","name":"token-3-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:06.7260601+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:06.7260601+00:00"},"properties":{"description":"Created - by token: token-3","type":"UserDefined","creationDate":"2026-03-24T02:52:06.8200393+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map","name":"token-3-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:14.5588867+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:14.5588867+00:00"},"properties":{"description":"Created + by token: token-3","type":"UserDefined","creationDate":"2026-09-10T07:00:14.5852476+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -1413,7 +1411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:06 GMT + - Thu, 10 Sep 2026 07:00:14 GMT expires: - '-1' pragma: @@ -1425,19 +1423,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/768a7d13-a7f0-40ae-a7c5-23391b2e535a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/e23b752f-aee8-43be-a85e-712541c54d66 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BE9B84F7C1964FECA5F8116CB4B52B56 Ref B: SJC211051205039 Ref C: 2026-03-24T02:52:06Z' + - 'Ref A: 6FA54D5F47514597BD8EF1A3FA2532BA Ref B: SYD281080711042 Ref C: 2026-09-10T07:00:14Z' status: code: 200 message: OK - request: - body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map", - "status": "enabled"}}' + body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map"}}' headers: Accept: - application/json @@ -1454,21 +1451,21 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3","name":"token-3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:07.0606165+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:07.0606165+00:00"},"properties":{"creationDate":"2026-03-24T02:52:07.1348419+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3","name":"token-3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:15.1929015+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:15.1929015+00:00"},"properties":{"creationDate":"2026-09-10T07:00:15.2277204+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3/operationStatuses/token-717b6222-272c-11f1-a594-70a8a51b6037?api-version=2026-03-01-preview&t=639099175272949298&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KIZ6goOoMn-80DD1z6ZcA7J186bFkiL4TFxL_kzRFy_el67GOt06IC_Jp9ztlbYNdeevVncuRwznt5WlwwiiD4Vhdk5KCnl-KbSTthWo-3hivp7RuM1fV9z1JQ91t4A7SaMa2C1mQqmIiS8hvae9ZUJ7-HPcqHL4gvtmZYjULOr1IpSFigaYw94cbUhoPI8vysoX8e-TdKYUn-d8rOgeTw-v82lwyLmAzi1pRxMHZJwg2rgWVYWtugMp3Q0sbHZ0iqNPgjLgza83RGmEMb-CE3XL0mFEXLjo33Euj23LOTi40m3EK0FKS41qtkeXZK-zdw5g18sl7NUPu_YbbpDeIQ&h=cxJrasJwEWeFaAVvWqhrZWIvZx5WOXpqwgM5XjwEqfs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3/operationStatuses/token-45a2098c-ace5-11f1-8e7f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246204153336004&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IGThbp_1rj6uF-DgdIbD8WaV0RB8mXSWmTqGA2mX4CvREMWeP48ARiMat0gj5gznGB7rErUSY7w3Cw277GGOEkfrjqiRx6ehSsCVOXBIUhNkz1XI9UGVmWTd7p6so0apI0mxvIUxBN85s_PpmmNnQcKnjZYereMBYJvy9z3PWXzwIzM0iLNwXw-joJgZb4V-IZtS_8xEnGELiu67lCTLRLhOCsYu4FHWD4VLe-jTwv2zxOtSuq8BlzTY7v-EpeHTXpQWE3DkdIdU7thePbmD59-ev_zN8x70YHc_F8ypmWk0t71gQoZzepehNgq6qfHAw1uDME6XWabcHPt87iqUrQ&h=M28P4kPz78txwfUBV7frl73Hwl5iF6OamrvpIL_EYD0 cache-control: - no-cache content-length: @@ -1476,7 +1473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:06 GMT + - Thu, 10 Sep 2026 07:00:14 GMT expires: - '-1' pragma: @@ -1488,13 +1485,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4f1ab19f-4139-4899-82fa-8fcc6490f245 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/cb0386b9-adf3-4148-9d2a-f71c93d65f73 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5B70155125BB4A34A89030E7CB52E419 Ref B: BY1AA1072316025 Ref C: 2026-03-24T02:52:06Z' + - 'Ref A: 3CBA325100574B7D8F166D48698A1886 Ref B: SYD281080706054 Ref C: 2026-09-10T07:00:15Z' status: code: 201 message: Created @@ -1512,9 +1509,9 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3/operationStatuses/token-717b6222-272c-11f1-a594-70a8a51b6037?api-version=2026-03-01-preview&t=639099175272949298&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=KIZ6goOoMn-80DD1z6ZcA7J186bFkiL4TFxL_kzRFy_el67GOt06IC_Jp9ztlbYNdeevVncuRwznt5WlwwiiD4Vhdk5KCnl-KbSTthWo-3hivp7RuM1fV9z1JQ91t4A7SaMa2C1mQqmIiS8hvae9ZUJ7-HPcqHL4gvtmZYjULOr1IpSFigaYw94cbUhoPI8vysoX8e-TdKYUn-d8rOgeTw-v82lwyLmAzi1pRxMHZJwg2rgWVYWtugMp3Q0sbHZ0iqNPgjLgza83RGmEMb-CE3XL0mFEXLjo33Euj23LOTi40m3EK0FKS41qtkeXZK-zdw5g18sl7NUPu_YbbpDeIQ&h=cxJrasJwEWeFaAVvWqhrZWIvZx5WOXpqwgM5XjwEqfs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3/operationStatuses/token-45a2098c-ace5-11f1-8e7f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246204153336004&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IGThbp_1rj6uF-DgdIbD8WaV0RB8mXSWmTqGA2mX4CvREMWeP48ARiMat0gj5gznGB7rErUSY7w3Cw277GGOEkfrjqiRx6ehSsCVOXBIUhNkz1XI9UGVmWTd7p6so0apI0mxvIUxBN85s_PpmmNnQcKnjZYereMBYJvy9z3PWXzwIzM0iLNwXw-joJgZb4V-IZtS_8xEnGELiu67lCTLRLhOCsYu4FHWD4VLe-jTwv2zxOtSuq8BlzTY7v-EpeHTXpQWE3DkdIdU7thePbmD59-ev_zN8x70YHc_F8ypmWk0t71gQoZzepehNgq6qfHAw1uDME6XWabcHPt87iqUrQ&h=M28P4kPz78txwfUBV7frl73Hwl5iF6OamrvpIL_EYD0 response: body: string: '{"status":"Succeeded"}' @@ -1524,9 +1521,9 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3/operationStatuses/token-717b6222-272c-11f1-a594-70a8a51b6037?api-version=2026-03-01-preview&t=639099175276666773&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=M8LWLqWfetvdbJzstx2z5_YF288Mr3KFZ6zmHLJD0XHKn5Vs1FsQKI5cDR7k_Be423sRaIysFQajRsZeoMq5OORWc9Lxsw4SwJU61laO36yDnNJfeAm1nZi8ftThv9qixLhvaeKbPgCWTsKKfttHp1ceu-ryaNR4-UmsJn_IrqZwhSsAYz5E01k69SJfOIygxHpJmQc26Qacy-JJISyIyuMgc9KrWdnB-OBlzwXz6H3eWxX5BJ6Y20KTKykZ4Pj32comMz5C-YqhOrW_M2i4atluCVHPfnjIiSGVHuMfcDXhOVjg_mtv0r-j0od31MoBtNFtOj9W6-bh1JeIdlb-BA&h=t8g9rquzklG1-RuuDrpWXSKE0RwPC8t5adQ-Nzy0EA4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3/operationStatuses/token-45a2098c-ace5-11f1-8e7f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246204159819458&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=l34wr6vwh8hdg6Jn0GLuHFP3p1bZ-Aoc-vVFf0LU2p1hk0nh44PESKYXhXX3QDLfbxbWyu37vL3h6fthewAxT-jaVS19e1vTW9DJAlIVFoNrdVjszEnWsSbwxiRO0njYU5exqQXruzB1jTbrKnACSIEuDLO_vUYaAHEPnTeERSMQ_EokCr3xSp5DtWnWcMc-puQOj4zwFXB4v2O-QkKWmYkWSU37QXDQ4seICw9LbBYTEvRi22u3Z4qDfGuZbFmB2onBVuW2KGIlahpCzlMWaocKN4VjzQS3GQ_d5ufB6hrdIQ8z-CdZYN9K1KExwUkB8jV-wYXvpPo7ocmqoX6nLQ&h=dmESnSQlo3jFNhPI3au7g91nYyLVxUWNQD6jKVqrnao cache-control: - no-cache content-length: @@ -1534,7 +1531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:06 GMT + - Thu, 10 Sep 2026 07:00:15 GMT expires: - '-1' pragma: @@ -1546,11 +1543,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9ac51ebc-b9e5-48b5-9988-5af9887e2e9f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/34a9fe0e-b173-4321-9f2e-588ae4cc2efb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0ACE7084AF824AB29CF14A183B38785C Ref B: BY1AA1072320052 Ref C: 2026-03-24T02:52:07Z' + - 'Ref A: 9A4D3772E4364363B936190E84C6A20D Ref B: SYD281080706040 Ref C: 2026-09-10T07:00:15Z' status: code: 200 message: OK @@ -1568,19 +1565,19 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3","name":"token-3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:07.0606165+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:07.0606165+00:00"},"properties":{"creationDate":"2026-03-24T02:52:07.1348419+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3","name":"token-3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:15.1929015+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:15.1929015+00:00"},"properties":{"creationDate":"2026-09-10T07:00:15.2277204+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-3-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -1588,7 +1585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:07 GMT + - Thu, 10 Sep 2026 07:00:15 GMT expires: - '-1' pragma: @@ -1600,11 +1597,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/90fd2cb7-3cc0-4b2f-b294-a4880acf73ee + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/eac30f17-4f84-4599-a2f2-e8a98091ae2f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8783BBDEB1454E07AEDA0E8C14E10AD2 Ref B: SJC211051201035 Ref C: 2026-03-24T02:52:07Z' + - 'Ref A: 16922EB50E134D319207892413D4D68C Ref B: SYD281080709054 Ref C: 2026-09-10T07:00:16Z' status: code: 200 message: OK @@ -1622,21 +1619,21 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:08 GMT + - Thu, 10 Sep 2026 07:00:16 GMT expires: - '-1' pragma: @@ -1650,13 +1647,13 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FB6C0E2622874E94BEA1131AAC2A3DFE Ref B: BY1AA1072320060 Ref C: 2026-03-24T02:52:08Z' + - 'Ref A: 86B754A0401C4020823E11822F32F539 Ref B: SYD281080712040 Ref C: 2026-09-10T07:00:17Z' status: code: 200 message: OK - request: body: '{"tokenId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-3", - "expiry": "2026-03-25T02:52:08.788774Z"}' + "expiry": "2026-09-11T07:00:19.173540Z"}' headers: Accept: - application/json @@ -1673,27 +1670,27 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"token-3","passwords":[{"creationTime":"2026-03-24T02:52:09.1051652+00:00","expiry":"2026-03-25T02:52:08.788774+00:00","name":"password1","value":"***"},{"creationTime":"2026-03-24T02:52:09.1052507+00:00","expiry":"2026-03-25T02:52:08.788774+00:00","name":"password2","value":"***"}]}' + string: '{"username":"token-3","passwords":[{"creationTime":"2026-09-10T07:00:18.3793277+00:00","expiry":"2026-09-11T07:00:19.17354+00:00","name":"password1","value":"AjvIcTbJqEUhUlmgJK8DKf7YfHzwaTjiLkmkLvusTjGbFRTakS0qJQQJ99CIAC4f1cMEqg7NAAABAZCRqzfd"},{"creationTime":"2026-09-10T07:00:18.3794381+00:00","expiry":"2026-09-11T07:00:19.17354+00:00","name":"password2","value":"1s9XcFlFc561hwPs3nwm8p9oYWsdnox85M4AZ3F1wSkPdAhUgimPJQQJ99CIAC4f1cMEqg7NAAABAZCR7Lcl"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '458' + - '456' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:08 GMT + - Thu, 10 Sep 2026 07:00:18 GMT expires: - '-1' pragma: @@ -1705,13 +1702,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/68faf5f3-ee99-44c4-8f39-c56bd41a7d40 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/051e5753-90c1-470a-a81e-cba5897d3b4b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FEFCB394308049C58628F35A998601F4 Ref B: SJC211051205011 Ref C: 2026-03-24T02:52:08Z' + - 'Ref A: 37F7656487914F9E87A25EC98EED5C75 Ref B: SYD281080709036 Ref C: 2026-09-10T07:00:18Z' status: code: 200 message: OK @@ -1729,23 +1726,23 @@ interactions: ParameterSetName: - -r -n --repository --expiration-in-days User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T02:51:36.2175971Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245081+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245588+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:59:35.3576955Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513528+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513988+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:08 GMT + - Thu, 10 Sep 2026 07:00:18 GMT expires: - '-1' pragma: @@ -1759,7 +1756,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 54C6E077690F40BE823655FC8ADF3763 Ref B: SJC211051205049 Ref C: 2026-03-24T02:52:09Z' + - 'Ref A: E1876529ABAE4E40B87680FC70DC4CA0 Ref B: SYD281080710031 Ref C: 2026-09-10T07:00:18Z' status: code: 200 message: OK @@ -1777,21 +1774,21 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:09 GMT + - Thu, 10 Sep 2026 07:00:19 GMT expires: - '-1' pragma: @@ -1805,7 +1802,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E4F787725FBF40CC93A32F1000D4487B Ref B: SJC211051205019 Ref C: 2026-03-24T02:52:09Z' + - 'Ref A: 70AE341DE8F34B1B830B361F65EB96C6 Ref B: SYD281080708042 Ref C: 2026-09-10T07:00:19Z' status: code: 200 message: OK @@ -1823,9 +1820,9 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map?api-version=2026-09-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The resource token-4-scope-map @@ -1836,7 +1833,7 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -1844,7 +1841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:08 GMT + - Thu, 10 Sep 2026 07:00:19 GMT expires: - '-1' pragma: @@ -1856,11 +1853,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a63d69a7-6fe0-4c03-b626-837c53d57fb4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/515ae0cf-ca4d-4c20-9a72-23b398f2cf72 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: E0555FDEDB8E4430BD9034A2C51AC551 Ref B: BY1AA1072317023 Ref C: 2026-03-24T02:52:09Z' + - 'Ref A: FEA230065E9747CAB53C7F6C54F536F2 Ref B: SYD281080710031 Ref C: 2026-09-10T07:00:20Z' status: code: 404 message: Not Found @@ -1883,28 +1880,28 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map","name":"token-4-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:10.0054057+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:10.0054057+00:00"},"properties":{"description":"Created - by token: token-4","type":"UserDefined","creationDate":"2026-03-24T02:52:10.091316+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map","name":"token-4-scope-map","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:20.8382448+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:20.8382448+00:00"},"properties":{"description":"Created + by token: token-4","type":"UserDefined","creationDate":"2026-09-10T07:00:20.89852+00:00","provisioningState":"Succeeded","actions":["repositories/foo/content/read"]}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - - '705' + - '704' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:09 GMT + - Thu, 10 Sep 2026 07:00:20 GMT expires: - '-1' pragma: @@ -1916,19 +1913,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/e7aefeaf-9d48-40e5-b9c3-631ed4fbf702 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a19e6a4a-bdaa-4c33-b01b-e5f071e0aba5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3656EB8A190E45E68E8AD573041453F8 Ref B: SJC211051203027 Ref C: 2026-03-24T02:52:09Z' + - 'Ref A: 4F4B7A5F672D4473A4590B301855415C Ref B: SYD281080708042 Ref C: 2026-09-10T07:00:20Z' status: code: 200 message: OK - request: - body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map", - "status": "enabled"}}' + body: '{"properties": {"status": "enabled", "scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map"}}' headers: Accept: - application/json @@ -1945,21 +1941,21 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4","name":"token-4","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:10.3581769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:10.3581769+00:00"},"properties":{"creationDate":"2026-03-24T02:52:10.3870745+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4","name":"token-4","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:21.5143712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:21.5143712+00:00"},"properties":{"creationDate":"2026-09-10T07:00:21.5524304+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4/operationStatuses/token-7368628e-272c-11f1-904e-70a8a51b6037?api-version=2026-03-01-preview&t=639099175304675506&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=pqWLFkD_6qEhVFejA7nGEsyZiXf69akuFbn_AIYThiuU-u2HZjqfdftqrjSjpdhdBAXGXmbLTLCdYltWZBh8llpNYQRiXPi-eNoNNh3aAgQjnoQ84ResxrolwD8gCWwaCEA21hLm9NHctcXc279OUxMz07CLkVsAcB_rE0doKbRhNtEmlpMcR0ogvZctYlSYVpBwqxB-0fTT3tRlYu_UdPsdYDAWc6kSqkOm-7_bOGzqUrWhUL2Jv1twc5dX6XgKxXjFJtBMfdIYuvctpwdGS1uSWm5SUKEXcSZHP4j-s4McV9FqoVP9f_b46n3sapEBJuaWyt2I8FuIfZJz2nSNVA&h=x3JEI6lai5ECXzkRtkF9pnr4UV8st-sr47fEL_NAgOQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4/operationStatuses/token-496fc6c3-ace5-11f1-8c6a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246204216549128&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RCGFR9bTwXSjMghrDLX3Gw1d2fzAHegfx8XxsgDxHN4rWckmu6N2waWSyf0CSw0X8avxmzEtUhz4kPoaWxwjdOIBXK9P_PzsY0utGu5hSr1MLHlG3pzEIH6AKAEBVVTNkBoaN-fxCwvo-ViaYcEKjPkKIW6spkhM5gDON-thliSpA6SVqFAkG-X_4NWRWHmlkbwcAnDceCVkf0aFA4uztZ2ioBwlCpKi_44ty_Oq9wsT7ONA3To1rtZF3BzTBeoI3t3D5o8FD6e3aVjtvlZMyqPqCjccNCEtdjmJHqcmZvGCAh_fU1H1Mmfw3TOj-snA4heX2c7YXI6akp5vBX-rJQ&h=tRlH9yccvlEiUvhp_v1GfMUTftlEZc8jlnafua8kZQ0 cache-control: - no-cache content-length: @@ -1967,7 +1963,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:10 GMT + - Thu, 10 Sep 2026 07:00:21 GMT expires: - '-1' pragma: @@ -1979,13 +1975,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/e6fddb2d-412e-47df-96f6-e3bb7fe9f2a5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/6e2075d1-9e80-4716-b863-f4df7da25680 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D4BDD5939E924D428F22913CAB042642 Ref B: BY1AA1072315062 Ref C: 2026-03-24T02:52:10Z' + - 'Ref A: 69D90685FAA94544A76326F3A0E8AE9C Ref B: SYD281080709031 Ref C: 2026-09-10T07:00:21Z' status: code: 201 message: Created @@ -2003,9 +1999,9 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4/operationStatuses/token-7368628e-272c-11f1-904e-70a8a51b6037?api-version=2026-03-01-preview&t=639099175304675506&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=pqWLFkD_6qEhVFejA7nGEsyZiXf69akuFbn_AIYThiuU-u2HZjqfdftqrjSjpdhdBAXGXmbLTLCdYltWZBh8llpNYQRiXPi-eNoNNh3aAgQjnoQ84ResxrolwD8gCWwaCEA21hLm9NHctcXc279OUxMz07CLkVsAcB_rE0doKbRhNtEmlpMcR0ogvZctYlSYVpBwqxB-0fTT3tRlYu_UdPsdYDAWc6kSqkOm-7_bOGzqUrWhUL2Jv1twc5dX6XgKxXjFJtBMfdIYuvctpwdGS1uSWm5SUKEXcSZHP4j-s4McV9FqoVP9f_b46n3sapEBJuaWyt2I8FuIfZJz2nSNVA&h=x3JEI6lai5ECXzkRtkF9pnr4UV8st-sr47fEL_NAgOQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4/operationStatuses/token-496fc6c3-ace5-11f1-8c6a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246204216549128&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RCGFR9bTwXSjMghrDLX3Gw1d2fzAHegfx8XxsgDxHN4rWckmu6N2waWSyf0CSw0X8avxmzEtUhz4kPoaWxwjdOIBXK9P_PzsY0utGu5hSr1MLHlG3pzEIH6AKAEBVVTNkBoaN-fxCwvo-ViaYcEKjPkKIW6spkhM5gDON-thliSpA6SVqFAkG-X_4NWRWHmlkbwcAnDceCVkf0aFA4uztZ2ioBwlCpKi_44ty_Oq9wsT7ONA3To1rtZF3BzTBeoI3t3D5o8FD6e3aVjtvlZMyqPqCjccNCEtdjmJHqcmZvGCAh_fU1H1Mmfw3TOj-snA4heX2c7YXI6akp5vBX-rJQ&h=tRlH9yccvlEiUvhp_v1GfMUTftlEZc8jlnafua8kZQ0 response: body: string: '{"status":"Succeeded"}' @@ -2015,9 +2011,9 @@ interactions: 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4/operationStatuses/token-7368628e-272c-11f1-904e-70a8a51b6037?api-version=2026-03-01-preview&t=639099175307622668&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=C7vMfilI_uVWAzcNvAAqSJIRaA3piF7ZSaRaEsxoTmG4qjCfur9Eemzrf5v-AhVKIrm9EnuyYKeRCDt32xSqja5PjA09w2Hn99kJVTsPNWz4OcWJVgqQMDOhoy--dAjOlcjLHrHICBIvYkunEXaRbzY6W5VA1jMycfeFsHZkLh7P-Rf0h_kmep6TJpXltzDecX91xJ1gsHmXV7cfegJsdgGaxCfk4xAZ89yKLtf49kmexp5BhRr3x6ZDJS7A89WfsgXu49VOTywfTK-5ImqdjzVNBXx3U-Sp6lgvFtUKYsD-1j4slfHBejfCfO1NSTH_RY9SUeLfAqiS2Q0zsXA-MA&h=_h_l_bhvWi4D7jbU65Xlfm4wNrcuPBblh4az4BgF97U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4/operationStatuses/token-496fc6c3-ace5-11f1-8c6a-3cefa50a58cc?api-version=2026-09-01-preview&t=639246204224617259&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Xpa75kTIuR5Ow82AgCUH676m3Ft080fluGaB5fGGpa_gas9job8gNMtEBpwy8mrgz-GsDB4IZROXnoA_b_IpnMjlx-whzwthSsNzGoFbj4fofzgEtgEie01RkqDjCP6Zu960pgIupGSD3Cj-ItUpMi_EfU8A7E5rLWA0GQgLEMFCImv9GszX8f1PlUQ95Ra6UUdc-e0cXYFK4C2_E2_EpYVgLlZeDrri-pw2VuazfuO8T5FgPsZkuyyZyZ-YZJVXPaWCH5vmJ1bOZNMcP-MMmGtNj6tETw9EBh7Mrpugc_zAbvZGqo4BPT7Md0JAFAWL3fAJELBItQzGImZMZ-Tq7Q&h=tF1BGG1Fn6KCdDFuJEZiFfFT4_DR8CHZf27M88pel3Y cache-control: - no-cache content-length: @@ -2025,7 +2021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:10 GMT + - Thu, 10 Sep 2026 07:00:22 GMT expires: - '-1' pragma: @@ -2037,11 +2033,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/f0c0b5b9-7eb4-46f1-97db-80624cac3336 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9c067d27-e090-4fcb-b9d1-ebeddd920e33 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B5ABFE8D82164E9EB41AA16B76820409 Ref B: BY1AA1072315034 Ref C: 2026-03-24T02:52:10Z' + - 'Ref A: 9563821B65FB437FAAC3E5D82047CB7C Ref B: SYD281080705040 Ref C: 2026-09-10T07:00:22Z' status: code: 200 message: OK @@ -2059,19 +2055,19 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4","name":"token-4","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:52:10.3581769+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:52:10.3581769+00:00"},"properties":{"creationDate":"2026-03-24T02:52:10.3870745+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/token-4","name":"token-4","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T07:00:21.5143712+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T07:00:21.5143712+00:00"},"properties":{"creationDate":"2026-09-10T07:00:21.5524304+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/token-4-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -2079,7 +2075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:10 GMT + - Thu, 10 Sep 2026 07:00:22 GMT expires: - '-1' pragma: @@ -2091,11 +2087,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4f413671-878a-405a-a542-690e1378397a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ebe1bbbb-0923-428a-9b3e-a5a0db21a7a2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E924C6AC004E4757B58E41601C33AC90 Ref B: BY1AA1072319042 Ref C: 2026-03-24T02:52:10Z' + - 'Ref A: A959CEC71AEE41099C452005268478B7 Ref B: SYD281080706052 Ref C: 2026-09-10T07:00:22Z' status: code: 200 message: OK @@ -2113,21 +2109,21 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgejgur5xtv3ykosp6abivuivwwzodkg6qwsyubevqbjw5bh4sq22dx7u5gaiu3cw6s/providers/Microsoft.ContainerRegistry/registries/cliregfckivn52alvx7u","name":"cliregfckivn52alvx7u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:44:17.4380504Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:44:17.4380504Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_23ras5tlmkfw6yp2jchvjacwjr2ifyb4ihjuktmadtztm7hnw6dxykq4rd/providers/Microsoft.ContainerRegistry/registries/cliregxn66jbw4ic47u2","name":"cliregxn66jbw4ic47u2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:54:24.1875712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:54:24.1875712Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955Z"}}]}' headers: cache-control: - no-cache content-length: - - '2768' + - '3394' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:10 GMT + - Thu, 10 Sep 2026 07:00:23 GMT expires: - '-1' pragma: @@ -2139,9 +2135,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 42594E1FF992496880FFEAB4C6663464 Ref B: SJC211051203039 Ref C: 2026-03-24T02:52:11Z' + - 'Ref A: 76203F3C34B547568866AC67F26656BA Ref B: SYD281080705052 Ref C: 2026-09-10T07:00:23Z' status: code: 200 message: OK @@ -2164,19 +2160,19 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"token-4","passwords":[{"creationTime":"2026-03-24T02:52:11.5216245+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password1","value":"***"},{"creationTime":"2026-03-24T02:52:11.5217153+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password2","value":"***"}]}' + string: '{"username":"token-4","passwords":[{"creationTime":"2026-09-10T07:00:24.6387796+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password1","value":"2PPbdKe9WpsKiN7fDgaJtGZhtVkUvDkVyVSySOFteqRPxO4PmAmnJQQJ99CIAC4f1cMEqg7NAAABAZCRXQEl"},{"creationTime":"2026-09-10T07:00:24.6388538+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password2","value":"3srCenAQH9xEgkJ94xrKoNUU8JjYEnrzkMyPLib6vxBMaYfyHc4ZJQQJ99CIAC4f1cMEqg7NAAABAZCRAxy4"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, - 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: @@ -2184,7 +2180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:11 GMT + - Thu, 10 Sep 2026 07:00:23 GMT expires: - '-1' pragma: @@ -2196,13 +2192,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b1a6ac0f-8a38-444d-9bc9-4f891f0de1e0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/964909fb-c80f-4c42-9270-9b61c9ca62ce x-ms-ratelimit-remaining-subscription-global-writes: - - '11998' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '798' + - '799' x-msedge-ref: - - 'Ref A: 70EABEF0753F4791B0C267B2B60AD6B8 Ref B: BY1AA1072319062 Ref C: 2026-03-24T02:52:11Z' + - 'Ref A: E68A65B1612C425FBF8A06DE547455F0 Ref B: SYD281080712031 Ref C: 2026-09-10T07:00:24Z' status: code: 200 message: OK @@ -2220,23 +2216,23 @@ interactions: ParameterSetName: - -r -n --repository --expiration User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T02:51:36.2175971+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T02:51:36.2175971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T02:51:36.2175971Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245081+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T02:51:48.4245588+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:59:35.3576955+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:59:35.3576955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-09-10T06:59:35.3576955Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513528+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:59:42.4513988+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1722' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 02:52:11 GMT + - Thu, 10 Sep 2026 07:00:24 GMT expires: - '-1' pragma: @@ -2248,9 +2244,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: B070B6025C5D43C2807679FAB79D5AC3 Ref B: SJC211051201029 Ref C: 2026-03-24T02:52:11Z' + - 'Ref A: 4EF2EABB63724187A0A484994F46FA81 Ref B: SYD281080708042 Ref C: 2026-09-10T07:00:25Z' status: code: 200 message: OK From c7c20835cba5e436249958cafe315e384af4ff1f Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Thu, 10 Sep 2026 20:49:30 +1000 Subject: [PATCH 05/19] test(acr): refresh image import recording --- .../recordings/test_acr_image_import.yaml | 782 +++++++----------- 1 file changed, 303 insertions(+), 479 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_image_import.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_image_import.yaml index 3c1cbabcd06..8388d66e8e7 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_image_import.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_image_import.yaml @@ -17,7 +17,7 @@ interactions: ParameterSetName: - -n -l User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resourcegroupsamesub?api-version=2024-11-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:09:56 GMT + - Thu, 10 Sep 2026 10:38:52 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 0C9DDC7867754E54A359E203001F3CEE Ref B: BN1AA2051013019 Ref C: 2026-04-03T15:09:55Z' + - 'Ref A: 5F76A8ED5E1A417DB1D029E18F38E663 Ref B: SG2AA1040517023 Ref C: 2026-09-10T10:38:50Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1660' + - '1692' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:05 GMT + - Thu, 10 Sep 2026 10:39:01 GMT expires: - '-1' pragma: @@ -98,13 +98,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/bffb9ac1-fc89-4ba6-a5bc-d9995d6defe0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/c6075fa7-c90d-4d4b-a035-7d95668da141 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: 8633305A18364A27AEC3E1530C9D51D7 Ref B: BN1AA2051014039 Ref C: 2026-04-03T15:09:57Z' + - 'Ref A: E9630F49CD0F4EA1B3A6ABC6A9FA1D18 Ref B: SG2AA1070302060 Ref C: 2026-09-10T10:38:53Z' status: code: 200 message: OK @@ -122,22 +122,21 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}}]}' headers: cache-control: - no-cache content-length: - - '5828' + - '3894' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:05 GMT + - Thu, 10 Sep 2026 10:39:03 GMT expires: - '-1' pragma: @@ -151,7 +150,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A4CAC55BAB274BCF9B68BB8E5BF24FED Ref B: BN1AA2051015053 Ref C: 2026-04-03T15:10:05Z' + - 'Ref A: 8067448AF51E416B9A4D230415F3DCC1 Ref B: SG2AA1070303025 Ref C: 2026-09-10T10:39:03Z' status: code: 200 message: OK @@ -169,23 +168,23 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1660' + - '1692' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:06 GMT + - Thu, 10 Sep 2026 10:39:06 GMT expires: - '-1' pragma: @@ -199,7 +198,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 05FAD039F7234858B14A1D196A1B9FF8 Ref B: BN1AA2051013017 Ref C: 2026-04-03T15:10:06Z' + - 'Ref A: DCDF875105E04B189C36DA52FE43407F Ref B: SG2AA1070305040 Ref C: 2026-09-10T10:39:05Z' status: code: 200 message: OK @@ -223,9 +222,9 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -236,17 +235,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:10:08 GMT + - Thu, 10 Sep 2026 10:39:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-31710b05-2f6f-11f1-b401-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258089387240&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=LpouIy2ZouUYqM8Ua9wQ5VhPJbwyr4BY4yZ1ACFUYjpb9bVncqQDNDp1v-vI400aehleNy3zSz44C5UVa4h2IULSbeAje7smrrCbycYa-JFF24GLaQWs2hjOTpR_E8vjeC5myVK9UEWRQGKL7An-ck6cNa58zH_ZP3BN-7sQLTjelDqYjTubEdnzvy4Nk0myiO_zyvYWALpnY2HXHkuJ20Tk0QkumJhAaGO_s7kQvESgSZ2Vqh1vZl45m9H7s-kfOZJGT4JlZOTay0ZZNpvnHKH7qgS-wzmpL-IrBCeohJpXmSI3NCutMdZPh8umm22BQCiquDT5KAiLJ9M40ljEqg&h=T9hHGm6CgwvoTCp0gkU4hxkPNRA-zWKff828TCPZq0A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-d6bb2e36-ad03-11f1-a836-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335485826081&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=c5pOCLZ6MK7Nru_21JE9qCrxth-z2WwmR6kO8TlyUTwdsUlTfubmubOPFW2XunCpURcX0PVb9qXO7b9Z48fQbkD7gApnxzbRKY888Q0eMWbcwgmSZrf-gFjOsN3GU44gdSLKjFeXxqMmELSQ6Y8MkkdeKKQxIdU9I2I2U7-8yeUNnzFXPTo3Y3c0KoRhGzn7UxerXTTIZSFskZyHFiCnwUF7bELGYxgvxdDZMdfa2BYxT6CUVj6Xg3uO0aDwoxeqyz_30IUkt6q-v7TWsiZyOuKArCZR8ELd-lNdcwGQzCyhXpY7jgIfZh5S8ORtNR874uQxsfe4uH2hVVCakfbZfQ&h=HSZntSFUaasRaK40uOdEp0fRJlbgwXaxRJ8Hg79Fw9w pragma: - no-cache strict-transport-security: @@ -256,13 +255,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/f15f3fa0-b9d0-4a14-bc40-c954d9bdeae3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f660c9d6-3d93-40f1-a25b-9a7dc1fc8b07 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8D2D7C1BF98241CE9C1C16AC58846956 Ref B: BN1AA2051012029 Ref C: 2026-04-03T15:10:07Z' + - 'Ref A: 192328C62B3B4BB2A8B89003E91AFB97 Ref B: SG2AA1070305034 Ref C: 2026-09-10T10:39:08Z' status: code: 202 message: Accepted @@ -280,9 +279,9 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-31710b05-2f6f-11f1-b401-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258089387240&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=LpouIy2ZouUYqM8Ua9wQ5VhPJbwyr4BY4yZ1ACFUYjpb9bVncqQDNDp1v-vI400aehleNy3zSz44C5UVa4h2IULSbeAje7smrrCbycYa-JFF24GLaQWs2hjOTpR_E8vjeC5myVK9UEWRQGKL7An-ck6cNa58zH_ZP3BN-7sQLTjelDqYjTubEdnzvy4Nk0myiO_zyvYWALpnY2HXHkuJ20Tk0QkumJhAaGO_s7kQvESgSZ2Vqh1vZl45m9H7s-kfOZJGT4JlZOTay0ZZNpvnHKH7qgS-wzmpL-IrBCeohJpXmSI3NCutMdZPh8umm22BQCiquDT5KAiLJ9M40ljEqg&h=T9hHGm6CgwvoTCp0gkU4hxkPNRA-zWKff828TCPZq0A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-d6bb2e36-ad03-11f1-a836-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335485826081&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=c5pOCLZ6MK7Nru_21JE9qCrxth-z2WwmR6kO8TlyUTwdsUlTfubmubOPFW2XunCpURcX0PVb9qXO7b9Z48fQbkD7gApnxzbRKY888Q0eMWbcwgmSZrf-gFjOsN3GU44gdSLKjFeXxqMmELSQ6Y8MkkdeKKQxIdU9I2I2U7-8yeUNnzFXPTo3Y3c0KoRhGzn7UxerXTTIZSFskZyHFiCnwUF7bELGYxgvxdDZMdfa2BYxT6CUVj6Xg3uO0aDwoxeqyz_30IUkt6q-v7TWsiZyOuKArCZR8ELd-lNdcwGQzCyhXpY7jgIfZh5S8ORtNR874uQxsfe4uH2hVVCakfbZfQ&h=HSZntSFUaasRaK40uOdEp0fRJlbgwXaxRJ8Hg79Fw9w response: body: string: '{"microsoft:azure-cli":"Pending","status":"Accepted"}' @@ -294,11 +293,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:09 GMT + - Thu, 10 Sep 2026 10:39:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-31710b05-2f6f-11f1-b401-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258100460792&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=XtTF1X2Wrk4224cYaHYhIQG7wf_7MBE7PJmyVBqVTDYXe738VO8l6WTJgpbWDJTEUuK6pXOic2uT5z2c553PLNDh_bUYBwzspw8xe6ZHK6qvg1dj9mwv54_nV3kuvvtCDGtTAhRCTXofqNSwVSgaovuo8FwclYjFg18NiM6pjHzdxJMusd57MLVJNbUCnEUaNrAVnvFBowvdFbcGiedefO2MIb7UbMBAPE2qdZTW2ikaQSZPsnzDIdlzqld6aoRMJPj_EVoSHdcb5JKPWGPlRfMr1RtFaEItBCjDmPCiMBDwkWjQYMxuCUEl1Z5v5uHeHH8RkklEGXtezTJ-Y2RXbg&h=YD-64I7JnFLNec2BNs2cUjIn5QR556aayxqmHH20rPM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-d6bb2e36-ad03-11f1-a836-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335507102149&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=YJwakVy7anfPBuh-b3XGaxaODCMglDDebwdd_K-KKDe8bqEZWn48LeajLxv5XqdNuS3CBqdVS5kIqihQGGT2udr_gebKbvk6PPKtgHrYjCoJHEDAwLBJaFv4jWYFYM694YxG-3LpL0QF4WdgNVfbyjBZQXmqRf_QAcmQSlUyiJIKrSmDkQLe2H8aLt7OKQgQ17Wf_0A0dZ9l8EE0yErRWi5G1LYTp3C6HQXYbSZGrVixaQPkqlf-3-UvcUCCUlnlMmhzlJIX2zdcNEVysvX9GcK4Bi1q2irxHxMFOWeFgPb7L81bE4SWnk8OWKozQKDq6ZEXWDcNgylblO2CVkPBYg&h=hAZp3Qcq4MIBBvG40WjPmOaycx3GegCK78THZ0TSWvs pragma: - no-cache strict-transport-security: @@ -308,11 +307,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7e1e8d25-3e20-4737-9394-76bd249adfb0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/bace524b-5268-4a5c-a91c-b86f0fa35299 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1589679D1F61405481122473AE46F8F6 Ref B: BN1AA2051012051 Ref C: 2026-04-03T15:10:09Z' + - 'Ref A: B9BA1DA8EAB34D35A8FA378433BE8417 Ref B: SG2AA1070304060 Ref C: 2026-09-10T10:39:10Z' status: code: 202 message: Accepted @@ -330,9 +329,9 @@ interactions: ParameterSetName: - -n -r --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-31710b05-2f6f-11f1-b401-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258100460792&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=XtTF1X2Wrk4224cYaHYhIQG7wf_7MBE7PJmyVBqVTDYXe738VO8l6WTJgpbWDJTEUuK6pXOic2uT5z2c553PLNDh_bUYBwzspw8xe6ZHK6qvg1dj9mwv54_nV3kuvvtCDGtTAhRCTXofqNSwVSgaovuo8FwclYjFg18NiM6pjHzdxJMusd57MLVJNbUCnEUaNrAVnvFBowvdFbcGiedefO2MIb7UbMBAPE2qdZTW2ikaQSZPsnzDIdlzqld6aoRMJPj_EVoSHdcb5JKPWGPlRfMr1RtFaEItBCjDmPCiMBDwkWjQYMxuCUEl1Z5v5uHeHH8RkklEGXtezTJ-Y2RXbg&h=YD-64I7JnFLNec2BNs2cUjIn5QR556aayxqmHH20rPM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS/operationResults/registries-d6bb2e36-ad03-11f1-a836-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335507102149&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=YJwakVy7anfPBuh-b3XGaxaODCMglDDebwdd_K-KKDe8bqEZWn48LeajLxv5XqdNuS3CBqdVS5kIqihQGGT2udr_gebKbvk6PPKtgHrYjCoJHEDAwLBJaFv4jWYFYM694YxG-3LpL0QF4WdgNVfbyjBZQXmqRf_QAcmQSlUyiJIKrSmDkQLe2H8aLt7OKQgQ17Wf_0A0dZ9l8EE0yErRWi5G1LYTp3C6HQXYbSZGrVixaQPkqlf-3-UvcUCCUlnlMmhzlJIX2zdcNEVysvX9GcK4Bi1q2irxHxMFOWeFgPb7L81bE4SWnk8OWKozQKDq6ZEXWDcNgylblO2CVkPBYg&h=hAZp3Qcq4MIBBvG40WjPmOaycx3GegCK78THZ0TSWvs response: body: string: '{"status":"Succeeded"}' @@ -344,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:20 GMT + - Thu, 10 Sep 2026 10:39:22 GMT expires: - '-1' pragma: @@ -356,11 +355,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2125fbaf-dbfb-4df5-9e9d-39ee960ef4ff + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/515038b6-be47-412e-b405-50f69ebff932 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3A16693A5BF1416B857066A2903480AC Ref B: BN1AA2051013051 Ref C: 2026-04-03T15:10:21Z' + - 'Ref A: 0063A15AF7E74678BCD6DF1A3A5C111C Ref B: SG2AA1070304025 Ref C: 2026-09-10T10:39:22Z' status: code: 200 message: OK @@ -383,23 +382,23 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:29 GMT + - Thu, 10 Sep 2026 10:39:31 GMT expires: - '-1' pragma: @@ -411,13 +410,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/e0e7fd90-fb57-4690-8c05-42839b23a370 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2fb31b6d-fd39-4099-92d3-8db63375c8b5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E3A59B1124A740DAB829725A386CFB26 Ref B: BN1AA2051014031 Ref C: 2026-04-03T15:10:22Z' + - 'Ref A: 1A717FCD9F3A4D61872DA5D9B11CC53E Ref B: SG2AA1070305054 Ref C: 2026-09-10T10:39:24Z' status: code: 200 message: OK @@ -435,22 +434,21 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"name":"magic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"name":"testrega5vlaumfqu3em","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"name":"testreg2ldpdbggiutma","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"name":"acrzonediagold3f29570197","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"name":"sourceregistrysamesub000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"name":"targetregistry000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '4433' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:30 GMT + - Thu, 10 Sep 2026 10:39:34 GMT expires: - '-1' pragma: @@ -464,7 +462,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7E6F7805CC0941CCBB4F24711B245410 Ref B: BN1AA2051012039 Ref C: 2026-04-03T15:10:30Z' + - 'Ref A: BFACFFDD5E5D4E1693979FB57C24375A Ref B: SG2AA1040520025 Ref C: 2026-09-10T10:39:33Z' status: code: 200 message: OK @@ -482,23 +480,23 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:31 GMT + - Thu, 10 Sep 2026 10:39:35 GMT expires: - '-1' pragma: @@ -512,7 +510,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4C0BABEA95FC436BBABA008E2E5464ED Ref B: BN1AA2051015033 Ref C: 2026-04-03T15:10:31Z' + - 'Ref A: 0EED241CA14E4867B8BADEAB0BB5C062 Ref B: SG2AA1040518034 Ref C: 2026-09-10T10:39:35Z' status: code: 200 message: OK @@ -530,22 +528,21 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19084' + - '13823' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:32 GMT + - Thu, 10 Sep 2026 10:39:38 GMT expires: - '-1' pragma: @@ -560,12 +557,10 @@ interactions: - '' - '' - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2905EAFAF652490CB49CB1C608090FAB Ref B: BN1AA2051014047 Ref C: 2026-04-03T15:10:32Z' + - 'Ref A: 125FC012B08447EDB48265988FA23DF9 Ref B: SG2AA1040515052 Ref C: 2026-09-10T10:39:37Z' status: code: 200 message: OK @@ -589,9 +584,9 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -602,17 +597,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:10:33 GMT + - Thu, 10 Sep 2026 10:39:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-4026092c-2f6f-11f1-a23d-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258341813397&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bp97-X71KPgXdFOTxIHQvqu0CJD7r99u1vBaAHFmGH9YXCnTKCcYl4K-f7La7NWMdDnOvXlHWf9c7qNgpWTPjRKve5t3WOAC2A_z2SH7WHa09lzactSlDuygz8NJmrtVS8QVnOJBubONhdiZowlPsvIOETGdJgL-ct-NgZI6Vs_jcWyzSPd0QnWB-N5A6Snn_vopz_EFj_ZXGOX6z1Sx_NLFj4a7ZqzgUE8wynHZ9-rjCGHcJM6lDRMqCZMzlO8NIIfy-7LwFRbobe9hVMyASETbtbMjUMbSsNr4k-UQTQJPuYDCA-vKtdP-XFkufB1QgoGuGiv4Hmrk6QA0-xbMjQ&h=3xUZhyDjd54lt0B7lMh-2UYEytwnXRM8eVpIB35xcfQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-e878bb46-ad03-11f1-8b7c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335805833129&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=GR2Mu7NV-DDBdIsLfvuAOGlK2xmasc7mY0ytrmPB9B1Qh-DLGNgiJ5foi0E-A-SX12stOmZXyn3mnHPNCS_bRYAdmhsvLiL0tzMmRjzEfRHcEI5-irC8C5vVV6SUmq0WOzJiGbKhGDI9Ayq4j9bHfO14tQuW3U2p3h4eIFSVObBEO12hEXfFH5u8NcoQYHnKBqIVxok5z-eZXqLTtqKeZq4mPcZlcuXNWGhyzTrVqGqp39ARiRznogRMjGVcv9bC-ZhkzBPvCgTwU13OeXvcTtYRq1n_5KohIhdiKFXocoks_owAl-TH9QBwqEl1Mt8Ln4MGqii2WVRb-1MxtFfBtQ&h=crqv43111ynYVC-IfKAXTgShZji0ftwcVc9k6UU-s1w pragma: - no-cache strict-transport-security: @@ -622,13 +617,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/ef51c349-7937-4648-896f-d9e570fbd4d5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d2da246e-d08a-4c85-a7a9-7d2a3eed88b8 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: AC52D02753F24C42B74F04449642F105 Ref B: BN1AA2051012037 Ref C: 2026-04-03T15:10:33Z' + - 'Ref A: 6BEA92A6E15645AB8FFBF9B044E44007 Ref B: SG2AA1070303052 Ref C: 2026-09-10T10:39:40Z' status: code: 202 message: Accepted @@ -646,25 +641,25 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-4026092c-2f6f-11f1-a23d-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258341813397&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bp97-X71KPgXdFOTxIHQvqu0CJD7r99u1vBaAHFmGH9YXCnTKCcYl4K-f7La7NWMdDnOvXlHWf9c7qNgpWTPjRKve5t3WOAC2A_z2SH7WHa09lzactSlDuygz8NJmrtVS8QVnOJBubONhdiZowlPsvIOETGdJgL-ct-NgZI6Vs_jcWyzSPd0QnWB-N5A6Snn_vopz_EFj_ZXGOX6z1Sx_NLFj4a7ZqzgUE8wynHZ9-rjCGHcJM6lDRMqCZMzlO8NIIfy-7LwFRbobe9hVMyASETbtbMjUMbSsNr4k-UQTQJPuYDCA-vKtdP-XFkufB1QgoGuGiv4Hmrk6QA0-xbMjQ&h=3xUZhyDjd54lt0B7lMh-2UYEytwnXRM8eVpIB35xcfQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-e878bb46-ad03-11f1-8b7c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335805833129&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=GR2Mu7NV-DDBdIsLfvuAOGlK2xmasc7mY0ytrmPB9B1Qh-DLGNgiJ5foi0E-A-SX12stOmZXyn3mnHPNCS_bRYAdmhsvLiL0tzMmRjzEfRHcEI5-irC8C5vVV6SUmq0WOzJiGbKhGDI9Ayq4j9bHfO14tQuW3U2p3h4eIFSVObBEO12hEXfFH5u8NcoQYHnKBqIVxok5z-eZXqLTtqKeZq4mPcZlcuXNWGhyzTrVqGqp39ARiRznogRMjGVcv9bC-ZhkzBPvCgTwU13OeXvcTtYRq1n_5KohIhdiKFXocoks_owAl-TH9QBwqEl1Mt8Ln4MGqii2WVRb-1MxtFfBtQ&h=crqv43111ynYVC-IfKAXTgShZji0ftwcVc9k6UU-s1w response: body: - string: '{"status":"Accepted"}' + string: '{"repository_same_sub:tag_same_sub":"Pending","status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '66' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:34 GMT + - Thu, 10 Sep 2026 10:39:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-4026092c-2f6f-11f1-a23d-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258350200030&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=sCDCa-FGArBEPRkkzbPOM5CWedXPZ5JtJgveO53-dRugCnTqkYVovnkIehyGmtqBRrlTV3sYK_nRbo_18HnONov5083n0dSw8dcfXOjysn0uwiJ29f6VfJnxQF4rthkNuTWykXAgjRtbXmCDvMseOihW1j5mrbhmINzRxc4wp6nLpywYWmjCfOlLyrlqJ-gFwh8zBNA1el-VCf9LDhkZvZa_tvMcM6JqFBPTO_bQRa8Ha_BXPxj9ga2rMk0z5Ctf3V0KmH8hUpIH_1WChVoImxH0OL9PMmY-T3TUEmGh1TZpIMsIBk2e3ml3Y9N-d9celzW3FhGYKMLKgjOm3Mn3AQ&h=ALIs4gydBhy4Z0SKowCuxLfQobXxrchtluaNeWTgyMs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-e878bb46-ad03-11f1-8b7c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335833956475&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=sq8dO4bnecf-0a5ky8Mdz-IyMp4OEi4hpQwI-LM9B64uRqaBZhr-69OLWwAlhVkBQSudAE74tJ2f6o_Wv58tRHfAhiCfcl9oiVtaudlmFxye3WEnB-9SN_MnizFFJtbuZAV0Z-u0Q4qvZnTxYTUnfx0RLDsIftW8aexsymOZ6-lhrBH0yDyfbAWsKojRFK-pYit5GYauxODcJvz6JJraHB7KAWPXMb2x_bMx66Y_PRxAmvjrHZE-UZR4FGuues_v0DLXh7uJjVvg8bn7staiKz6dTOwUX3aJJ8SgMF346EDcHXOy9DALSKAvXUq4QSRPeb81wS9kmOH561kp1sOyFw&h=NEsbHvWlCnl4E0nE9wFPuwR6PGlp9jPX7NXrnCtrBek pragma: - no-cache strict-transport-security: @@ -674,11 +669,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/88024263-1111-4942-9618-b115f8a8b32a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/f43c8074-233c-4735-a4fb-be5285fab6bd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 543BFD4D36434233A4DD4890C0057130 Ref B: BN1AA2051015021 Ref C: 2026-04-03T15:10:34Z' + - 'Ref A: FF16EE839A42473B827D8B970CE6AC42 Ref B: SG2AA1070305031 Ref C: 2026-09-10T10:39:42Z' status: code: 202 message: Accepted @@ -696,9 +691,9 @@ interactions: ParameterSetName: - -n --source -r -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-4026092c-2f6f-11f1-a23d-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258350200030&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=sCDCa-FGArBEPRkkzbPOM5CWedXPZ5JtJgveO53-dRugCnTqkYVovnkIehyGmtqBRrlTV3sYK_nRbo_18HnONov5083n0dSw8dcfXOjysn0uwiJ29f6VfJnxQF4rthkNuTWykXAgjRtbXmCDvMseOihW1j5mrbhmINzRxc4wp6nLpywYWmjCfOlLyrlqJ-gFwh8zBNA1el-VCf9LDhkZvZa_tvMcM6JqFBPTO_bQRa8Ha_BXPxj9ga2rMk0z5Ctf3V0KmH8hUpIH_1WChVoImxH0OL9PMmY-T3TUEmGh1TZpIMsIBk2e3ml3Y9N-d9celzW3FhGYKMLKgjOm3Mn3AQ&h=ALIs4gydBhy4Z0SKowCuxLfQobXxrchtluaNeWTgyMs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-e878bb46-ad03-11f1-8b7c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246335833956475&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=sq8dO4bnecf-0a5ky8Mdz-IyMp4OEi4hpQwI-LM9B64uRqaBZhr-69OLWwAlhVkBQSudAE74tJ2f6o_Wv58tRHfAhiCfcl9oiVtaudlmFxye3WEnB-9SN_MnizFFJtbuZAV0Z-u0Q4qvZnTxYTUnfx0RLDsIftW8aexsymOZ6-lhrBH0yDyfbAWsKojRFK-pYit5GYauxODcJvz6JJraHB7KAWPXMb2x_bMx66Y_PRxAmvjrHZE-UZR4FGuues_v0DLXh7uJjVvg8bn7staiKz6dTOwUX3aJJ8SgMF346EDcHXOy9DALSKAvXUq4QSRPeb81wS9kmOH561kp1sOyFw&h=NEsbHvWlCnl4E0nE9wFPuwR6PGlp9jPX7NXrnCtrBek response: body: string: '{"status":"Succeeded"}' @@ -710,7 +705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:45 GMT + - Thu, 10 Sep 2026 10:39:55 GMT expires: - '-1' pragma: @@ -722,11 +717,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/cdcd3c7f-dc33-44c4-8a89-6efbf36049fb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/faaa9bdd-ec03-41d6-84a7-aaf74881babb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 48D9C3454D614EBBBD085D5BBA3AD32B Ref B: BN1AA2051015031 Ref C: 2026-04-03T15:10:45Z' + - 'Ref A: EBD95D89986C491F9EF0EE4EFD9435D2 Ref B: SG2AA1040516060 Ref C: 2026-09-10T10:39:55Z' status: code: 200 message: OK @@ -744,22 +739,21 @@ interactions: ParameterSetName: - -n --source -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '4433' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:46 GMT + - Thu, 10 Sep 2026 10:39:58 GMT expires: - '-1' pragma: @@ -773,7 +767,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CE5121130D4645B69290B94860D335E4 Ref B: BN1AA2051013039 Ref C: 2026-04-03T15:10:46Z' + - 'Ref A: 2EF66249F374402AAEDC018EF1EB59A5 Ref B: SG2AA1040520029 Ref C: 2026-09-10T10:39:58Z' status: code: 200 message: OK @@ -791,23 +785,23 @@ interactions: ParameterSetName: - -n --source -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:47 GMT + - Thu, 10 Sep 2026 10:39:59 GMT expires: - '-1' pragma: @@ -821,7 +815,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7A5E378260AB427FB45E89FBC7ACA551 Ref B: BN1AA2051014009 Ref C: 2026-04-03T15:10:47Z' + - 'Ref A: 283AE470290545F19779633A8DCAD439 Ref B: SG2AA1070303036 Ref C: 2026-09-10T10:40:00Z' status: code: 200 message: OK @@ -839,22 +833,21 @@ interactions: ParameterSetName: - -n --source -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19084' + - '13823' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:49 GMT + - Thu, 10 Sep 2026 10:40:02 GMT expires: - '-1' pragma: @@ -869,12 +862,10 @@ interactions: - '' - '' - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 760A541A4B424B899942610051F24ED5 Ref B: BN1AA2051014053 Ref C: 2026-04-03T15:10:48Z' + - 'Ref A: 42B3363EAA2C4F70ABFA231BF82D1275 Ref B: SG2AA1070304042 Ref C: 2026-09-10T10:40:01Z' status: code: 200 message: OK @@ -898,9 +889,9 @@ interactions: ParameterSetName: - -n --source -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -911,17 +902,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:10:50 GMT + - Thu, 10 Sep 2026 10:40:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-49f84e4e-2f6f-11f1-a837-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258509391771&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jhsA1ZcVhfa2IRNVe5Hcc4vQbp_EgUFHnjcX3qhxdUQjq9oJyg_lXjMXRzsDMJy5rRLjVt2pybfm5ks1xiXOgHNMZw9XkdrSbCr7xy8YoqICH5ib0xNWtinFIo5TeIS7giklPJ1wSAgMGCl0-OXloEcxHR6HCEWGAAGpC5hsy_AfQYBM6DGfghWeErRo8iCYYa41Eb4rxSyKkLL7SqyVGDNtgkPmB0x8MMX8dk64qWpmcmFQ9L6M1Ld0AyaJjMdq4ey2_SZKcgKWb6ju9zho3FZP3kyjJsNZhr2ZbfIhBTTQjaIvXL3njfucn6VmDh1mZbEJE7m7mZFxfRGKsnZDzw&h=WPq7Wge0DqASpyCgprrPyrsc4rmpjflu0H_ezeS1Heo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f72c1b4d-ad03-11f1-abd9-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336049759811&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RZU1RCBZw5PUAWj56oJeHvleGC8sYz4Mi5qbea7uWlG7GqUQ1P1cTCpxAQ3MGb4dk1BaNiQQ37OMxrT2CNX7edLN4e9SR8X-iSw0tH48waQiGiNKRDt2k9U3xHsEhY0dhAKxYnXofzi4noB8Qvgrftucd305y7ZUKxQpQVd0SMLW9z_8rH8BClONfo5cfAMA5Zp8giIgQxZIu7rjg-9Qazo9BebPOYgUrPfnyuF-2EGEJMGwyTwqo7sYwwt9O5nkjHPCD1lfmset0CxWgG-8ScVPWd9ZZs9ETNZRaC-XisWxkxe1q1SUb7Y-md-Nz7pwykLBSGcWBFJxOO0EBJucyg&h=xte5XQN61YWMwfLb8EINQb7vuZJ4XKkPpkGdP9qXcmU pragma: - no-cache strict-transport-security: @@ -931,13 +922,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a8793d2c-d26b-4abe-8eab-30b860f43ae7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/256297e9-f058-4685-8d12-edfed6c1075a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: AC461EA3325E493EAE493C66A7B61756 Ref B: BN1AA2051013039 Ref C: 2026-04-03T15:10:50Z' + - 'Ref A: 6E0EE596F99A4F27BB0A00038109B318 Ref B: SG2AA1070305062 Ref C: 2026-09-10T10:40:04Z' status: code: 202 message: Accepted @@ -955,9 +946,9 @@ interactions: ParameterSetName: - -n --source -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-49f84e4e-2f6f-11f1-a837-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258509391771&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=jhsA1ZcVhfa2IRNVe5Hcc4vQbp_EgUFHnjcX3qhxdUQjq9oJyg_lXjMXRzsDMJy5rRLjVt2pybfm5ks1xiXOgHNMZw9XkdrSbCr7xy8YoqICH5ib0xNWtinFIo5TeIS7giklPJ1wSAgMGCl0-OXloEcxHR6HCEWGAAGpC5hsy_AfQYBM6DGfghWeErRo8iCYYa41Eb4rxSyKkLL7SqyVGDNtgkPmB0x8MMX8dk64qWpmcmFQ9L6M1Ld0AyaJjMdq4ey2_SZKcgKWb6ju9zho3FZP3kyjJsNZhr2ZbfIhBTTQjaIvXL3njfucn6VmDh1mZbEJE7m7mZFxfRGKsnZDzw&h=WPq7Wge0DqASpyCgprrPyrsc4rmpjflu0H_ezeS1Heo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f72c1b4d-ad03-11f1-abd9-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336049759811&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RZU1RCBZw5PUAWj56oJeHvleGC8sYz4Mi5qbea7uWlG7GqUQ1P1cTCpxAQ3MGb4dk1BaNiQQ37OMxrT2CNX7edLN4e9SR8X-iSw0tH48waQiGiNKRDt2k9U3xHsEhY0dhAKxYnXofzi4noB8Qvgrftucd305y7ZUKxQpQVd0SMLW9z_8rH8BClONfo5cfAMA5Zp8giIgQxZIu7rjg-9Qazo9BebPOYgUrPfnyuF-2EGEJMGwyTwqo7sYwwt9O5nkjHPCD1lfmset0CxWgG-8ScVPWd9ZZs9ETNZRaC-XisWxkxe1q1SUb7Y-md-Nz7pwykLBSGcWBFJxOO0EBJucyg&h=xte5XQN61YWMwfLb8EINQb7vuZJ4XKkPpkGdP9qXcmU response: body: string: '{"status":"Accepted"}' @@ -969,11 +960,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:10:51 GMT + - Thu, 10 Sep 2026 10:40:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-49f84e4e-2f6f-11f1-a837-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258518810912&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=0kT0OAzoGeS6vHCbGv_Blfyu75A_ZWd25PUVUtpCUAqcmKkKvwID4vhb29w0FAxxCpOQKOkcB41Uk_tBzXqFCS8jn0RK8wbkiopz7HqdnWpZoGNaOzpNMOrH0xuAyRR_pQ1tJrcB4jUtF9_2e0VSxtji8G5BT7ZKEAmHCto4NDL5XOxCNmwUEA1FmfEzAOGi2C4YfXnX-0YfxBWuQzdR-wA6Z7BvM_yyyU_HCgBKO_7UIlpcmtfrCQJdPFDxh42iBCixSJCOcqjtHH4qzdcbmGoZOvZz_nXuyHWoIz3u0cMEPSSHzZVL6iI4-j6P3XgF2LDIe06IGGWRRRANN0C_oA&h=6IUjShbvWvdOVIeHi0kffD-igxt5OD1Me_spJJ9eLXY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f72c1b4d-ad03-11f1-abd9-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336076428943&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=0saUDshUp07QowuyDQqKwmCtF_G5ISaYR48OgfOS2-kgTyUJtu1aX-OSwlMoGusxz4Mb51r2eTuxp4osATQXpAFykl00Ab5Ygc0BsynUTvqKPlaYSXYXPbyD-baw52ySE--trkdUqbCMoBWjh_6DziBt6fvqcipt_inFxl9kYLpWEQZUQlL5O_lVl0Q52Cr6J_THmD6MhWquHG5n8mpjGRQZ8S0PudV05ekv2kzh-Ifk7De9s6ycy47B7uH-T61KUCDhJcprTuvcvblaaOoKmeMltFQLHX3JXcPoUgcpLGidol62PcDagIYUsa-JbWkVEjZkdFGmORpJCDoBNMyDTQ&h=CfPov-AavxwUTWXXNTOxDp5Qyn9jIxZJ-lPfBmy0ZWA pragma: - no-cache strict-transport-security: @@ -983,11 +974,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/91c37799-b5a7-4eb9-9d46-b0a3e8d1e6c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/4829114f-c987-45bc-bdf7-a01846186e03 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F785ECFBC45F4C969AFE1E6CCC098004 Ref B: BN1AA2051015011 Ref C: 2026-04-03T15:10:51Z' + - 'Ref A: 7F8FEBC0C06E4586B1B15B9FADE9860A Ref B: SG2AA1040513052 Ref C: 2026-09-10T10:40:06Z' status: code: 202 message: Accepted @@ -1005,9 +996,9 @@ interactions: ParameterSetName: - -n --source -r User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-49f84e4e-2f6f-11f1-a837-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258518810912&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=0kT0OAzoGeS6vHCbGv_Blfyu75A_ZWd25PUVUtpCUAqcmKkKvwID4vhb29w0FAxxCpOQKOkcB41Uk_tBzXqFCS8jn0RK8wbkiopz7HqdnWpZoGNaOzpNMOrH0xuAyRR_pQ1tJrcB4jUtF9_2e0VSxtji8G5BT7ZKEAmHCto4NDL5XOxCNmwUEA1FmfEzAOGi2C4YfXnX-0YfxBWuQzdR-wA6Z7BvM_yyyU_HCgBKO_7UIlpcmtfrCQJdPFDxh42iBCixSJCOcqjtHH4qzdcbmGoZOvZz_nXuyHWoIz3u0cMEPSSHzZVL6iI4-j6P3XgF2LDIe06IGGWRRRANN0C_oA&h=6IUjShbvWvdOVIeHi0kffD-igxt5OD1Me_spJJ9eLXY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f72c1b4d-ad03-11f1-abd9-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336076428943&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=0saUDshUp07QowuyDQqKwmCtF_G5ISaYR48OgfOS2-kgTyUJtu1aX-OSwlMoGusxz4Mb51r2eTuxp4osATQXpAFykl00Ab5Ygc0BsynUTvqKPlaYSXYXPbyD-baw52ySE--trkdUqbCMoBWjh_6DziBt6fvqcipt_inFxl9kYLpWEQZUQlL5O_lVl0Q52Cr6J_THmD6MhWquHG5n8mpjGRQZ8S0PudV05ekv2kzh-Ifk7De9s6ycy47B7uH-T61KUCDhJcprTuvcvblaaOoKmeMltFQLHX3JXcPoUgcpLGidol62PcDagIYUsa-JbWkVEjZkdFGmORpJCDoBNMyDTQ&h=CfPov-AavxwUTWXXNTOxDp5Qyn9jIxZJ-lPfBmy0ZWA response: body: string: '{"status":"Succeeded"}' @@ -1019,7 +1010,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:02 GMT + - Thu, 10 Sep 2026 10:40:19 GMT expires: - '-1' pragma: @@ -1031,11 +1022,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/15a108ae-96e1-4636-8071-1e6803b6e085 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/c1cce1d3-4543-44e9-9425-25eed93b4033 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5C1A5B1823EC41F6A10F9E2BE132D667 Ref B: BN1AA2051013031 Ref C: 2026-04-03T15:11:02Z' + - 'Ref A: 51689B58810A48C3BFB5251E6EA4AF09 Ref B: SG2AA1070304034 Ref C: 2026-09-10T10:40:19Z' status: code: 200 message: OK @@ -1053,22 +1044,21 @@ interactions: ParameterSetName: - -n --source -r -t -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '4433' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:03 GMT + - Thu, 10 Sep 2026 10:40:21 GMT expires: - '-1' pragma: @@ -1082,7 +1072,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1AACE4424ACB44688BBBA34E471FC3C1 Ref B: BN1AA2051012027 Ref C: 2026-04-03T15:11:03Z' + - 'Ref A: 5E1608DDD6EA411D9D70BB5A3CD2B486 Ref B: SG2AA1070305023 Ref C: 2026-09-10T10:40:21Z' status: code: 200 message: OK @@ -1100,23 +1090,23 @@ interactions: ParameterSetName: - -n --source -r -t -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:04 GMT + - Thu, 10 Sep 2026 10:40:23 GMT expires: - '-1' pragma: @@ -1130,7 +1120,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F6BEAA641AE8408E9A3E2BC90B6D112B Ref B: BN1AA2051014023 Ref C: 2026-04-03T15:11:04Z' + - 'Ref A: 6743BC116B1C4BBDA48DBA0284AEF0EE Ref B: SG2AA1040512031 Ref C: 2026-09-10T10:40:23Z' status: code: 200 message: OK @@ -1148,22 +1138,21 @@ interactions: ParameterSetName: - -n --source -r -t -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19084' + - '13823' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:06 GMT + - Thu, 10 Sep 2026 10:40:26 GMT expires: - '-1' pragma: @@ -1178,12 +1167,10 @@ interactions: - '' - '' - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 699F13B5123B48A18A3A6D589926694A Ref B: BN1AA2051012053 Ref C: 2026-04-03T15:11:05Z' + - 'Ref A: 5F74C11D125248ABAD130B982CF2EC33 Ref B: SG2AA1070303023 Ref C: 2026-09-10T10:40:26Z' status: code: 200 message: OK @@ -1207,9 +1194,9 @@ interactions: ParameterSetName: - -n --source -r -t -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -1220,17 +1207,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:11:07 GMT + - Thu, 10 Sep 2026 10:40:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-53ef3ff9-2f6f-11f1-b8c9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258676630986&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=YNCQkmpwsCv31NVxQHGVoliAMg7ZpL0aFWLyhXl-CSl5jrquCeQIuU8ZNCFc0UMNSeX9KJIA_DRb6IywGuFGe2wRjxlgg6If0P-j4i-h-9_GN2G_-Aqpy2dI4j2dDWOZK1Nlqq9guZ_W0KSaYNB1zcElZvRLLAKB0b1LfkcpwKJgGep1TdewbaFX2uJqjypfWpcSuuf0OnX-iNCumZJBO8UuwJvbMiZrjbM6bytggntD0yVAJRgZa2ug_lOs4l3QO1COvOJNuRnZnQ3AK0k799ekcH4Eim7Rt_QUexfZgJXqMwPjHNi7uRe_Rx0YRc7NeJI_3-2M9WvV3WR2WRMYmw&h=JL_GLrvD3iTbLb_aMvIn30J114yhWc3LY5Cbq7eLf7A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-052e5f44-ad04-11f1-9a34-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336291013739&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TzAvdXFxdmtXCwfAE3Bwgrr0xRE6bqQDZLJcqgtrtgzNaGSVOaHCAp0tF_zz8TjxpcY6ytGvE_KXPHy1P8RlB__Wfr-CuPlq4tq277uej9bafytok12BLDCC2aq89E9j7vbZjVo1HulZjXZtcU0JssN3lTJUEsMVIDlwVeDH0mesocN2U_O-JVatuxdmvtgYJyr642NLsJBdBTWAYlhSbO-skl2pPd57XB2GhSk4JU-7jEZqmp7XyTlFw1Ow5tNAzefGqVzFcCYuSBeoJn4nK-azdTZz0wlMLsuAgDhbO3vGwFgF5jWe94RCwoD0ShqyFJpfXRIsnScVrDdEnXwGpg&h=vt4H7ibocP-Gy0J5XVDp1USi0o9WVbeEln0h5DDx8dg pragma: - no-cache strict-transport-security: @@ -1240,13 +1227,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/26de8d6c-eecb-4da6-b5b2-b2a2be5a3e4c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/fde34109-3ab4-4550-b062-ff19b78fc5e7 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C6402C11F8354196BEF7638CE040F2B3 Ref B: BN1AA2051014047 Ref C: 2026-04-03T15:11:07Z' + - 'Ref A: DDCBD3F1B5004BDB8C5D32D3476C1321 Ref B: SG2AA1070301060 Ref C: 2026-09-10T10:40:28Z' status: code: 202 message: Accepted @@ -1264,25 +1251,25 @@ interactions: ParameterSetName: - -n --source -r -t -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-53ef3ff9-2f6f-11f1-b8c9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258676630986&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=YNCQkmpwsCv31NVxQHGVoliAMg7ZpL0aFWLyhXl-CSl5jrquCeQIuU8ZNCFc0UMNSeX9KJIA_DRb6IywGuFGe2wRjxlgg6If0P-j4i-h-9_GN2G_-Aqpy2dI4j2dDWOZK1Nlqq9guZ_W0KSaYNB1zcElZvRLLAKB0b1LfkcpwKJgGep1TdewbaFX2uJqjypfWpcSuuf0OnX-iNCumZJBO8UuwJvbMiZrjbM6bytggntD0yVAJRgZa2ug_lOs4l3QO1COvOJNuRnZnQ3AK0k799ekcH4Eim7Rt_QUexfZgJXqMwPjHNi7uRe_Rx0YRc7NeJI_3-2M9WvV3WR2WRMYmw&h=JL_GLrvD3iTbLb_aMvIn30J114yhWc3LY5Cbq7eLf7A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-052e5f44-ad04-11f1-9a34-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336291013739&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TzAvdXFxdmtXCwfAE3Bwgrr0xRE6bqQDZLJcqgtrtgzNaGSVOaHCAp0tF_zz8TjxpcY6ytGvE_KXPHy1P8RlB__Wfr-CuPlq4tq277uej9bafytok12BLDCC2aq89E9j7vbZjVo1HulZjXZtcU0JssN3lTJUEsMVIDlwVeDH0mesocN2U_O-JVatuxdmvtgYJyr642NLsJBdBTWAYlhSbO-skl2pPd57XB2GhSk4JU-7jEZqmp7XyTlFw1Ow5tNAzefGqVzFcCYuSBeoJn4nK-azdTZz0wlMLsuAgDhbO3vGwFgF5jWe94RCwoD0ShqyFJpfXRIsnScVrDdEnXwGpg&h=vt4H7ibocP-Gy0J5XVDp1USi0o9WVbeEln0h5DDx8dg response: body: - string: '{"status":"Accepted"}' + string: '{"repository_multi1:tag_multi1":"Pending","repository_multi2:tag_multi2":"Pending","status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '103' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:08 GMT + - Thu, 10 Sep 2026 10:40:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-53ef3ff9-2f6f-11f1-b8c9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258687205447&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=awt61AxjCLghXqSa4uojiUBixSx0L_HoTQUfepkXwPPWZU07SFIiQdCw3Ipq3HXkz3V8ojuvH67qJJF_jEcx-3IWtsq5IRKwQItdmFxjO9GnI9ddKK7M29O4p9sYEA1MbcuPPduaaggn4pdpmR5dRDI8eREjEc_RtD1NSF9UV-EYAXBPzN-GJHNfP5PWHaABjwRKqxfuHw902xK1UPEqs7Kt2OnYrYD1H2f8mZeY38-oR-CPyAD0TMNPUykDGjeNUht5ElQ3qiatpDkDJgTIvnXQZHopvY51oKSg6F6ftpNmWoghHYq8Ls0dpsLhZVS_2TdPi-DmnU09o8HNdyU_xg&h=yAl2lLkDAyucV33yDbeciRo1yluwffoaW5XiD020XuI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-052e5f44-ad04-11f1-9a34-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336317823800&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=Gf4R85SlbDZ3-khayUvOmirmKZZxBHgIc8dwYjXPbuWKhyZ3DGqL4GWcPecGfoFGAj3n6hrO8H5cUbtx5bOaPgaH1gMwqvbDTmsQW9kCAWPfVhrKWPpWlZiWEBXH7h3zgS2981cnj3TMUI17LQp9XNTypHVuhFEB0-abyog5AqwP7dhzJYWn-lrYOge9wofUwF7atgVk3jMIBb7bwwvu3KfW4Xb98F9ioiShwancIzwRkeggH87xL4vpBr0MzIgxeKtWRmJNorllF8WrdCeiEjBmFwBwiamIVwI9xqA4MEzhWT0Ua9jGLGk8MLADuKnDsCXivRprJxpLixbl5E9_Vw&h=bo6zXCX3P57XywOxe0cWzPll5f7qD-b4GKoi0pyOhgY pragma: - no-cache strict-transport-security: @@ -1292,11 +1279,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/a4d5a7b9-b753-4a72-81fb-f074a1f1ec45 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/9c555274-4f97-49ea-9d23-58b197ee8efa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8EDEF6B43C0A439E9B30929F7F8BBDB2 Ref B: BN1AA2051012031 Ref C: 2026-04-03T15:11:08Z' + - 'Ref A: EC267F768FBC428A907CD5F6E03ED694 Ref B: SG2AA1040519031 Ref C: 2026-09-10T10:40:31Z' status: code: 202 message: Accepted @@ -1314,9 +1301,9 @@ interactions: ParameterSetName: - -n --source -r -t -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-53ef3ff9-2f6f-11f1-b8c9-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258687205447&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=awt61AxjCLghXqSa4uojiUBixSx0L_HoTQUfepkXwPPWZU07SFIiQdCw3Ipq3HXkz3V8ojuvH67qJJF_jEcx-3IWtsq5IRKwQItdmFxjO9GnI9ddKK7M29O4p9sYEA1MbcuPPduaaggn4pdpmR5dRDI8eREjEc_RtD1NSF9UV-EYAXBPzN-GJHNfP5PWHaABjwRKqxfuHw902xK1UPEqs7Kt2OnYrYD1H2f8mZeY38-oR-CPyAD0TMNPUykDGjeNUht5ElQ3qiatpDkDJgTIvnXQZHopvY51oKSg6F6ftpNmWoghHYq8Ls0dpsLhZVS_2TdPi-DmnU09o8HNdyU_xg&h=yAl2lLkDAyucV33yDbeciRo1yluwffoaW5XiD020XuI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-052e5f44-ad04-11f1-9a34-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336317823800&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=Gf4R85SlbDZ3-khayUvOmirmKZZxBHgIc8dwYjXPbuWKhyZ3DGqL4GWcPecGfoFGAj3n6hrO8H5cUbtx5bOaPgaH1gMwqvbDTmsQW9kCAWPfVhrKWPpWlZiWEBXH7h3zgS2981cnj3TMUI17LQp9XNTypHVuhFEB0-abyog5AqwP7dhzJYWn-lrYOge9wofUwF7atgVk3jMIBb7bwwvu3KfW4Xb98F9ioiShwancIzwRkeggH87xL4vpBr0MzIgxeKtWRmJNorllF8WrdCeiEjBmFwBwiamIVwI9xqA4MEzhWT0Ua9jGLGk8MLADuKnDsCXivRprJxpLixbl5E9_Vw&h=bo6zXCX3P57XywOxe0cWzPll5f7qD-b4GKoi0pyOhgY response: body: string: '{"status":"Succeeded"}' @@ -1328,7 +1315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:19 GMT + - Thu, 10 Sep 2026 10:40:43 GMT expires: - '-1' pragma: @@ -1340,11 +1327,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/ee78102d-fcbe-403f-95d6-b3d22f130dc7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/a0883e79-33d4-49d8-bbeb-355448add31c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A055C485F9394E2C92C85EBC3FCB7710 Ref B: BN1AA2051014047 Ref C: 2026-04-03T15:11:19Z' + - 'Ref A: F9E951BC7FEF4E2A822074ED2D9351F9 Ref B: SG2AA1070303034 Ref C: 2026-09-10T10:40:43Z' status: code: 200 message: OK @@ -1362,22 +1349,21 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '4433' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:20 GMT + - Thu, 10 Sep 2026 10:40:45 GMT expires: - '-1' pragma: @@ -1391,7 +1377,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5E1DFBED817E400BA8D68FC34B3B4B61 Ref B: BN1AA2051014017 Ref C: 2026-04-03T15:11:20Z' + - 'Ref A: 528C68538D5B4E0EA8B9F28E2598899B Ref B: SG2AA1040518036 Ref C: 2026-09-10T10:40:45Z' status: code: 200 message: OK @@ -1409,23 +1395,23 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:21 GMT + - Thu, 10 Sep 2026 10:40:47 GMT expires: - '-1' pragma: @@ -1439,7 +1425,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D44D097D5D894B80BC9CE9EB10865DB6 Ref B: BN1AA2051012021 Ref C: 2026-04-03T15:11:21Z' + - 'Ref A: 5C0519B29D8E4F75BDF30F99C3E0B62D Ref B: SG2AA1070302034 Ref C: 2026-09-10T10:40:47Z' status: code: 200 message: OK @@ -1457,22 +1443,21 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19084' + - '13823' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:22 GMT + - Thu, 10 Sep 2026 10:40:50 GMT expires: - '-1' pragma: @@ -1487,12 +1472,10 @@ interactions: - '' - '' - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FE93C398336F420B93E2DA611C0B6995 Ref B: BN1AA2051012049 Ref C: 2026-04-03T15:11:22Z' + - 'Ref A: 688E4532D38A4F6A9932F40AB24722D7 Ref B: SG2AA1040518036 Ref C: 2026-09-10T10:40:49Z' status: code: 200 message: OK @@ -1516,9 +1499,9 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -1529,17 +1512,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:11:24 GMT + - Thu, 10 Sep 2026 10:40:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-5e340526-2f6f-11f1-ad82-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258848581894&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Zw9mKvDfPf4FBrG3VHBPh1sWxOPPqGHn3g-V7zeHarcdOcJyxH0l952e1IGnp8ffpPAQ7jgGQY_sR4xLSy9VeqUud0FvAmSWihqLnr4l22zhbS6Q8qQhl7vgQGeoNV5vhSlI0OTr_YxT8dphbFL2u0cnGVN2b5EEDT5jY5bUvBT2b_4YtGJYFYbeU3Zm8gj2dbuoqywKgQzZEdPTBLwoxT66FsoFFxgjMphB9fGbQNRpCMChrJUXMN1P-9M6YJbfRucsOo5C75FUHBIgti9_4fV9NJHceuLM1rBBqi-Rouva1g43v2jgXxsibbgSJS4WFTKV9RUevuu9hrw1reloww&h=u9Esx9YHCsWn6zbLbd_Rr_APe3zxNF_XakkcuJM8tlU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-138e82ab-ad04-11f1-b5c4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336520206488&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TzV6KgRmvCga6tWGHX1LhuPz1Pc-om9SdVZaOJ80InLS3Vj98bISYaKzvYva35j3HrHZ8e9fiaivoZBKowIL9uysrvIq-hzWT2jMyVAVZ7ZROSbF8KlsCD_HTgwRNkFjcDXNaVSnPJlc3Radlsg6rD84tXputBDAkv37ZYkoyMKlnEiyWFqSK0XZfGjG8dNgD0aBA7aWaXCcJtpKG0cx7V0NDvoYN7dCnAvD_8UP9_5asWX6-uzl-6a7x1r96CswcN0eXpNxXYyaNDLYdxxLF8PMaD7t0iC4J6hQrAxlt2jU_1ismLsPzqoW4E8ZCmqnEmQQO4_td_SEOmi0r07iXg&h=i6jpNXgBMnTzliRkoivk1GYtqwB05wbcyU70EGUJSXE pragma: - no-cache strict-transport-security: @@ -1549,63 +1532,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/8d4358f2-feba-4a04-8cb7-2d7d0f3cb76e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d8fb2930-c47c-4ff1-9506-9e4cb6fe743b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DDBA29E4A0A547D3AC5397411AAF6371 Ref B: BN1AA2051015037 Ref C: 2026-04-03T15:11:24Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source -t - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-5e340526-2f6f-11f1-ad82-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258848581894&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=Zw9mKvDfPf4FBrG3VHBPh1sWxOPPqGHn3g-V7zeHarcdOcJyxH0l952e1IGnp8ffpPAQ7jgGQY_sR4xLSy9VeqUud0FvAmSWihqLnr4l22zhbS6Q8qQhl7vgQGeoNV5vhSlI0OTr_YxT8dphbFL2u0cnGVN2b5EEDT5jY5bUvBT2b_4YtGJYFYbeU3Zm8gj2dbuoqywKgQzZEdPTBLwoxT66FsoFFxgjMphB9fGbQNRpCMChrJUXMN1P-9M6YJbfRucsOo5C75FUHBIgti9_4fV9NJHceuLM1rBBqi-Rouva1g43v2jgXxsibbgSJS4WFTKV9RUevuu9hrw1reloww&h=u9Esx9YHCsWn6zbLbd_Rr_APe3zxNF_XakkcuJM8tlU - response: - body: - string: '{"repository_same_registry:tag_same_registry":"Pending","status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '76' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 Apr 2026 15:11:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-5e340526-2f6f-11f1-ad82-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258857248282&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=mfz3__AhBe1ueju2QYRBa-l1Yu7jjpG7otXRLlVoR9mU8OMGbyrZwZQcqLchkTj2rw_ZAwpnuFONNssOZIbtg09ie7tP5Z6yCYqtX2I8tzCyQ9QVRdYQ1NgtOxLbed57kt31kKlsq3S6yKIQyhA7MiYyGGzctwQM5kcU8WaEzrmePorU5wNNpwE0MD6N0m7HOZsgDNxou8xqjevp5bDNIF8CsB_EQ0q8NiWI-hVbtDyQoaCPFUgnhvcvGknARlH4isw94PIBKwhwnngaVUtaHAPG6xKlpCLpF0YoorzeKlkjqSgx8UYU1gMixYMcn4EXGB8tJQGEve2aAiZ31qJWVw&h=A0s1RI_BuyueAyJEjjBIoS8vzLPkd8iWyQnx8iSwe80 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/2bcdbd8f-6575-4d16-9167-35e6966ad0a1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 7769164D8E58445796C403238359F85E Ref B: BN1AA2051012037 Ref C: 2026-04-03T15:11:25Z' + - 'Ref A: ACF35FC6329B4C11910CFCC095617E00 Ref B: SG2AA1040518052 Ref C: 2026-09-10T10:40:51Z' status: code: 202 message: Accepted @@ -1623,9 +1556,9 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-5e340526-2f6f-11f1-ad82-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108258857248282&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=mfz3__AhBe1ueju2QYRBa-l1Yu7jjpG7otXRLlVoR9mU8OMGbyrZwZQcqLchkTj2rw_ZAwpnuFONNssOZIbtg09ie7tP5Z6yCYqtX2I8tzCyQ9QVRdYQ1NgtOxLbed57kt31kKlsq3S6yKIQyhA7MiYyGGzctwQM5kcU8WaEzrmePorU5wNNpwE0MD6N0m7HOZsgDNxou8xqjevp5bDNIF8CsB_EQ0q8NiWI-hVbtDyQoaCPFUgnhvcvGknARlH4isw94PIBKwhwnngaVUtaHAPG6xKlpCLpF0YoorzeKlkjqSgx8UYU1gMixYMcn4EXGB8tJQGEve2aAiZ31qJWVw&h=A0s1RI_BuyueAyJEjjBIoS8vzLPkd8iWyQnx8iSwe80 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-138e82ab-ad04-11f1-b5c4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336520206488&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=TzV6KgRmvCga6tWGHX1LhuPz1Pc-om9SdVZaOJ80InLS3Vj98bISYaKzvYva35j3HrHZ8e9fiaivoZBKowIL9uysrvIq-hzWT2jMyVAVZ7ZROSbF8KlsCD_HTgwRNkFjcDXNaVSnPJlc3Radlsg6rD84tXputBDAkv37ZYkoyMKlnEiyWFqSK0XZfGjG8dNgD0aBA7aWaXCcJtpKG0cx7V0NDvoYN7dCnAvD_8UP9_5asWX6-uzl-6a7x1r96CswcN0eXpNxXYyaNDLYdxxLF8PMaD7t0iC4J6hQrAxlt2jU_1ismLsPzqoW4E8ZCmqnEmQQO4_td_SEOmi0r07iXg&h=i6jpNXgBMnTzliRkoivk1GYtqwB05wbcyU70EGUJSXE response: body: string: '{"status":"Succeeded"}' @@ -1637,7 +1570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:36 GMT + - Thu, 10 Sep 2026 10:40:54 GMT expires: - '-1' pragma: @@ -1649,11 +1582,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/32cce1c1-a318-413d-b5a0-c488ce793dad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/malaysiasouth/97d51859-27b2-4227-b9f1-e7a88c58e8c6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 039A82F975554CAD832BD20FEB0CAF66 Ref B: BN1AA2051015037 Ref C: 2026-04-03T15:11:36Z' + - 'Ref A: AAB37BB255EB4C89A4D730E86448AF24 Ref B: SG2AA1070301036 Ref C: 2026-09-10T10:40:53Z' status: code: 200 message: OK @@ -1671,22 +1604,21 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '4433' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:37 GMT + - Thu, 10 Sep 2026 10:40:56 GMT expires: - '-1' pragma: @@ -1700,7 +1632,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CA891AC19456432BBE8D7521FAC4D8F3 Ref B: BN1AA2051015009 Ref C: 2026-04-03T15:11:37Z' + - 'Ref A: 4921729CB30346D785B50E1B3B84A7FD Ref B: SG2AA1070305023 Ref C: 2026-09-10T10:40:56Z' status: code: 200 message: OK @@ -1718,23 +1650,23 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:38 GMT + - Thu, 10 Sep 2026 10:40:58 GMT expires: - '-1' pragma: @@ -1748,7 +1680,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 56A10F0DFF3944B4BEE7F5A07DB53468 Ref B: BN1AA2051015019 Ref C: 2026-04-03T15:11:38Z' + - 'Ref A: 09394FAEAB88400296190FAE2E2AF799 Ref B: SG2AA1070306062 Ref C: 2026-09-10T10:40:58Z' status: code: 200 message: OK @@ -1766,22 +1698,21 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19084' + - '13823' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:39 GMT + - Thu, 10 Sep 2026 10:41:00 GMT expires: - '-1' pragma: @@ -1796,12 +1727,10 @@ interactions: - '' - '' - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C5BCCE84F37F4B199138924C0D3E78EC Ref B: BN1AA2051013011 Ref C: 2026-04-03T15:11:39Z' + - 'Ref A: 35C28683404041AB9DE3B67094AF5411 Ref B: SG2AA1040515029 Ref C: 2026-09-10T10:41:00Z' status: code: 200 message: OK @@ -1825,9 +1754,9 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -1838,17 +1767,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:11:40 GMT + - Thu, 10 Sep 2026 10:41:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-682f8bc4-2f6f-11f1-b0bc-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259017294323&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CyH0UDrJQtQHXfWnC9J7D_Svp2cFDMO51nD6sBFaQ8KEGR-6z0N5uUyUxnd2eGa37S_9LDTB2OIvy7B7jDUZ1iQIrjB6YwGIRtMdCFHeBjZyGMCnI6izlq723IM_dXhoo1oCrDW0p4dflPbOx2E5U4BZalZb-XvTe5jofu3jtHh9vyCHckN9ILR4JA-eIFytlQsf5rSQkr07sN1UDOuyswD1K-ffKa9j9NNLVqGDmoQtoH_bUhxUBb2zK0kByhud-Pc6Af13cNQQX6-yNyu095eiE5N1KZlYaOoAUydINOSm5HyAh2weOWvX4HPxt7wanHO5niPjPlltAgEG1uKSPQ&h=bL9xt9ylQIcXb-TdoCn4XsyqDhv1J6-YVSsUuHF4BeY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-1a47eb6e-ad04-11f1-9780-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336633862501&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=NzSu_AmIT89pm5j1LTDOMGdoPpe-DjuJlEUFPn3Da4googfBgCGDxxH2ZlaofquOdq_mh--dkUb6JrZuasUFkeGZsUAUVi8NPbg6zKLt_8e5v4w_gsxouhaFaj2XpAHDJRJM4Z7RzTVpGDcLUDq5xGFuFJLkorngjLs-w_WarSERQkLwnVyMLl0VWoMeM8yOuZeDBPhrb1MUlYWXP5tKZR0ODcWZsQQWeJ1FFxwIxdo_Nd-xb4eWs7skYqtCyn9i-elWgS7FsguumiB5GyZX4FiI4hmANbgjhPd-G-AhL-2_xBVm6CXP6_IA-cjZ-zL624xRhUM850p8L_m-T7MGuw&h=hCDIcYt-d6ICrkHh9mhF2Y7onGAhr5ljV1k6xdX5pp4 pragma: - no-cache strict-transport-security: @@ -1858,13 +1787,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/022d87f3-a81e-4968-b4a1-9af1250fc51e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a98e205e-c8dd-4a87-9a6e-2642fcecc933 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C19532868F904DE99DC6CDEEF77DC040 Ref B: BN1AA2051013017 Ref C: 2026-04-03T15:11:41Z' + - 'Ref A: EFCAA8832E5145799AD2D2ECA3B1928D Ref B: SG2AA1070302023 Ref C: 2026-09-10T10:41:03Z' status: code: 202 message: Accepted @@ -1882,25 +1811,25 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-682f8bc4-2f6f-11f1-b0bc-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259017294323&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=CyH0UDrJQtQHXfWnC9J7D_Svp2cFDMO51nD6sBFaQ8KEGR-6z0N5uUyUxnd2eGa37S_9LDTB2OIvy7B7jDUZ1iQIrjB6YwGIRtMdCFHeBjZyGMCnI6izlq723IM_dXhoo1oCrDW0p4dflPbOx2E5U4BZalZb-XvTe5jofu3jtHh9vyCHckN9ILR4JA-eIFytlQsf5rSQkr07sN1UDOuyswD1K-ffKa9j9NNLVqGDmoQtoH_bUhxUBb2zK0kByhud-Pc6Af13cNQQX6-yNyu095eiE5N1KZlYaOoAUydINOSm5HyAh2weOWvX4HPxt7wanHO5niPjPlltAgEG1uKSPQ&h=bL9xt9ylQIcXb-TdoCn4XsyqDhv1J6-YVSsUuHF4BeY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-1a47eb6e-ad04-11f1-9780-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336633862501&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=NzSu_AmIT89pm5j1LTDOMGdoPpe-DjuJlEUFPn3Da4googfBgCGDxxH2ZlaofquOdq_mh--dkUb6JrZuasUFkeGZsUAUVi8NPbg6zKLt_8e5v4w_gsxouhaFaj2XpAHDJRJM4Z7RzTVpGDcLUDq5xGFuFJLkorngjLs-w_WarSERQkLwnVyMLl0VWoMeM8yOuZeDBPhrb1MUlYWXP5tKZR0ODcWZsQQWeJ1FFxwIxdo_Nd-xb4eWs7skYqtCyn9i-elWgS7FsguumiB5GyZX4FiI4hmANbgjhPd-G-AhL-2_xBVm6CXP6_IA-cjZ-zL624xRhUM850p8L_m-T7MGuw&h=hCDIcYt-d6ICrkHh9mhF2Y7onGAhr5ljV1k6xdX5pp4 response: body: - string: '{"status":"Accepted"}' + string: '{"repository_by_digest:tag_by_digest":"Pending","status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '68' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:42 GMT + - Thu, 10 Sep 2026 10:41:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-682f8bc4-2f6f-11f1-b0bc-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259028740977&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=TCI9onbOx9o_dua4gVH6WRUCEVYqR4dYZrV1Je6tYKf5sAAC4aWBxLwYL4v30k8SVeXnPMtjPr518wGUy4UYppSFLj-4mdHg2YyGcV3WM8Mbov0zM53MVQ_MGCBGlUlJ3xmwLcxBgKDCb0cUmYd2WL6TLueNVFqPtH1NsFzU8AlZe3o0tZ_exuDJkdKnjgdiNOmTGsWVXAQBvOqGc8XJPP39mvxEg0LgftmFgsOATtLiwhgyq1XcMuGHBqMzrIpKIjtv92nhlPV4qzr5qY-PCQb5kIeiK_ACqRdZ-1WuHuP-I3B1kpjEx-9rIrfTPBSxCillyoOdPTFBOJ9fkBwCRg&h=2idCPrzPbvwIUmkiuwt4WZdDfZdKYqwnskoqB7eodWQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-1a47eb6e-ad04-11f1-9780-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336658112535&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=rrJ9aqB3LV4M6pheA2fjedpb7dcdUeQ5LI2ejrHiYogzMA1fkCQJe0bq5rWZ2kVBf17qe7cJ0vlzPLq8RBcpdQy9GkysftIyvhHlFMcPAB392o4YsnR2SA2qkICH4Vabyy9Aw2Td3E09Py-7HJtJTTx9Ku36GQuwKaicrCPw12KR9xNElEGNDE6sh6oz9QVuRmKT7xjNspGQDOHRPhNG8Pn68n2rGfIMMWfssE_YYd5yIge_nYuosYcI46j7J4jpklcc64ObIbJ7BRiSovkYjWqgMZMGCNSb8msqU9HSNRxIJw4eQLC9A_YJHgN4LRy5qc9sOIxaBEl_Zpe7kLrCuA&h=RPaIyuVhSG3bFZAOAnQvd8xHsJk-K8NfcjqbZx6yRKQ pragma: - no-cache strict-transport-security: @@ -1910,11 +1839,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/46edfd95-edff-4cd0-a9ae-f6fc63f9a9cd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/0652948d-31d0-4d12-b8ea-c31005b947c2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 32E381B2A287447088201A70A088B40A Ref B: BN1AA2051014037 Ref C: 2026-04-03T15:11:42Z' + - 'Ref A: BCC361D2A6004F67B38D2687A91BAB5E Ref B: SG2AA1070302023 Ref C: 2026-09-10T10:41:05Z' status: code: 202 message: Accepted @@ -1932,9 +1861,9 @@ interactions: ParameterSetName: - -n --source -t User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-682f8bc4-2f6f-11f1-b0bc-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259028740977&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=TCI9onbOx9o_dua4gVH6WRUCEVYqR4dYZrV1Je6tYKf5sAAC4aWBxLwYL4v30k8SVeXnPMtjPr518wGUy4UYppSFLj-4mdHg2YyGcV3WM8Mbov0zM53MVQ_MGCBGlUlJ3xmwLcxBgKDCb0cUmYd2WL6TLueNVFqPtH1NsFzU8AlZe3o0tZ_exuDJkdKnjgdiNOmTGsWVXAQBvOqGc8XJPP39mvxEg0LgftmFgsOATtLiwhgyq1XcMuGHBqMzrIpKIjtv92nhlPV4qzr5qY-PCQb5kIeiK_ACqRdZ-1WuHuP-I3B1kpjEx-9rIrfTPBSxCillyoOdPTFBOJ9fkBwCRg&h=2idCPrzPbvwIUmkiuwt4WZdDfZdKYqwnskoqB7eodWQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-1a47eb6e-ad04-11f1-9780-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336658112535&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=rrJ9aqB3LV4M6pheA2fjedpb7dcdUeQ5LI2ejrHiYogzMA1fkCQJe0bq5rWZ2kVBf17qe7cJ0vlzPLq8RBcpdQy9GkysftIyvhHlFMcPAB392o4YsnR2SA2qkICH4Vabyy9Aw2Td3E09Py-7HJtJTTx9Ku36GQuwKaicrCPw12KR9xNElEGNDE6sh6oz9QVuRmKT7xjNspGQDOHRPhNG8Pn68n2rGfIMMWfssE_YYd5yIge_nYuosYcI46j7J4jpklcc64ObIbJ7BRiSovkYjWqgMZMGCNSb8msqU9HSNRxIJw4eQLC9A_YJHgN4LRy5qc9sOIxaBEl_Zpe7kLrCuA&h=RPaIyuVhSG3bFZAOAnQvd8xHsJk-K8NfcjqbZx6yRKQ response: body: string: '{"status":"Succeeded"}' @@ -1946,7 +1875,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:53 GMT + - Thu, 10 Sep 2026 10:41:17 GMT expires: - '-1' pragma: @@ -1958,11 +1887,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/8d7191e9-b699-4474-8c1b-b679d314da93 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/ff6d9ab3-687b-40fe-b50e-319d25b589e2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 24CCCD91D526441CB93B2A436E8AF225 Ref B: BN1AA2051014045 Ref C: 2026-04-03T15:11:53Z' + - 'Ref A: BCA7FD93F4BF4434A9A6D3A3A50D4605 Ref B: SG2AA1040517025 Ref C: 2026-09-10T10:41:17Z' status: code: 200 message: OK @@ -1980,22 +1909,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '4433' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:54 GMT + - Thu, 10 Sep 2026 10:41:18 GMT expires: - '-1' pragma: @@ -2009,7 +1937,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 66CFA0078F434142B380A0C300F3ED8B Ref B: BN1AA2051014035 Ref C: 2026-04-03T15:11:54Z' + - 'Ref A: 22E8782DBFAE42C4B444ED9BD1A97707 Ref B: SG2AA1070303052 Ref C: 2026-09-10T10:41:19Z' status: code: 200 message: OK @@ -2027,23 +1955,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:55 GMT + - Thu, 10 Sep 2026 10:41:20 GMT expires: - '-1' pragma: @@ -2057,7 +1985,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D8D1E9BFBD34D818B5CBACDD6A7E670 Ref B: BN1AA2051013045 Ref C: 2026-04-03T15:11:55Z' + - 'Ref A: 038EF8E65CD145DB9207C874CCF22A0E Ref B: SG2AA1040516029 Ref C: 2026-09-10T10:41:21Z' status: code: 200 message: OK @@ -2075,22 +2003,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesub000002.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19084' + - '13823' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:11:56 GMT + - Thu, 10 Sep 2026 10:41:24 GMT expires: - '-1' pragma: @@ -2105,12 +2032,10 @@ interactions: - '' - '' - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7E5201293DC34462AE29A567E5921B36 Ref B: BN1AA2051014009 Ref C: 2026-04-03T15:11:56Z' + - 'Ref A: 8033F7CCE1624B9FBE91FE84E53E6CA3 Ref B: SG2AA1070306031 Ref C: 2026-09-10T10:41:23Z' status: code: 200 message: OK @@ -2133,9 +2058,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -2146,17 +2071,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:11:58 GMT + - Thu, 10 Sep 2026 10:41:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259188739702&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IDs55vvoJoCbxk0X280yHxToOrYvOplnfV3A-XrKIJ-pwWDCJqxYKd7zg7VOEl3FbWofpLGrppQgie7vsBFQx8necLLbbKTM9B4zqGYZmw45Bb6yWMhSKZCw9tocCwlcvk-lWL4B6yq69og9p-d_nmsCyYC_1WGIuV2lzGfJ-i6xR2l9GoSMX_4MQbRFtJ5Vh43GdAKQn_Xj_VgKSjufDgHAFBSOCLwQ8r10K1CeSSOGfUXGevooeYPiuIV7PMh42x4XKrzxhqzmdbpp-dnS84kbdEuWgiGvtPuwO3Lu2x3WweQAm6WrtJNnqqFWsSGzw-Z6DpXhBKCML73xodMX6Q&h=R4JcNdvfuRD4THHf_FJL58-DIqzT6aJulj0yUc7tnwE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-2798e738-ad04-11f1-a6d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336861372959&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=NNwBEtawaLEExJgB2r_z8N4MAwH1mRc_vh_xsGbROIgNN-ZvOLispvKgOoouJyYWGsYLqjLsgPhDR0VgRBFkyHluQKFvzZayIh1CP7OQiH6oKyQeukOYQySiE1c7OJZDq4jBEFdloWpIGeamgjItTvukYCl04hopxao8AgjIQnhgi7wa75ci8J-F8ddYa8MrpNHjTR4n0vSWdL5BKxh4FeIQLsR1lA0LCLjjg8tJaYBv75WnnAFNU0k07Hv8PmaNZfPiqmYPwfmDE8Z9rkGGeWnaZmbNpq4ZZM4c29Jc81CheO629yB-DR64iciRCZy6EKQD21vzwKHfBlcPr0HR9Q&h=l457Y2_P92STI4MFk559o6pNu6-w5kCMM8p9I7xAn7Y pragma: - no-cache strict-transport-security: @@ -2166,113 +2091,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/674a4f2b-4209-493e-9162-e3a0fd078099 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/723724c7-de5e-4d4a-9d62-b7f695171675 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CA57C98133C74E4CA162260538F1667C Ref B: BN1AA2051012051 Ref C: 2026-04-03T15:11:58Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259188739702&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=IDs55vvoJoCbxk0X280yHxToOrYvOplnfV3A-XrKIJ-pwWDCJqxYKd7zg7VOEl3FbWofpLGrppQgie7vsBFQx8necLLbbKTM9B4zqGYZmw45Bb6yWMhSKZCw9tocCwlcvk-lWL4B6yq69og9p-d_nmsCyYC_1WGIuV2lzGfJ-i6xR2l9GoSMX_4MQbRFtJ5Vh43GdAKQn_Xj_VgKSjufDgHAFBSOCLwQ8r10K1CeSSOGfUXGevooeYPiuIV7PMh42x4XKrzxhqzmdbpp-dnS84kbdEuWgiGvtPuwO3Lu2x3WweQAm6WrtJNnqqFWsSGzw-Z6DpXhBKCML73xodMX6Q&h=R4JcNdvfuRD4THHf_FJL58-DIqzT6aJulj0yUc7tnwE - response: - body: - string: '{"library/hello-world:latest":"Pending","library/hello-world@sha256:09538a1f51d3ec5af0449a1640937dfdf79b0e9b8c4da5b8a883086d5c1492ef":"Pending","library/hello-world@sha256:2e4eda00176134a56e8a94dbb1e8b76610e59fa417cf0f7841e82f21b9e6d035":"Pending","library/hello-world@sha256:341e85ad78413d9178a74b6bb436a2d3bc49e14b2b89602c19c0bf7980f0cd2d":"Pending","library/hello-world@sha256:3a82e85498a4772b607dafaaeedca64743f046bf6799e7907ef2f56fb276ca57":"Pending","library/hello-world@sha256:5099b89d7666cc2186cad769ddc262ddc7c335b33f5fe79f9ffe50a01282b23e":"Pending","library/hello-world@sha256:5a67e54fddf89e5a311186c5d6ba534363073dab0b36e173328789637fcbf592":"Pending","library/hello-world@sha256:670045644a15cf4c09e24a61b924660c58f45c4c03c2d17d49b774c04c9bb62b":"Pending","library/hello-world@sha256:7ac70f871d3c30a83e42dec5fe60482d640fffb1528e8d762bb53dd629588374":"Pending","library/hello-world@sha256:86e7dd6b0bff798e475e97b81fd132adc340923877adda2dd494efa0558a7870":"Pending","library/hello-world@sha256:8b1c825510959225ffe94311730fe9f1eb2f14dcf5685793d0c2c4cd6d79a721":"Pending","library/hello-world@sha256:8e752a1cddeafc02597e756f4a0ec96e29f63ac4bc4af87682daf3f1de843bb7":"Pending","library/hello-world@sha256:b7478cec8e46fa1689f89486b92e353e7b418235cb3cae2ad0434aac56b160aa":"Pending","library/hello-world@sha256:d1a8d0a4eeb63aff09f5f34d4d80505e0ba81905f36158cc3970d8e07179e59e":"Pending","library/hello-world@sha256:d31545c149fa9010bc95ed3ad46fffd33592e64ca46222e10beeb923438f6b41":"Pending","library/hello-world@sha256:ecb43d43395e9cd8d97a03e497af34b5ef95e01dd046cf3323d130ba134d1eae":"Pending","library/hello-world@sha256:fb038e8f2e79b9c3d69c54bcd4b57218f5aea32fc3e98855c3eb452703ba4e5a":"Pending","status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '1724' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 Apr 2026 15:11:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259198232395&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=sGK3QNjWNzKZuBbTEfz9cqPpstEIJt9VzzlIl8SLV3ZH8x2x_Rbei7GOdzEPHuzZUc5dTCxd0-dzDYX-3KJPD8fzRmXfU6skA0XVnJfx6fAq6fjfv937LSECyO3t3l7rwlVqxV7cCKGU-4iNFcmatfRro0t939HaGHA1SrteabRozPdEw5Lp2rbh-UMxYn6Osm5YDjATUDop3QnLbtkkY6LVig6YaAN8V46_3jNwwfyiBytm_G5jx5f1coWV-f8GGVGDQCzgqH5C7aSl_hrP6hbQvMr_zVhMnffZbSrn-DtsjB_f24-QHNsBYYhhjPh0LSG65PcEzJJDQo1Oj9gb3w&h=Uqs5uVM9h7SEdG1LXHQOv421FQYKG8VrZwH7HeXgQDI - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/62ebb81f-f1e0-4d00-9787-359ddeccde69 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 53567D4AE73F47E2B92DEFC0562C9CB9 Ref B: BN1AA2051014047 Ref C: 2026-04-03T15:11:59Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259198232395&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=sGK3QNjWNzKZuBbTEfz9cqPpstEIJt9VzzlIl8SLV3ZH8x2x_Rbei7GOdzEPHuzZUc5dTCxd0-dzDYX-3KJPD8fzRmXfU6skA0XVnJfx6fAq6fjfv937LSECyO3t3l7rwlVqxV7cCKGU-4iNFcmatfRro0t939HaGHA1SrteabRozPdEw5Lp2rbh-UMxYn6Osm5YDjATUDop3QnLbtkkY6LVig6YaAN8V46_3jNwwfyiBytm_G5jx5f1coWV-f8GGVGDQCzgqH5C7aSl_hrP6hbQvMr_zVhMnffZbSrn-DtsjB_f24-QHNsBYYhhjPh0LSG65PcEzJJDQo1Oj9gb3w&h=Uqs5uVM9h7SEdG1LXHQOv421FQYKG8VrZwH7HeXgQDI - response: - body: - string: '{"library/hello-world@sha256:757c27fa04a236632f4b8e0d57da73375f27fe29b9c9b18d01abfb24b7897ff4":"Pending","status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 Apr 2026 15:12:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259307805149&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=rfXy-lK_jXc4TrXNK2VI9VTDF_uYuJvc0Na0BdetBYjeRlwJkFQ1oovdZEm90ZSblAp31jlxvtcCcg7zzaN0VZRlrNMJ2R4xpBXIwVwal2JuxR58_CUPAV-Uf9re2_SoLiKocLkIotfWmR9e3xhhsv6KzGI4gruSGNqwtMeir4iHsqcIGYqVjxqaBda-RZiQenB8Yvb8OPe8f_emh0UjqZug_-h-TzByRN8lF4-g6Wy-fN9_clKBeTYcJHrMYGkLTg9gQg243hSQn9IxH7D70eLyv8tAq-Bx6EaiUpjtiGQMzBnoNiuwj67Wjbj8zDR5qCQUjZflb-A3tEvJ8E5ELQ&h=T3AuwKpcCEws3jJQWLSWNsLZsZnvOQ1aX4qeE0DWrLY - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/562a5983-3cae-4705-b489-4c1e2d0b1dfb - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 4192BA0939A04FC2920A9F771D730667 Ref B: BN1AA2051013039 Ref C: 2026-04-03T15:12:10Z' + - 'Ref A: FA44BD0344CF4043A3BE9322AAAB2DC2 Ref B: SG2AA1070305042 Ref C: 2026-09-10T10:41:25Z' status: code: 202 message: Accepted @@ -2290,25 +2115,25 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259307805149&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=rfXy-lK_jXc4TrXNK2VI9VTDF_uYuJvc0Na0BdetBYjeRlwJkFQ1oovdZEm90ZSblAp31jlxvtcCcg7zzaN0VZRlrNMJ2R4xpBXIwVwal2JuxR58_CUPAV-Uf9re2_SoLiKocLkIotfWmR9e3xhhsv6KzGI4gruSGNqwtMeir4iHsqcIGYqVjxqaBda-RZiQenB8Yvb8OPe8f_emh0UjqZug_-h-TzByRN8lF4-g6Wy-fN9_clKBeTYcJHrMYGkLTg9gQg243hSQn9IxH7D70eLyv8tAq-Bx6EaiUpjtiGQMzBnoNiuwj67Wjbj8zDR5qCQUjZflb-A3tEvJ8E5ELQ&h=T3AuwKpcCEws3jJQWLSWNsLZsZnvOQ1aX4qeE0DWrLY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-2798e738-ad04-11f1-a6d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336861372959&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=NNwBEtawaLEExJgB2r_z8N4MAwH1mRc_vh_xsGbROIgNN-ZvOLispvKgOoouJyYWGsYLqjLsgPhDR0VgRBFkyHluQKFvzZayIh1CP7OQiH6oKyQeukOYQySiE1c7OJZDq4jBEFdloWpIGeamgjItTvukYCl04hopxao8AgjIQnhgi7wa75ci8J-F8ddYa8MrpNHjTR4n0vSWdL5BKxh4FeIQLsR1lA0LCLjjg8tJaYBv75WnnAFNU0k07Hv8PmaNZfPiqmYPwfmDE8Z9rkGGeWnaZmbNpq4ZZM4c29Jc81CheO629yB-DR64iciRCZy6EKQD21vzwKHfBlcPr0HR9Q&h=l457Y2_P92STI4MFk559o6pNu6-w5kCMM8p9I7xAn7Y response: body: - string: '{"library/hello-world@sha256:757c27fa04a236632f4b8e0d57da73375f27fe29b9c9b18d01abfb24b7897ff4":"Pending","status":"Accepted"}' + string: '{"library/hello-world@sha256:8fd8355009a7203af4b6252a3a7ad8c23b684c4cc6710057fbd88fba6ad250e8":"Pending","library/hello-world@sha256:d08be0dd652a88e9c94d92d367bbcc7b9b5f3e4f063bea5a8c94fa637160b434":"Pending","status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '125' + - '229' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:12:21 GMT + - Thu, 10 Sep 2026 10:41:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259418002374&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=uuWvWbL7hTC4CW5jiJeG0R7TK8QKtble7fZFVK3UQ76bFqjf5yGq7cY7_HE9k6ZK7OvJ9XS3Q--YmfM2timyOfvVYmocOMM9uVyWcMaRnWUPlp6BX8aPgbQGVBydq4DKgbIODjedcGqlv8IcU-dD2IbF6D0DTbJ3pCVLI41dQo4Z7Fr3wMprtLWV5lqDPLk_4PPxooadMopP9QdZHx-MThr0Suf1KcjMOEfFA6N751oiju7cDGnC1QVRmC8pEg7DFoE3WGzXQKtjHP3DNjM4-sWd0QgTQ0zWaZ-Svk6h1x2BGdOsZwXIchtGgb0qNtn41ICkgxQrZgIvK4qPaoV3Hg&h=JaDh4kwHaY0FFM7ehiPE1EczAVWvS2L-LjaYgBwRYyI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-2798e738-ad04-11f1-a6d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336892471542&c=MIIIaTCCB1GgAwIBAgIRAJN8mXQllv3pXqurhfm61SwwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA4MTgwNjQ2NDVaFw0yNzAyMTMxMjQ2NDVaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoRsNNDpvaZyiyd2hyU9SeXGrRFWLl2Ne2YSCaR91HDU7k4y0bBhHXL43AWduh6OlnnoTho-NWe3eTHWfPjpMd7Y-_rGyscVQPdUjVryfsfCWMMP-DzlP7mjbNR2NangixCoY8as8CS9cLbr7vhdj6U5QbEhjoqFXTA48GeZ11DQkkf8-DSIoUmM_TDoPBTrW9cOnvOA1w9IpzjCDn_IUoc09P3gtUO7xjS0_7DoqAcH9UP83_hvnzC2ZK6GxzmsqpLc4urWwTWzmtQIRsYYRqAzfqnfgMw3WjQJk5dVFKNLkj6HbK4JSK-08y6UpzQwhJtbFZFOe88WvbW5xHMMJ0QIDAQABo4IFZjCCBWIwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMEAGA1UdEQQ5MDeCNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUICRpn7eQV8aPP75L2zbqxtj1fgUwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU4L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS81OC9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU4L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU4L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCPe2bASk5hvMEednQ7YQx4LZJhVPkcXkwFh7axT-dcYSaD0Cjq6zR5CmSmKosxfpUDih-soB5Fqih5_t9Puyv02-6lvVdWc8_6lp_kfdg_81K6-xoE_Li0jqxSBEYhYiRek5la6e2jIBJtqgeZauE0iekIshtsgiKtdKL67nHJXWmUeJizyT2HpRYXrDB0VrlPz_gqtXbB-HwqN-Lny9qCuy346jLWED-M_SjfvFnGRgYXOK9taf0bofVwVJ0YAVJAuG5eYhOIe9uvay0rGw8mTGWlbJLhxwyCxvt6lVQ4_JBBSjsXXK_55zpEm5uO7CWB1UfUf2QypjFyCDsDMG9d&s=bwrEfxQkLypTLQhV1XGnn5iWoobF8g4wp1O3SaSfa19YuB_fNbUKsSj-7pcKn2-hlwJf5uAoSGz7yqj8EdyRTcYik_YN8u4jH64pg77wqp8-GYU4UbbDeT8RJDC-6-dnKeBJCA61EXYwyaPHfyID7Dl4ns7HjelNSgUNM8OHkCVYLpj1GoeIawke2CH1WYbDgENjVt5hUVpRqBbx6PKz7DHSs9iULdm5OO0rY7Py5_fa_z4xjRL10B5rXtQTbppdQL_b52JiJj7MKnmQau5KVeCnmWqah7Cypcv5eqwmNBBKucbeGzMjKv0Ge_tvfE8KSdY4H9sJr1jtwkqgFHJdQA&h=ddOu9aFI8RKvx4KK-9G-Emp3d7wuOVN9NeyNA04nHfc pragma: - no-cache strict-transport-security: @@ -2318,11 +2143,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/b42d4f79-2a45-4c6b-885b-088702993a0c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/malaysiasouth/6d7da399-9e32-4c74-a6c5-b12b8af922eb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4EC97B3DC716460A86205A92ADC04C05 Ref B: BN1AA2051015009 Ref C: 2026-04-03T15:12:21Z' + - 'Ref A: 46054CA9988C4DC68AFB0FC44E549B57 Ref B: SG2AA1070302029 Ref C: 2026-09-10T10:41:27Z' status: code: 202 message: Accepted @@ -2340,9 +2165,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-72812d11-2f6f-11f1-9fae-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259418002374&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=uuWvWbL7hTC4CW5jiJeG0R7TK8QKtble7fZFVK3UQ76bFqjf5yGq7cY7_HE9k6ZK7OvJ9XS3Q--YmfM2timyOfvVYmocOMM9uVyWcMaRnWUPlp6BX8aPgbQGVBydq4DKgbIODjedcGqlv8IcU-dD2IbF6D0DTbJ3pCVLI41dQo4Z7Fr3wMprtLWV5lqDPLk_4PPxooadMopP9QdZHx-MThr0Suf1KcjMOEfFA6N751oiju7cDGnC1QVRmC8pEg7DFoE3WGzXQKtjHP3DNjM4-sWd0QgTQ0zWaZ-Svk6h1x2BGdOsZwXIchtGgb0qNtn41ICkgxQrZgIvK4qPaoV3Hg&h=JaDh4kwHaY0FFM7ehiPE1EczAVWvS2L-LjaYgBwRYyI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-2798e738-ad04-11f1-a6d4-3cefa50a58cc?api-version=2026-09-01-preview&t=639246336892471542&c=MIIIaTCCB1GgAwIBAgIRAJN8mXQllv3pXqurhfm61SwwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA4MTgwNjQ2NDVaFw0yNzAyMTMxMjQ2NDVaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoRsNNDpvaZyiyd2hyU9SeXGrRFWLl2Ne2YSCaR91HDU7k4y0bBhHXL43AWduh6OlnnoTho-NWe3eTHWfPjpMd7Y-_rGyscVQPdUjVryfsfCWMMP-DzlP7mjbNR2NangixCoY8as8CS9cLbr7vhdj6U5QbEhjoqFXTA48GeZ11DQkkf8-DSIoUmM_TDoPBTrW9cOnvOA1w9IpzjCDn_IUoc09P3gtUO7xjS0_7DoqAcH9UP83_hvnzC2ZK6GxzmsqpLc4urWwTWzmtQIRsYYRqAzfqnfgMw3WjQJk5dVFKNLkj6HbK4JSK-08y6UpzQwhJtbFZFOe88WvbW5xHMMJ0QIDAQABo4IFZjCCBWIwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMEAGA1UdEQQ5MDeCNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUICRpn7eQV8aPP75L2zbqxtj1fgUwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU4L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS81OC9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU4L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU4L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCPe2bASk5hvMEednQ7YQx4LZJhVPkcXkwFh7axT-dcYSaD0Cjq6zR5CmSmKosxfpUDih-soB5Fqih5_t9Puyv02-6lvVdWc8_6lp_kfdg_81K6-xoE_Li0jqxSBEYhYiRek5la6e2jIBJtqgeZauE0iekIshtsgiKtdKL67nHJXWmUeJizyT2HpRYXrDB0VrlPz_gqtXbB-HwqN-Lny9qCuy346jLWED-M_SjfvFnGRgYXOK9taf0bofVwVJ0YAVJAuG5eYhOIe9uvay0rGw8mTGWlbJLhxwyCxvt6lVQ4_JBBSjsXXK_55zpEm5uO7CWB1UfUf2QypjFyCDsDMG9d&s=bwrEfxQkLypTLQhV1XGnn5iWoobF8g4wp1O3SaSfa19YuB_fNbUKsSj-7pcKn2-hlwJf5uAoSGz7yqj8EdyRTcYik_YN8u4jH64pg77wqp8-GYU4UbbDeT8RJDC-6-dnKeBJCA61EXYwyaPHfyID7Dl4ns7HjelNSgUNM8OHkCVYLpj1GoeIawke2CH1WYbDgENjVt5hUVpRqBbx6PKz7DHSs9iULdm5OO0rY7Py5_fa_z4xjRL10B5rXtQTbppdQL_b52JiJj7MKnmQau5KVeCnmWqah7Cypcv5eqwmNBBKucbeGzMjKv0Ge_tvfE8KSdY4H9sJr1jtwkqgFHJdQA&h=ddOu9aFI8RKvx4KK-9G-Emp3d7wuOVN9NeyNA04nHfc response: body: string: '{"status":"Succeeded"}' @@ -2354,7 +2179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:12:32 GMT + - Thu, 10 Sep 2026 10:41:40 GMT expires: - '-1' pragma: @@ -2366,11 +2191,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/86f69e39-19d1-4465-9e60-e33e8e693adb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/3e2fa784-ed6a-4282-bbb6-5aa17154b6ca x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 415584988F5C462E9A4C41476F076862 Ref B: BN1AA2051014039 Ref C: 2026-04-03T15:12:32Z' + - 'Ref A: 00965E1294F64438B84B2DB6EEF90B4B Ref B: SG2AA1070306023 Ref C: 2026-09-10T10:41:41Z' status: code: 200 message: OK @@ -2388,22 +2213,21 @@ interactions: ParameterSetName: - -n --source -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub000002","name":"sourceregistrysamesub000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '4433' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:12:34 GMT + - Thu, 10 Sep 2026 10:41:43 GMT expires: - '-1' pragma: @@ -2417,7 +2241,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 03B52B0324804C009F5F76C69A73C66B Ref B: BN1AA2051013017 Ref C: 2026-04-03T15:12:33Z' + - 'Ref A: 90AC2230BD674A8484DF76E50E7EA30E Ref B: SG2AA1070305031 Ref C: 2026-09-10T10:41:43Z' status: code: 200 message: OK @@ -2435,23 +2259,23 @@ interactions: ParameterSetName: - -n --source -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:10:22.600967+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:10:22.600967+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-04-03T15:10:22.600967Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:29.5305571+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:29.5306149+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003","name":"targetregistry000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:39:25.3139256+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:39:25.3139256+00:00"},"properties":{"loginServer":"targetregistry000003.azurecr.io","creationDate":"2026-09-10T10:39:25.3139256Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652191+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:31.6652554+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1632' + - '1667' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:12:34 GMT + - Thu, 10 Sep 2026 10:41:45 GMT expires: - '-1' pragma: @@ -2465,13 +2289,13 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4370BBE8EFAA46229FB8A5ACA0647717 Ref B: BN1AA2051014027 Ref C: 2026-04-03T15:12:35Z' + - 'Ref A: 6213EA8B2B774F9AAE5792E480D111A8 Ref B: SG2AA1070303034 Ref C: 2026-09-10T10:41:45Z' status: code: 200 message: OK - request: body: '{"source": {"registryUri": "sourceregistrydiffsub.azurecr.io", "sourceImage": - "microsoft:azure-cli-2", "credentials": {"password": "***"}}, + "microsoft:azure-cli-2", "credentials": {"password": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCIsImtpZCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNzg5MDM2NDI0LCJuYmYiOjE3ODkwMzY0MjQsImV4cCI6MTc4OTA0MTUxMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzLzRiNWIwY2VmLWNmODItNGNmNS05YWIxLWZmODRjOWYxMWYzNS9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWNycyI6WyJwMSIsImMyIiwiYzMiLCJjNiIsImMxMCJdLCJhaW8iOiJBY1FBTy84ZUFBQUFxb0RQQitncFp0SjVsR3liYUVhR2l1eDJXUC8vSUlWcHVvTGxEekZvN0w0V2pDSFE2YklsRUttWkFMdlhwVjlDZEJXc1lmaUtJb1NwdHRqV2x2ZTNybUszQUNLTmprVXVUU2RRejBLZnRsT1RLT1Y5NytETks3UUZvQXRMYlUrU3ZqMVRrQTVpRDdLRnNvU05VYkhoZVc5R3d2UTZ3WHp6N1llc2FzQmFhc0JDTnBtYUFEVFJ4K0VGUEJURFFXU05VR1IzZ1FSQlFOc3Mza2xnNW9rWEtDaC9JSHlIVEMyZ2xURU5oQmx3YkozTkIxbXNmRHNKaEJCV1Z6U09vNjRtIiwiYW1yIjpbInJzYSIsIm1mYSJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImRldmljZWlkIjoiMWJjMmViNjEtMTliYi00NWY3LWJmZWQtYTdiZjU4NDA2ZDFlIiwiZmFtaWx5X25hbWUiOiJWYXJhZGFjaGFyaSIsImdpdmVuX25hbWUiOiJOaWhhbCIsImlkdHlwIjoidXNlciIsImlwYWRkciI6IjEzLjcyLjI0MS4yMzkiLCJuYW1lIjoiTmloYWwgVmFyYWRhY2hhcmkiLCJvaWQiOiI0YjViMGNlZi1jZjgyLTRjZjUtOWFiMS1mZjg0YzlmMTFmMzUiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctODcwODE1MDIiLCJwdWlkIjoiMTAwMzIwMDU5M0IyNjc0MiIsInB3ZF91cmwiOiJodHRwczovL2dvLm1pY3Jvc29mdC5jb20vZndsaW5rLz9saW5raWQ9MjIyNDE5OCIsInJoIjoiMS5BUm9BdjRqNWN2R0dyMEdScXkxODBCSGJSMFpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTUFBTmthQUEuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic2lkIjoiMDAyMjM1ZWEtYmIyYi04NjY1LTBhNDItNDVlYThkOTMzZjQ3Iiwic3ViIjoiaDB3S1R0ZnR4eHU4bkZlMG1rYmZPWk8zRE1NSDRobDFNWGlxeGIzb2w5SSIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoibnZhcmFkYWNoYXJpQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJudmFyYWRhY2hhcmlAbWljcm9zb2Z0LmNvbSIsInV0aSI6IjFadGY0aFoxSTBDMUhQNWQ3NVUyQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSJdLCJ4bXNfYWN0X2ZjdCI6IjUgMyIsInhtc19mdGQiOiJvcXhnMnY0VmhoT3BPb0V2Yk4yYlB2VmtaMmhVaXJQZlBocEQxX2Z1MnRnQmFtRndZVzVsWVhOMExXUnpiWE0iLCJ4bXNfaWRyZWwiOiIxIDIwIiwieG1zX3N1Yl9mY3QiOiIzIDE0IiwieG1zX3RjZHQiOjEyODkyNDE1NDd9.KOegAY9CtJEkFDE6MwcB0Srui4tdyMrI5Q-wZFSvyAgrt2rNjkFg7_NpJ5wmZ9PKrmgcNpeSqbYvMRC0OJkAOFN8aqE3fameyRtNrj6ij23dWAu4V41w0crXR5PGjHvHjhMNyM4_Z6BQ31Lp9mZN10sBTFYPsr0viGYBIMDT9XB970XrgR2sbT3CTYlVIIrSGI8klGVxJMG20woxpHX_JGAkRjigOXyAbbDF6c7AD2PZejVOva_mHlrE9AVr_ww_wBBqel0WUCYalYgf6IVcIGl6VVB2sJ9IoppEWQsaqTXynPdhJRIsWNFtafDukQHUudyftxDtbXD5o3eanyAbWA"}}, "targetTags": ["microsoft:azure-cli-2"], "mode": "NoForce"}' headers: Accept: @@ -2483,15 +2307,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2918' + - '2928' Content-Type: - application/json ParameterSetName: - -n --source -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/targetregistry000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -2502,17 +2326,17 @@ interactions: 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 03 Apr 2026 15:12:36 GMT + - Thu, 10 Sep 2026 10:41:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89985fd3-2f6f-11f1-b1f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259570602131&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=A8DSEFSHUY9yjhTkkVsKIdnpfGOsTMoMK1K-AGBvv6fyrClaEgDwAcZvtA7aWZg377E7tioO8wb9FUPYJC-wXjXKWJDl1p5yNZ6S9GAEVwTnTaU9TMAd5EoeYNGAQEnDz9I_TurFcwaKA5CK2H_OcvlaeFeo2xgAXZLJSaIVDTRShuty1DVzViqf97tWj3Zd1kC4ebv6c6DtBg2jrT4aJqF1EpuIkBK91gLRXnvrmdfmip1eKpXtMY7tka4he6-rb_qa39KGTLrg3feKDIh_kNwgFuS6Q38tnYdWKTruej0tXD2Vj7zVElsYJu1iGt3G7Z1VbRkszv2DSb4hbTMchA&h=bSdKk0qUPX5FGEd97Eqc70hHT6U0cfGQ7DZxeE0xPyY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-3611f2c5-ad04-11f1-8202-3cefa50a58cc?api-version=2026-09-01-preview&t=639246337080314731&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=n5DUWU5rvQPc-cWD_Xrj8rQanUFi1SOksdfaAPs4H7uaRlizpSqoBqbl3LHjPGI94CXNsYNGHexm1rw7DdegZcbz49Nri8yEgRV2w0BJr_HsHd96nYIkbNjFbav-Q1rsr87ngf-W2DWa7kGmlED0JW19QMt0GkSRGUF8sFH3SArZDxlBH96iYCnC4w1FwVEdtdTIc4Das8fBfqE2MyLE8squDJj0i-b48pNtdURG23tOAqhrGD5fdYumeyKMB0oPmHjeIo9zY937E2RUV8ANCrxtD22se2aNcb4YM8frVCoM8GDl3gcpUBtU6Nj1RAorWiamV7pgUj1xiVGuRuVaBA&h=m3BBgI9GlbGUglLTcqdkjN2TiXBQqyQRkP7lkbkqRNk pragma: - no-cache strict-transport-security: @@ -2522,13 +2346,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5fec33df-4b1f-4ce9-a997-87941cbf9a77 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/ec1b18f5-198a-44c3-a78e-7ba1eb553ce3 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 7195B2DD283846A69F7A9BA5B4B1BBC3 Ref B: BN1AA2051014035 Ref C: 2026-04-03T15:12:36Z' + - 'Ref A: 1134F45FB6684CD78D68E8FDEC7B0063 Ref B: SG2AA1070305052 Ref C: 2026-09-10T10:41:47Z' status: code: 202 message: Accepted @@ -2546,25 +2370,25 @@ interactions: ParameterSetName: - -n --source -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89985fd3-2f6f-11f1-b1f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259570602131&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=A8DSEFSHUY9yjhTkkVsKIdnpfGOsTMoMK1K-AGBvv6fyrClaEgDwAcZvtA7aWZg377E7tioO8wb9FUPYJC-wXjXKWJDl1p5yNZ6S9GAEVwTnTaU9TMAd5EoeYNGAQEnDz9I_TurFcwaKA5CK2H_OcvlaeFeo2xgAXZLJSaIVDTRShuty1DVzViqf97tWj3Zd1kC4ebv6c6DtBg2jrT4aJqF1EpuIkBK91gLRXnvrmdfmip1eKpXtMY7tka4he6-rb_qa39KGTLrg3feKDIh_kNwgFuS6Q38tnYdWKTruej0tXD2Vj7zVElsYJu1iGt3G7Z1VbRkszv2DSb4hbTMchA&h=bSdKk0qUPX5FGEd97Eqc70hHT6U0cfGQ7DZxeE0xPyY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-3611f2c5-ad04-11f1-8202-3cefa50a58cc?api-version=2026-09-01-preview&t=639246337080314731&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=n5DUWU5rvQPc-cWD_Xrj8rQanUFi1SOksdfaAPs4H7uaRlizpSqoBqbl3LHjPGI94CXNsYNGHexm1rw7DdegZcbz49Nri8yEgRV2w0BJr_HsHd96nYIkbNjFbav-Q1rsr87ngf-W2DWa7kGmlED0JW19QMt0GkSRGUF8sFH3SArZDxlBH96iYCnC4w1FwVEdtdTIc4Das8fBfqE2MyLE8squDJj0i-b48pNtdURG23tOAqhrGD5fdYumeyKMB0oPmHjeIo9zY937E2RUV8ANCrxtD22se2aNcb4YM8frVCoM8GDl3gcpUBtU6Nj1RAorWiamV7pgUj1xiVGuRuVaBA&h=m3BBgI9GlbGUglLTcqdkjN2TiXBQqyQRkP7lkbkqRNk response: body: - string: '{"status":"Accepted"}' + string: '{"microsoft:azure-cli-2":"Pending","status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '55' content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:12:37 GMT + - Thu, 10 Sep 2026 10:41:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89985fd3-2f6f-11f1-b1f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259580518626&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=UasrSgg7x8r7gnp434mw6h3zw0_cubpCxE6CYO-ORg85t-pAndOWNCmWQatwpvsG3rfnIDFNltNfkEsUSH9ryavQO2W1ejTJdHBxVnfLA5qL2r1BrNjiDhJipNvByStczjPf47tMUqbKeYeK77TqNeyDF4UWkDVrCmI5OaQ3nHkF0ddyVEq4lo8xjp_27JUT58YIAx2NOeO54a-TrEvOnnI-TknJDK_xNSr8HTKAWWaGv0ZcM8GXu-qiO4UbctGFWJAtqCTSC5Dg65-NwLQzvm_in4u0zbs22KM7_7nKkE6ih9-kdH6I7p-RcCultp_Qzc-FOYRXpNUaADCaBtBoXg&h=xOJng2CMqEkK5nBU139BB6PrCV2mxVh_Zw-0wRQuNgI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-3611f2c5-ad04-11f1-8202-3cefa50a58cc?api-version=2026-09-01-preview&t=639246337104937707&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=2D0ud3G7_E3jDNIq551Q466TWIfcv8YCi8IwEGrfIZrSFmTbxsMPrqpStKY8bqARZ3VhzCCspnO8cY39zv2qn_981ymBfwX1fYiuIt11RH-kcYH4CHlvDWlAFe0IghpkCY1z-EjetvLgNNQM_nzFcsAa3FniNdoYtea-O61tdFG7mGg9Jg0c9lVOdXRrwoX39gnlDi7S6EXGYuGYIUWvhbr0fb0kAJFs5cmoDM7qkkfESc7kut6G4zT1e2EUBrL4iHghQPl3Cgk7yje0ffaGKob3sq4KUluIZ6C5on95eAGyxY0TsMDW4Qb1aR8b400MkVHSg6hbe5_t-iMISn-ZZw&h=GIM40hlmprw-T4eEcmmjues_YqqLIrVmns5n9GCkYtQ pragma: - no-cache strict-transport-security: @@ -2574,11 +2398,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/f5062109-4ec9-4011-9303-d43f8008f81f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/621a5e26-0464-46fb-9899-b9d8ec6e6a7b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 17593212B1DF41C6AC63355442A5D04C Ref B: BN1AA2051012009 Ref C: 2026-04-03T15:12:37Z' + - 'Ref A: F0581A57D9C940AEBD50238412871B10 Ref B: SG2AA1070301042 Ref C: 2026-09-10T10:41:49Z' status: code: 202 message: Accepted @@ -2596,9 +2420,9 @@ interactions: ParameterSetName: - -n --source -p User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89985fd3-2f6f-11f1-b1f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639108259580518626&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=UasrSgg7x8r7gnp434mw6h3zw0_cubpCxE6CYO-ORg85t-pAndOWNCmWQatwpvsG3rfnIDFNltNfkEsUSH9ryavQO2W1ejTJdHBxVnfLA5qL2r1BrNjiDhJipNvByStczjPf47tMUqbKeYeK77TqNeyDF4UWkDVrCmI5OaQ3nHkF0ddyVEq4lo8xjp_27JUT58YIAx2NOeO54a-TrEvOnnI-TknJDK_xNSr8HTKAWWaGv0ZcM8GXu-qiO4UbctGFWJAtqCTSC5Dg65-NwLQzvm_in4u0zbs22KM7_7nKkE6ih9-kdH6I7p-RcCultp_Qzc-FOYRXpNUaADCaBtBoXg&h=xOJng2CMqEkK5nBU139BB6PrCV2mxVh_Zw-0wRQuNgI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-3611f2c5-ad04-11f1-8202-3cefa50a58cc?api-version=2026-09-01-preview&t=639246337104937707&c=MIIHlDCCBnygAwIBAgIQbFnfFOz7A_VYWYwd_BJ05zANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMzIzNDk1NFoXDTI3MDIwOTA1NDk1NFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhZUPWC_r-S0zyqqusEeSkNqqajuPdy1ZzcQlo4djteyJdwwWNTajAhE0_qUhb8ca-OR_1c9m4sOd9we--hSIuMLXjHhAT7t27MWD-8oa4ZCEMb-76qcQs9HLEUStp7e6RX7LNVjJjLZ8xvkLV7nYiiybkP4E4iYAPDjMhmeu2QH0W2eFB9lq1Nu_iInkGeBK678fHjt_rW6tVcyMHcYpEUVaRZapbCWsfZmBTvk5I7T47dB5_0cqsh13V7f5MEm_Wyn2BAj8lul85GhxL3p8H8jIQEiKqVXnOa_hC5s1xlIKolbh7OW0P33wjATfEXYHJJXUCvWbH92FTFyEJhJZVAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSGNhmUvF3CioxAORFLdcLt6G94fzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY3L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjcvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82Ny9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQArBoYZle5U9KReq2R_QLQTC0HpQaitJkId8eDHwRk7WQsLp_JeTtDmTrwkpDAVevurHGj37cSwNzE6fwMZ2qw8TfQyzjACa4kSjTAUyMPumkRas3EHcbtAMTKK_mpum7pBbb0QwWcY3_Iny-txJ0TsAqTbQ9kbGaYBCKXsExLO49xq4Jea64MaxYnk5zhAQ37_kiZbqhegZRfmm0aPdOpq25_lquN-4M4jx_rPWzn1LsMWtiHDldsZf030tHhdS-l4r_WYo_yDs6hAuU6HGacLKshNbbszUNa7q23pSue4dO9tiYywAwnIXStZlJrPbJwnycF6bqWS3ooeTBYUo_A3&s=2D0ud3G7_E3jDNIq551Q466TWIfcv8YCi8IwEGrfIZrSFmTbxsMPrqpStKY8bqARZ3VhzCCspnO8cY39zv2qn_981ymBfwX1fYiuIt11RH-kcYH4CHlvDWlAFe0IghpkCY1z-EjetvLgNNQM_nzFcsAa3FniNdoYtea-O61tdFG7mGg9Jg0c9lVOdXRrwoX39gnlDi7S6EXGYuGYIUWvhbr0fb0kAJFs5cmoDM7qkkfESc7kut6G4zT1e2EUBrL4iHghQPl3Cgk7yje0ffaGKob3sq4KUluIZ6C5on95eAGyxY0TsMDW4Qb1aR8b400MkVHSg6hbe5_t-iMISn-ZZw&h=GIM40hlmprw-T4eEcmmjues_YqqLIrVmns5n9GCkYtQ response: body: string: '{"status":"Succeeded"}' @@ -2610,7 +2434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 03 Apr 2026 15:12:48 GMT + - Thu, 10 Sep 2026 10:42:02 GMT expires: - '-1' pragma: @@ -2622,11 +2446,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/6e444627-335e-4202-86a5-9226d3ab29b9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/southeastasia/0d615172-e0d4-41ea-9e8d-6de076aca608 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 855A9EB4C552460A83DFFF2B2A9DC024 Ref B: BN1AA2051013021 Ref C: 2026-04-03T15:12:48Z' + - 'Ref A: 3B87FF1600EF43679112EFF8EAF32049 Ref B: SG2AA1040513029 Ref C: 2026-09-10T10:42:01Z' status: code: 200 message: OK From 48144bd9f75b31ee7510c4d26e310d6459f9653d Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Fri, 11 Sep 2026 12:27:02 +1000 Subject: [PATCH 06/19] test(acr): re-record tests for other modules --- .../recordings/test_acr_create_abac.yaml | 84 +- .../latest/recordings/test_container_acr.yaml | 1249 ++- .../test_container_acr_env_var.yaml | 5458 ++++++---- ...erapp_manualjob_private_registry_port.yaml | 1596 ++- ...ljob_registry_acr_look_up_credentical.yaml | 1515 ++- ...st_containerapp_private_registry_port.yaml | 2679 +++-- ...rapp_registry_acr_look_up_credentical.yaml | 1563 ++- .../test_containerappjob_registry_crud.yaml | 3417 +++--- .../recordings/test_tag_update_by_patch.yaml | 9509 +++++++++-------- .../resource/tests/latest/test_resource.py | 2 +- 10 files changed, 16110 insertions(+), 10962 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml index 626082c05f1..fda1beaeb36 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml @@ -23,18 +23,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:27.0652097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1665' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:41 GMT + - Fri, 11 Sep 2026 02:16:34 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bf6e8d0-c4e4-4b5a-8bd3-eee843657790 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/fe1ce86e-5208-4e96-8240-442dbfc180d7 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 99314DE97E844DC694DBF5A8AD402823 Ref B: SYD281080705040 Ref C: 2026-09-10T06:42:32Z' + - 'Ref A: ACE0EE953F1943398F13FD68295B6042 Ref B: SYD281080706023 Ref C: 2026-09-11T02:16:25Z' status: code: 200 message: OK @@ -75,18 +75,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:27.0652097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1665' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:42 GMT + - Fri, 11 Sep 2026 02:16:36 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4317657C2D7440E080357F06030D2673 Ref B: SYD281080707042 Ref C: 2026-09-10T06:42:42Z' + - 'Ref A: 4A04A7DCC4484886B755195CD217CE40 Ref B: SYD281080705029 Ref C: 2026-09-11T02:16:35Z' status: code: 200 message: OK @@ -123,18 +123,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:27.0652097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1665' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:44 GMT + - Fri, 11 Sep 2026 02:16:37 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 93402403C119442C953FAC0E4F1A9AC7 Ref B: SYD281080707034 Ref C: 2026-09-10T06:42:44Z' + - 'Ref A: CD001438C5DC427DB42839AB427ABEBE Ref B: SYD281080706023 Ref C: 2026-09-11T02:16:37Z' status: code: 200 message: OK @@ -175,18 +175,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:41.0146454+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1665' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:46 GMT + - Fri, 11 Sep 2026 02:16:40 GMT expires: - '-1' pragma: @@ -198,13 +198,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/86bcd0d2-dab5-479e-94d0-da1d05ebf496 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/7c998855-2034-4d0d-9bde-0c61dccc0baa x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DC28DC71EE674D7C97D0CE3E86B41483 Ref B: SYD281080712025 Ref C: 2026-09-10T06:42:45Z' + - 'Ref A: E692E295E7794C7FA3DC89B942825E40 Ref B: SYD281080708060 Ref C: 2026-09-11T02:16:38Z' status: code: 200 message: OK @@ -227,18 +227,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:41.0146454+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1665' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:48 GMT + - Fri, 11 Sep 2026 02:16:42 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4E0AC5FC79C24ED09BCFF1CF34AD5D51 Ref B: SYD281080710031 Ref C: 2026-09-10T06:42:48Z' + - 'Ref A: 23D52F4DF4E340C5A39754F4DB6FCF74 Ref B: SYD281080712060 Ref C: 2026-09-11T02:16:42Z' status: code: 200 message: OK @@ -279,18 +279,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:44.1674886+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1665' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:49 GMT + - Fri, 11 Sep 2026 02:16:43 GMT expires: - '-1' pragma: @@ -302,13 +302,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/20cb4955-1656-4347-9d96-0de05f6046a5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d9ef8cf2-a850-49f5-ab02-83edb6812c7e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CD363FFE7CD446DF888402C25A00EFBC Ref B: SYD281080709062 Ref C: 2026-09-10T06:42:49Z' + - 'Ref A: 5831AC9237064B50B8AAB30C3AEB27EB Ref B: SYD281080706040 Ref C: 2026-09-11T02:16:43Z' status: code: 200 message: OK @@ -333,22 +333,22 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:44.1674886+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1664' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:51 GMT + - Fri, 11 Sep 2026 02:16:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898060754820&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=o3eZWALxpP_OD1dgzE8zIOAV4BuSlQQHLai2hkyRCMPVY3gKKR4wYzBCzIYe-93dThh2hxvTAae4OZjLOzAXaP49eq1SxaXYX7VhTA-xkzc04dsO_eiuurZLwYVaRvrpo7eCYv-fbeszdAfR34g5Y_hG6YA_TPYRkOdkZCsl3a6rfrGdRDQpy-uSs-GJmrcoNIL6SG0Y1pX-sh2rtJeQ3HbNyBv7RZagpHhQB8qFOT3ABWVmJZj7uK-O7PQk3POhc5aohluapCUt8yYvXUzSpF6D9qtqofeZgbWkmil7ZrHkH_QWGVIHfphbXH2TIe-Lu8q_BIgCjPNyfY64KuCiZA&h=keclUbDJ947GwRsZg1FAH4yeBS7B2JzySWeiiBtCu1I pragma: - no-cache strict-transport-security: @@ -358,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/58a4dbf1-63cd-4e4f-8844-2e14b95300a9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b1813c42-759c-4215-8f39-53003f2f6776 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 646AE4D19B144B639A34E8CDE1C3A6BD Ref B: SYD281080710042 Ref C: 2026-09-10T06:42:51Z' + - 'Ref A: 93BAE718DBB5452AADE7ADEADFF06ED0 Ref B: SYD281080709060 Ref C: 2026-09-11T02:16:45Z' status: code: 202 message: Accepted @@ -384,7 +384,7 @@ interactions: User-Agent: - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898060754820&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=o3eZWALxpP_OD1dgzE8zIOAV4BuSlQQHLai2hkyRCMPVY3gKKR4wYzBCzIYe-93dThh2hxvTAae4OZjLOzAXaP49eq1SxaXYX7VhTA-xkzc04dsO_eiuurZLwYVaRvrpo7eCYv-fbeszdAfR34g5Y_hG6YA_TPYRkOdkZCsl3a6rfrGdRDQpy-uSs-GJmrcoNIL6SG0Y1pX-sh2rtJeQ3HbNyBv7RZagpHhQB8qFOT3ABWVmJZj7uK-O7PQk3POhc5aohluapCUt8yYvXUzSpF6D9qtqofeZgbWkmil7ZrHkH_QWGVIHfphbXH2TIe-Lu8q_BIgCjPNyfY64KuCiZA&h=keclUbDJ947GwRsZg1FAH4yeBS7B2JzySWeiiBtCu1I response: body: string: '' @@ -394,11 +394,11 @@ interactions: content-length: - '0' date: - - Thu, 10 Sep 2026 06:42:52 GMT + - Fri, 11 Sep 2026 02:16:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898085709092&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=K9rNsuyvJScwcCIEpR7OJNBftVOgmuInNJ86BL8RsW3CXgzGCvbNQa7_EmMSbcMNBo1rSMt3b5W0H_Q5yWKZLhvE7tvrV5-B1KsD9Je2VHu2dRBGKr-W1J6BsvR6hDHLy5RXxuywMvGh3OeYZhYOEM4SZMxnd0pH9hat5rqE7sxcpzVc9lvPFIZWf2gcFfytU21nq18Z0MNt-hugZN3Mi-gZARTG-0wEKWq86feXFw2_KDDaTzYywm2Bl2RAYkG-3NpHaUBw1VmEjI8pUavqVpX6VI-79vvG9yXWVCbXZcOLxLq2xy1DAOR-SKK5QshFmoJXr7CO6MboSmmlu-UZBQ&h=rFPhwBbJEVq_rKqGdEgjIg0vXJAXoCiQngLuAUgwBTk pragma: - no-cache strict-transport-security: @@ -408,11 +408,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/81089ec9-6e21-49a1-bb23-e3e375bbe350 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f342cdb6-3f33-4999-b5b1-d234e688e88e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 38220075980544C9A21CF26D4999C6AD Ref B: SYD281080705052 Ref C: 2026-09-10T06:42:52Z' + - 'Ref A: 677A31AF5576466F8218E4624E6AA82B Ref B: SYD281080712036 Ref C: 2026-09-11T02:16:47Z' status: code: 202 message: Accepted @@ -432,7 +432,7 @@ interactions: User-Agent: - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898085709092&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=K9rNsuyvJScwcCIEpR7OJNBftVOgmuInNJ86BL8RsW3CXgzGCvbNQa7_EmMSbcMNBo1rSMt3b5W0H_Q5yWKZLhvE7tvrV5-B1KsD9Je2VHu2dRBGKr-W1J6BsvR6hDHLy5RXxuywMvGh3OeYZhYOEM4SZMxnd0pH9hat5rqE7sxcpzVc9lvPFIZWf2gcFfytU21nq18Z0MNt-hugZN3Mi-gZARTG-0wEKWq86feXFw2_KDDaTzYywm2Bl2RAYkG-3NpHaUBw1VmEjI8pUavqVpX6VI-79vvG9yXWVCbXZcOLxLq2xy1DAOR-SKK5QshFmoJXr7CO6MboSmmlu-UZBQ&h=rFPhwBbJEVq_rKqGdEgjIg0vXJAXoCiQngLuAUgwBTk response: body: string: '' @@ -442,7 +442,7 @@ interactions: content-length: - '0' date: - - Thu, 10 Sep 2026 06:43:04 GMT + - Fri, 11 Sep 2026 02:16:58 GMT expires: - '-1' pragma: @@ -454,11 +454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/af1d2677-f13f-440b-93e5-5c5f25946215 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f86d7213-b12f-42d6-90eb-10de656ad383 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 25BF3405F9E6488E8616BC304A4420A8 Ref B: SYD281080706023 Ref C: 2026-09-10T06:43:04Z' + - 'Ref A: F8D32F63D14F4BE4A9C334DDA0304879 Ref B: SYD281080712040 Ref C: 2026-09-11T02:16:59Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml index 661c5b8d49a..5e4de205576 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,9 +24,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -34,27 +36,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -62,33 +70,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -96,132 +111,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -229,97 +273,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:12 GMT + - Fri, 11 Sep 2026 02:14:13 GMT expires: - '-1' pragma: @@ -333,7 +441,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DEB706BE95EF40B7A15EC0CAFE34A074 Ref B: BY1AA1072318054 Ref C: 2026-03-24T04:51:13Z' + - 'Ref A: EDE93F7028A04103B91FE33D9A2793D1 Ref B: SYD281080709040 Ref C: 2026-09-11T02:14:13Z' status: code: 200 message: OK @@ -351,27 +459,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '2074' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:13 GMT + - Fri, 11 Sep 2026 02:14:13 GMT expires: - '-1' pragma: @@ -387,14 +495,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7B3AEB6CD6AF455B9E01BA8DA9EF8954 Ref B: SJC211051203045 Ref C: 2026-03-24T04:51:13Z' + - 'Ref A: 4DF3AA53AD234A5EA4B7671819510AC5 Ref B: SYD281080712060 Ref C: 2026-09-11T02:14:13Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -406,29 +514,29 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '91' Content-Type: - application/json ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1622' + - '1655' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:21 GMT + - Fri, 11 Sep 2026 02:14:21 GMT expires: - '-1' pragma: @@ -440,13 +548,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/7bcba73f-eb17-4fbd-a79e-46537cefb9ef + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/9d31b815-22fa-4415-a2fe-ba6c1a6d0dd3 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: A57B3BDF7F804690BBC72E1B7D8772EF Ref B: BY1AA1072318040 Ref C: 2026-03-24T04:51:14Z' + - 'Ref A: C2BB244B96CD41FCBD1DC976A469A0F6 Ref B: SYD281080712029 Ref C: 2026-09-11T02:14:14Z' status: code: 200 message: OK @@ -464,23 +572,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1622' + - '1655' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:21 GMT + - Fri, 11 Sep 2026 02:14:22 GMT expires: - '-1' pragma: @@ -494,7 +602,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 03EB10E81F3E48419EB661B93C714EC2 Ref B: BY1AA1072317031 Ref C: 2026-03-24T04:51:22Z' + - 'Ref A: BFF0514CE2394B17B9F594B38B9789E0 Ref B: SYD281080709029 Ref C: 2026-09-11T02:14:22Z' status: code: 200 message: OK @@ -514,15 +622,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"5kAUWC5q2TRf2xsBtURwt6vQw0vswOnrVqmpfmGAdTx5rWuwxRjCJQQJ99CIACMsfrFEqg7NAAACAZCRHfyo"},{"name":"password2","value":"7FWkNJkJfT3sDO4AbdKuwbLMVTEexHI4rj5UcvZJonwFva79slZsJQQJ99CIACMsfrFEqg7NAAACAZCR7As9"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -530,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:22 GMT + - Fri, 11 Sep 2026 02:14:23 GMT expires: - '-1' pragma: @@ -542,13 +650,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/17096a55-4895-4b47-9203-d5d5e79bb569 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/0e6a326b-c6b5-4fc7-9bf9-c7a2071999d2 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8CAF524FCC7F489786E497DD16038F5A Ref B: BY1AA1072319040 Ref C: 2026-03-24T04:51:22Z' + - 'Ref A: E06C694332CB45C4ABC14599087F16A6 Ref B: SYD281080706054 Ref C: 2026-09-11T02:14:23Z' status: code: 200 message: OK @@ -566,7 +674,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -577,9 +685,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -587,27 +697,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -615,33 +731,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -649,132 +772,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -782,97 +934,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:22 GMT + - Fri, 11 Sep 2026 02:14:24 GMT expires: - '-1' pragma: @@ -886,7 +1102,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7DC2A10262794C9396DE8036F9D7A4FF Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:23Z' + - 'Ref A: CB4CCA236434417BAD7B72FEBCCCDA4A Ref B: SYD281080712042 Ref C: 2026-09-11T02:14:24Z' status: code: 200 message: OK @@ -904,27 +1120,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '2074' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:23 GMT + - Fri, 11 Sep 2026 02:14:25 GMT expires: - '-1' pragma: @@ -940,7 +1156,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2AB000AE9B184301A93A1A86641A87FB Ref B: SJC211051204039 Ref C: 2026-03-24T04:51:23Z' + - 'Ref A: AA51A369B45349B6A3F7A50025F5E78F Ref B: SYD281080706029 Ref C: 2026-09-11T02:14:24Z' x-powered-by: - ASP.NET status: @@ -960,7 +1176,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -971,9 +1187,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -981,27 +1199,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1009,33 +1233,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1043,132 +1274,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1176,97 +1436,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:23 GMT + - Fri, 11 Sep 2026 02:14:25 GMT expires: - '-1' pragma: @@ -1280,15 +1604,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C3C8CE0D4223415E83C24F54CC82DFE3 Ref B: BY1AA1072317025 Ref C: 2026-03-24T04:51:23Z' + - 'Ref A: 10D537AF5FB04707842FDF2E33553EB4 Ref B: SYD281080709031 Ref C: 2026-09-11T02:14:25Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "***"}], + "value": "5kAUWC5q2TRf2xsBtURwt6vQw0vswOnrVqmpfmGAdTx5rWuwxRjCJQQJ99CIACMsfrFEqg7NAAACAZCRHfyo"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}]}, "template": @@ -1307,35 +1631,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1032' + - '1036' Content-Type: - application/json ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:26.7087926Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:26.7087926Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc cache-control: - no-cache content-length: - - '4101' + - '4166' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:24 GMT + - Fri, 11 Sep 2026 02:14:26 GMT expires: - '-1' pragma: @@ -1349,11 +1673,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/9ab4c0af-91b8-4a54-99bb-ebe133c8638c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/a0548c69-0cdb-4b8f-939f-6f06a25d2693 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 644D80A1A74840A2B07FCCE93306269A Ref B: BY1AA1072317040 Ref C: 2026-03-24T04:51:24Z' + - 'Ref A: 617049237E7747B182DCD3E600C037CC Ref B: SYD281080710042 Ref C: 2026-09-11T02:14:26Z' x-powered-by: - ASP.NET status: @@ -1373,26 +1697,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:24 GMT + - Fri, 11 Sep 2026 02:14:26 GMT expires: - '-1' pragma: @@ -1406,11 +1730,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9d04871a-e50a-458d-a954-236c5d2cd223 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/6d501d02-8fda-410d-b975-f9893e20796e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 110420A4F9504E7AA2348355E0730D37 Ref B: BY1AA1072315054 Ref C: 2026-03-24T04:51:24Z' + - 'Ref A: 5F3B3B0407364AFEBB4FCD7B35DCCC86 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:27Z' x-powered-by: - ASP.NET status: @@ -1430,26 +1754,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:27 GMT + - Fri, 11 Sep 2026 02:14:30 GMT expires: - '-1' pragma: @@ -1463,11 +1787,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/17779ed2-2d04-47cd-baae-cc3dd00d2951 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/8cf7c727-fe8c-4865-99ec-ae217f30f10f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 508CA5FF4376425483768453E84749A3 Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:27Z' + - 'Ref A: A78A2CFEB2164BD7BC9BCF9B64E734FE Ref B: SYD281080712042 Ref C: 2026-09-11T02:14:30Z' x-powered-by: - ASP.NET status: @@ -1487,26 +1811,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:30 GMT + - Fri, 11 Sep 2026 02:14:33 GMT expires: - '-1' pragma: @@ -1520,11 +1844,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4aea88da-ad7a-475d-8f45-1b9b5409eb60 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/81e59e0b-b570-452d-acf6-738b9cbfe8f2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8A75FC56D25E42C2AAA8FA94EE73BB13 Ref B: SJC211051201009 Ref C: 2026-03-24T04:51:30Z' + - 'Ref A: 842B3279D25F45D99F0B473B9BD58EDA Ref B: SYD281080706023 Ref C: 2026-09-11T02:14:33Z' x-powered-by: - ASP.NET status: @@ -1544,26 +1868,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:32 GMT + - Fri, 11 Sep 2026 02:14:36 GMT expires: - '-1' pragma: @@ -1577,11 +1901,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7a793285-3a60-489d-9844-d5dd666e4604 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/cfe96cc2-5f5a-4235-b5f7-6b9d8615ddb2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 96DC966BF7D045E79F6CD129E0DD2E27 Ref B: BY1AA1072320060 Ref C: 2026-03-24T04:51:32Z' + - 'Ref A: 7D203A0F65EF4BDB87859FAF93A01CEA Ref B: SYD281080708025 Ref C: 2026-09-11T02:14:36Z' x-powered-by: - ASP.NET status: @@ -1601,18 +1925,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"Succeeded","startTime":"2026-09-11T02:14:26.9295856"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1620,64 +1944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d7bb09ce-e7e6-4338-bcad-2cdbb82cebeb - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 849F59C2FA57440E8AD40478E3C992FC Ref B: SJC211051201047 Ref C: 2026-03-24T04:51:35Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"Succeeded","startTime":"2026-03-24T04:51:24.4460644"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 04:51:37 GMT + - Fri, 11 Sep 2026 02:14:39 GMT expires: - '-1' pragma: @@ -1691,11 +1958,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6cb4d0b3-b530-4cce-94dc-802456f9e503 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/96ed2db1-05bd-4b32-8437-3f19abb9e1cb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6551EFFD1C284D70AF67504A2CB9E086 Ref B: SJC211051203053 Ref C: 2026-03-24T04:51:37Z' + - 'Ref A: 029DBC8C3476420B83CBF1F745E162E4 Ref B: SYD281080711062 Ref C: 2026-09-11T02:14:39Z' x-powered-by: - ASP.NET status: @@ -1715,27 +1982,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000005--p4wv4sk","latestReadyRevisionName":"containerapp-e2e000005--p4wv4sk","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:26.7087926","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:26.7087926"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000005--goupk24","latestReadyRevisionName":"containerapp-e2e000005--goupk24","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4621' + - '4687' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:38 GMT + - Fri, 11 Sep 2026 02:14:40 GMT expires: - '-1' pragma: @@ -1751,7 +2018,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9D678719740D452999571AFF4367604F Ref B: BY1AA1072319029 Ref C: 2026-03-24T04:51:38Z' + - 'Ref A: F67600242E66460CB4A538A2719DB866 Ref B: SYD281080709060 Ref C: 2026-09-11T02:14:40Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml index f2d2df16cba..02632571db9 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,9 +24,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -34,27 +36,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -62,33 +70,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -96,132 +111,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -229,97 +273,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:11 GMT + - Fri, 11 Sep 2026 02:15:20 GMT expires: - '-1' pragma: @@ -333,7 +441,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F85FCD0C47AD43578E0CE37D5CD1DFA6 Ref B: BY1AA1072318025 Ref C: 2026-03-24T05:55:12Z' + - 'Ref A: 3FB48C77BB694003A4D3067C5003C3D9 Ref B: SYD281080708054 Ref C: 2026-09-11T02:15:20Z' status: code: 200 message: OK @@ -351,27 +459,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '2074' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:12 GMT + - Fri, 11 Sep 2026 02:15:21 GMT expires: - '-1' pragma: @@ -387,14 +495,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 887910DE91FA49C6B3F4D73E1706ED4E Ref B: BY1AA1072319036 Ref C: 2026-03-24T05:55:12Z' + - 'Ref A: CD17747F14F246B3B59813AE4577AC0D Ref B: SYD281080708025 Ref C: 2026-09-11T02:15:21Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -406,29 +514,29 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '91' Content-Type: - application/json ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-11T02:15:24.3068569Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280052+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280452+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1619' + - '1655' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:21 GMT + - Fri, 11 Sep 2026 02:15:31 GMT expires: - '-1' pragma: @@ -440,13 +548,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/310d4c57-8d43-45cc-a111-38d58da250a8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/8d62773f-2d7e-49d9-a934-0852a0fda7d2 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 8A63F46DEF9341B2A84341B74D6705A3 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:55:13Z' + - 'Ref A: 7FEAAC4E9FC24198920CA5DA7DF5EE66 Ref B: SYD281080708029 Ref C: 2026-09-11T02:15:22Z' status: code: 200 message: OK @@ -464,23 +572,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-11T02:15:24.3068569Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280052+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280452+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1619' + - '1655' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:22 GMT + - Fri, 11 Sep 2026 02:15:33 GMT expires: - '-1' pragma: @@ -494,7 +602,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 148900C360A5448FB4F31B1A9F3C7505 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:55:22Z' + - 'Ref A: 094669511DBF494DB051F7F8CCC17613 Ref B: SYD281080711025 Ref C: 2026-09-11T02:15:32Z' status: code: 200 message: OK @@ -514,15 +622,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"},{"name":"password2","value":"FLubCq15CYQZHxX2Wf4IUjAhuigsQpMviT0crqc96fQZ5C2dn8MRJQQJ99CIACMsfrFEqg7NAAACAZCRVAki"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -530,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:22 GMT + - Fri, 11 Sep 2026 02:15:33 GMT expires: - '-1' pragma: @@ -542,13 +650,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/cd571352-9681-4da7-a353-ed79d31b3dd2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/ed98910a-b2ff-4037-a630-1672412fc2f5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F7BE3154E03F48118223DA69FF5F85D1 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:22Z' + - 'Ref A: 037316F313FD44E0B5F3D6FBC2BB7B63 Ref B: SYD281080711023 Ref C: 2026-09-11T02:15:33Z' status: code: 200 message: OK @@ -566,7 +674,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -577,9 +685,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -587,27 +697,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -615,33 +731,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -649,8 +772,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -658,73 +784,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -741,25 +885,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -772,9 +922,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -782,97 +934,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:23 GMT + - Fri, 11 Sep 2026 02:15:34 GMT expires: - '-1' pragma: @@ -886,7 +1102,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 03CA59EFEBA84E46B942C528E2177387 Ref B: SJC211051201039 Ref C: 2026-03-24T05:55:23Z' + - 'Ref A: 9EBD018C61454414A1C98541B44F3B1D Ref B: SYD281080708036 Ref C: 2026-09-11T02:15:34Z' status: code: 200 message: OK @@ -904,27 +1120,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '2074' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:22 GMT + - Fri, 11 Sep 2026 02:15:35 GMT expires: - '-1' pragma: @@ -940,7 +1156,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 543995D6B84544589AA3C8E3B1FBD029 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:55:23Z' + - 'Ref A: 48EF26D5C3D140A984AB68DE00581115 Ref B: SYD281080709034 Ref C: 2026-09-11T02:15:35Z' x-powered-by: - ASP.NET status: @@ -960,7 +1176,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -971,9 +1187,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -981,27 +1199,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1009,33 +1233,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1043,132 +1274,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1176,97 +1436,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:23 GMT + - Fri, 11 Sep 2026 02:15:36 GMT expires: - '-1' pragma: @@ -1280,15 +1604,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 784676E3AC39442792976D285A6FCEC6 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:23Z' + - 'Ref A: BAE070C0CE054421977AED5EDD14EB65 Ref B: SYD281080707023 Ref C: 2026-09-11T02:15:36Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", - "value": "***"}], + "value": "AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": "containerapp000002azurecrio-containerapp000002"}]}, "template": @@ -1307,35 +1631,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1032' + - '1036' Content-Type: - application/json ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:37.9447156Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk cache-control: - no-cache content-length: - - '4099' + - '4166' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:24 GMT + - Fri, 11 Sep 2026 02:15:38 GMT expires: - '-1' pragma: @@ -1349,11 +1673,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/afab1123-b379-4e37-903c-7226dae20243 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/816b25d8-208f-4749-a773-51e77e9504e2 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: B041C54A3B1E4872B6D191B5F8EA7586 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:55:23Z' + - 'Ref A: D842B21C74BB403B95054D2C1E2903AA Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:37Z' x-powered-by: - ASP.NET status: @@ -1373,26 +1697,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:24 GMT + - Fri, 11 Sep 2026 02:15:39 GMT expires: - '-1' pragma: @@ -1406,11 +1730,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8befd579-9809-491e-9229-f3954f734f20 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b089aceb-1226-425e-9afb-369f3ee3b009 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3BE01733670748C0BD9922549B4E1E84 Ref B: SJC211051205039 Ref C: 2026-03-24T05:55:24Z' + - 'Ref A: C6EE08D06BF743969FA658FD52B5E3E9 Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:39Z' x-powered-by: - ASP.NET status: @@ -1430,26 +1754,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:26 GMT + - Fri, 11 Sep 2026 02:15:42 GMT expires: - '-1' pragma: @@ -1463,11 +1787,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/73aa0456-62d4-49bd-a16a-f32bc93fd2aa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c9e13a4d-1750-488a-8c68-c86b6872bb56 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8968CDB2E8EB413B81AA7329038A1739 Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:55:27Z' + - 'Ref A: 9FADF0DA03C045C4B0C79D796F62924F Ref B: SYD281080706034 Ref C: 2026-09-11T02:15:42Z' x-powered-by: - ASP.NET status: @@ -1487,26 +1811,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:29 GMT + - Fri, 11 Sep 2026 02:15:45 GMT expires: - '-1' pragma: @@ -1520,11 +1844,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f384d921-10e9-4df0-a929-fc688daa9456 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/aab4d16c-d4ea-44cb-93f5-2bdacdd815bc x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C3551CBBFA5C4A05BB45343A562E5489 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:29Z' + - 'Ref A: 6BD4814180134C2E8A24DAF3C02D9791 Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:45Z' x-powered-by: - ASP.NET status: @@ -1544,26 +1868,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:31 GMT + - Fri, 11 Sep 2026 02:15:49 GMT expires: - '-1' pragma: @@ -1577,11 +1901,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/14f0815b-8720-40ef-a73b-4f70b164a8ba + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/504c0c65-dc19-4706-ac85-ddb6f53f3e27 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BAD809E0866B4C13AE593E0F1749D04C Ref B: BY1AA1072319062 Ref C: 2026-03-24T05:55:31Z' + - 'Ref A: A888E63161E34A8D8F9991466FF9694A Ref B: SYD281080705040 Ref C: 2026-09-11T02:15:49Z' x-powered-by: - ASP.NET status: @@ -1601,18 +1925,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"Succeeded","startTime":"2026-09-11T02:15:38.1621015"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1620,7 +1944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:34 GMT + - Fri, 11 Sep 2026 02:15:52 GMT expires: - '-1' pragma: @@ -1634,11 +1958,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/753fa0f1-1e55-4bff-8bf0-e908ca4d8116 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9496e513-f6c2-4b08-8491-ea2ff044a940 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 802DF80DE3A94F4D95876FA067045321 Ref B: SJC211051203027 Ref C: 2026-03-24T05:55:34Z' + - 'Ref A: 934F0F43482C493D94EDC3435558C46A Ref B: SYD281080706023 Ref C: 2026-09-11T02:15:52Z' x-powered-by: - ASP.NET status: @@ -1658,84 +1982,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"Succeeded","startTime":"2026-03-24T05:55:24.2097378"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:55:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/c798deaa-2d86-4123-81dc-da246a186722 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 53F3ED521F9A48FF878F2740B6BE4B30 Ref B: SJC211051204007 Ref C: 2026-03-24T05:55:37Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:37.9447156"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--jb0h14a","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4619' + - '4687' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:36 GMT + - Fri, 11 Sep 2026 02:15:54 GMT expires: - '-1' pragma: @@ -1751,7 +2018,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E11E818D845445E385872F2CEC0F7D28 Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:55:37Z' + - 'Ref A: C9A34E34A40446E6976A1B2A9D1F0D27 Ref B: SYD281080708040 Ref C: 2026-09-11T02:15:53Z' x-powered-by: - ASP.NET status: @@ -1771,7 +2038,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1782,9 +2049,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1792,27 +2061,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1820,33 +2095,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1854,132 +2136,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1987,97 +2298,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:37 GMT + - Fri, 11 Sep 2026 02:15:54 GMT expires: - '-1' pragma: @@ -2091,7 +2466,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F6F8C1723EEB4C4F89BA3CFEA8F9CAA3 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:55:37Z' + - 'Ref A: 1F330B9136014C8BA580711ACC3E957F Ref B: SYD281080712060 Ref C: 2026-09-11T02:15:54Z' status: code: 200 message: OK @@ -2109,7 +2484,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2120,9 +2495,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2130,27 +2507,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2158,33 +2541,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2192,132 +2582,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2325,97 +2744,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:38 GMT + - Fri, 11 Sep 2026 02:15:55 GMT expires: - '-1' pragma: @@ -2429,7 +2912,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C221207E5F6C43BB932BCDC8EE955207 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:55:38Z' + - 'Ref A: 889CDE3BBE6C4D928C3EA2175D4AB026 Ref B: SYD281080711062 Ref C: 2026-09-11T02:15:55Z' status: code: 200 message: OK @@ -2447,27 +2930,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:37.9447156"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--jb0h14a","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4619' + - '4687' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:38 GMT + - Fri, 11 Sep 2026 02:15:57 GMT expires: - '-1' pragma: @@ -2483,7 +2966,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5876958253C04DE187693AAFC2986E76 Ref B: SJC211051201017 Ref C: 2026-03-24T05:55:38Z' + - 'Ref A: 17987646541A485DBD166EAA7760F57C Ref B: SYD281080710040 Ref C: 2026-09-11T02:15:56Z' x-powered-by: - ASP.NET status: @@ -2510,7 +2993,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -2521,19 +3004,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:55:39 GMT + - Fri, 11 Sep 2026 02:15:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=OiX-ev0V-zoCue3svj0ssGPepKn9Gt9GNxDMsVGR0GuwzZXOn_ADMUHruls2YutFR59GyxuiTSybVF5zV13cXZghECiPGMt7L1CuWvJ6eVNUAIPtiMUF09Np7r90mVRbxiOhQGpCNWwf22BhRaIMCJ_oyLtt6LR8qbH4w2GFZ5-VM-4zMT6nXmoHaGuQtzrew27vCbv-X6fMiuJIT0zFAGPrktgTCj7axOKoJBASmXL4dzy2_KOtd4W6syfGx86c74AYXzQGw9w84oH7Z_E8u9eoZ5dTqXE3ygLdDD4YcwI73VvURo4SB4SuqFR8ljg-EdZ3-vO8FsZjIOhLAd9cnA&h=C5jpKW3JuJlz-0knFsza4SLcG6_eaPp1dBuPoWqH3GA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationResults/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&t=639246897593976035&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=CcjALqXk7OS87pdF87tp5nDxbuN7qb_2yiwchyMsF1w9v4wGpONdrWaKxPTpJ2jFES16H00eqYTtPCHlTdwWjRpp60_eP5dGcUVi3dRe2cu7lAfCX_Bpq5kILUSr-FGgj458B7Ca8WkWYzq3FPtV_2cCRbnelJ1nmBO2eWbfV4DGiHd1R0i2qXHPCChXn1Cn2yPYnrcr8hHCdVUZdxav0l-pfXcx_YW8EUbhyVTwqmqeFqve5Tjb4kQGlO4vTo0KNRTA5_rDd1ZU82OSp8DVA4WmYKzay70-lJnZiReUFnO_de6BEDDh2ittXBRBoS8lh5QLRitr4mzTrRkdQpDd3Q&h=GrbPs9Gq9IwnBBaBTmvlrELpL5ikij6IFf1oWUqfHvU pragma: - no-cache strict-transport-security: @@ -2543,11 +3026,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/b7e74ace-331e-42a9-90ef-40d8c2876c5d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/dd8ead43-7f08-495b-807b-0dc6fe8fd254 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 5C876BD65A8C4050A3694E8B6D662EC1 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:55:39Z' + - 'Ref A: 46BBB29CF5884C398A3B3892C3F16188 Ref B: SYD281080706025 Ref C: 2026-09-11T02:15:58Z' x-powered-by: - ASP.NET status: @@ -2567,26 +3050,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:39 GMT + - Fri, 11 Sep 2026 02:16:00 GMT expires: - '-1' pragma: @@ -2600,11 +3083,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/091a44c2-aa37-45f4-a818-47b78080a7cc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/f775b334-c607-433a-b24f-ff43351ccbf5 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 97AC88E040434658A1E9E7E9B28BD62D Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:39Z' + - 'Ref A: 7CA183AC1D31436DB5ECA230C214BD3C Ref B: SYD281080712029 Ref C: 2026-09-11T02:16:00Z' x-powered-by: - ASP.NET status: @@ -2624,26 +3107,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:42 GMT + - Fri, 11 Sep 2026 02:16:03 GMT expires: - '-1' pragma: @@ -2657,11 +3140,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/be56815f-12f6-4c47-b788-5c3be718ca96 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c9350675-08a3-4e23-8a41-01b9f9e3e905 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B9CE90C233884E97915A06945841E788 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:42Z' + - 'Ref A: 01CBA67FE0BE42C49D026AB8E740BC5E Ref B: SYD281080705029 Ref C: 2026-09-11T02:16:03Z' x-powered-by: - ASP.NET status: @@ -2681,26 +3164,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:44 GMT + - Fri, 11 Sep 2026 02:16:06 GMT expires: - '-1' pragma: @@ -2714,11 +3197,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8516f274-e462-40e8-9f5c-1633497725dd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/03462843-0544-47cd-bf38-a65143cd9b09 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 389BD75BCF074D03B3FBD348A05D88C8 Ref B: SJC211051204033 Ref C: 2026-03-24T05:55:44Z' + - 'Ref A: 23779F77114A4E04B43B51A8DA2794A1 Ref B: SYD281080707054 Ref C: 2026-09-11T02:16:06Z' x-powered-by: - ASP.NET status: @@ -2738,26 +3221,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:47 GMT + - Fri, 11 Sep 2026 02:16:10 GMT expires: - '-1' pragma: @@ -2771,11 +3254,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/5af52663-9944-407d-a85a-48180b7167e4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ccec3ef3-6d0c-4116-9bd2-169601bed00f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 51647A54749044CE98DEC234813E878B Ref B: SJC211051204045 Ref C: 2026-03-24T05:55:47Z' + - 'Ref A: 329D208FA36C43D0B134C161FA36B505 Ref B: SYD281080705036 Ref C: 2026-09-11T02:16:10Z' x-powered-by: - ASP.NET status: @@ -2795,18 +3278,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"Succeeded","startTime":"2026-09-11T02:15:59.3553473"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2814,7 +3297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:49 GMT + - Fri, 11 Sep 2026 02:16:13 GMT expires: - '-1' pragma: @@ -2828,11 +3311,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/945a3cc0-063e-426f-9977-0b5184dd44a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/aabbbbc3-2cb5-4388-977d-a9039eb4ec89 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1C3A14844F564B38B6989EEB1C2307B7 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:55:49Z' + - 'Ref A: 06E6A09CA55D453FB2BA0CBF84A7629E Ref B: SYD281080710042 Ref C: 2026-09-11T02:16:13Z' x-powered-by: - ASP.NET status: @@ -2852,84 +3335,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"Succeeded","startTime":"2026-03-24T05:55:39.6255863"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:55:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/db8d0720-dd43-46b8-8869-6af35ab63048 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 36C6A752F297453A9C190DEA0B27E18F Ref B: SJC211051201023 Ref C: 2026-03-24T05:55:52Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp update - Connection: - - keep-alive - ParameterSetName: - - -g -n --min-replicas --max-replicas --set-env-vars - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:59.0694457"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4661' + - '4728' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Fri, 11 Sep 2026 02:16:14 GMT expires: - '-1' pragma: @@ -2945,7 +3371,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DDD8789F90D94B9E8E61447B9497312E Ref B: BY1AA1072320062 Ref C: 2026-03-24T05:55:52Z' + - 'Ref A: 2515217231154AE18066BC5977872EB9 Ref B: SYD281080709060 Ref C: 2026-09-11T02:16:14Z' x-powered-by: - ASP.NET status: @@ -2965,7 +3391,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2976,9 +3402,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2986,27 +3414,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3014,33 +3448,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3048,132 +3489,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3181,97 +3651,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Fri, 11 Sep 2026 02:16:15 GMT expires: - '-1' pragma: @@ -3285,7 +3819,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3868DD2BCC6C447389CF8E197A0F6DC0 Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:53Z' + - 'Ref A: 1FA440A987554645BBA4B9140542AA93 Ref B: SYD281080706060 Ref C: 2026-09-11T02:16:15Z' status: code: 200 message: OK @@ -3303,27 +3837,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:59.0694457"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4661' + - '4728' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Fri, 11 Sep 2026 02:16:15 GMT expires: - '-1' pragma: @@ -3339,7 +3873,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F1C13AB984D342E08FACC489B275FF76 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:55:53Z' + - 'Ref A: 7BB9C172A6004756BEAB709EBE1225F7 Ref B: SYD281080708062 Ref C: 2026-09-11T02:16:16Z' x-powered-by: - ASP.NET status: @@ -3359,7 +3893,7 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3370,9 +3904,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3380,27 +3916,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3408,33 +3950,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3442,8 +3991,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3451,73 +4003,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -3534,25 +4104,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -3565,9 +4141,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3575,97 +4153,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Fri, 11 Sep 2026 02:16:17 GMT expires: - '-1' pragma: @@ -3679,7 +4321,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 466A474B38C147C5B4566EE3C0618A11 Ref B: SJC211051205049 Ref C: 2026-03-24T05:55:53Z' + - 'Ref A: CB593721EDCF4594B0A0A9B3AE58943F Ref B: SYD281080712031 Ref C: 2026-09-11T02:16:17Z' status: code: 200 message: OK @@ -3697,27 +4339,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:59.0694457"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4661' + - '4728' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:53 GMT + - Fri, 11 Sep 2026 02:16:17 GMT expires: - '-1' pragma: @@ -3733,7 +4375,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A7AE8C5C3C4B4421B89661404B4BEF7E Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:55:53Z' + - 'Ref A: E3868415F7124F28AFF5C782940EFBD2 Ref B: SYD281080707036 Ref C: 2026-09-11T02:16:18Z' x-powered-by: - ASP.NET status: @@ -3755,18 +4397,18 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3774,7 +4416,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:55 GMT + - Fri, 11 Sep 2026 02:16:19 GMT expires: - '-1' pragma: @@ -3788,13 +4430,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/11b564e7-976e-4d50-852d-430d807a6526 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/e9d37799-246b-478b-8240-e5742f189e94 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8EE9D307D17F46D1B803C4838B4D1330 Ref B: SJC211051204047 Ref C: 2026-03-24T05:55:54Z' + - 'Ref A: 56AA840F2701427C81855FFBD0999DBB Ref B: SYD281080708052 Ref C: 2026-09-11T02:16:19Z' x-powered-by: - ASP.NET status: @@ -3803,48 +4445,49 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "East US", "systemData": {"createdBy": "test@example.com", "createdByType": - "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", - "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:39.3791927"}, + "West US 3", "systemData": {"createdBy": "test@example.com", "createdByType": + "User", "createdAt": "2026-09-11T02:15:37.9447156", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2026-09-11T02:15:59.0694457"}, "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", - "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", - "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", - "40.121.19.74", "40.121.19.40", "40.121.18.62", "40.121.18.244", "40.121.19.105", - "40.121.18.246", "40.121.18.166", "40.121.18.60", "40.121.18.21", "40.121.18.44", - "40.121.18.41", "40.121.18.248", "40.121.18.82", "40.121.19.108", "40.121.19.125", - "40.121.18.46", "40.117.125.130", "40.121.18.52", "40.121.18.33", "40.121.18.238", - "40.121.19.2", "40.121.19.122", "40.121.19.19", "40.121.18.114", "40.121.18.255", - "40.121.18.164", "40.117.121.106", "40.121.18.27", "40.121.18.156", "40.121.18.117", - "40.121.18.197", "40.121.18.133", "40.121.18.112", "40.121.18.106", "40.121.19.89", - "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", - "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", - "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", - "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", - "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", - "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", - "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", - "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", - "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", - "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", - "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", - "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", - "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", - "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", - "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", - "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", - "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", - "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", - "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", - "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", - "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", - "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], - "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": - "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": - "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": - {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", "value": - "***"}, + "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.125.76.124", + "20.125.74.58", "20.118.180.220", "20.125.72.245", "4.236.29.28", "4.236.28.230", + "4.236.28.126", "4.236.29.23", "4.236.28.206", "4.236.29.43", "20.14.119.70", + "135.234.107.40", "135.234.118.135", "20.14.118.252", "4.236.1.136", "134.33.25.140", + "20.14.66.96", "134.33.8.60", "20.171.203.222", "20.14.36.89", "20.150.255.247", + "135.234.57.229", "4.227.26.117", "135.234.57.184", "134.33.29.28", "134.33.13.26", + "135.234.57.185", "20.106.113.235", "20.150.255.246", "4.227.35.224", "20.171.205.76", + "20.14.32.62", "134.33.12.230", "135.234.56.142", "20.125.67.33", "20.125.69.152", + "4.227.26.140", "4.227.40.234", "135.234.57.236", "20.25.168.115", "134.33.12.156", + "20.14.0.159", "135.234.56.178", "135.234.82.154", "135.234.57.227", "135.234.85.139", + "135.234.56.143", "134.33.10.88", "4.227.42.218", "4.227.25.94", "20.106.119.7", + "20.125.70.236", "135.234.57.237", "4.227.26.24", "4.227.25.66", "135.234.56.179", + "134.33.9.225", "20.14.38.176", "4.227.43.159", "134.33.30.78", "134.33.25.23", + "20.14.112.189", "4.236.31.57", "134.33.30.121", "20.14.32.63", "20.14.36.53", + "134.33.31.137", "20.14.35.60", "20.171.203.223", "134.33.29.111", "4.227.26.72", + "20.25.168.87", "20.150.251.124", "4.227.36.172", "4.227.30.80", "134.33.29.43", + "4.227.27.148", "20.150.251.125", "4.227.28.135", "20.150.253.71", "20.118.146.180", + "20.118.148.199", "20.118.144.32", "20.118.146.221", "4.227.76.26", "4.227.76.45", + "4.227.76.46", "4.227.76.20", "4.227.76.51", "4.227.76.18", "4.227.58.38", "134.33.25.222", + "4.236.8.251", "4.236.39.174", "20.14.40.97", "4.236.61.216", "20.125.75.87", + "20.14.115.60", "4.149.49.40", "20.118.152.204", "20.14.16.172", "134.33.15.10", + "51.57.119.195", "20.14.18.201", "134.33.15.35", "20.14.117.141", "20.14.118.111", + "134.33.15.172", "20.14.18.181", "20.14.18.216", "20.14.119.56", "51.57.118.243", + "20.14.62.62", "51.57.117.40", "134.33.15.34", "135.234.86.10", "135.234.82.155", + "134.33.14.147", "20.150.155.57", "134.33.15.133", "4.227.41.173", "20.14.119.233", + "4.227.34.162", "135.234.86.4", "134.33.15.11", "134.33.14.169", "134.33.14.159", + "134.33.14.54", "20.14.68.165", "134.33.14.168", "20.14.34.15", "20.150.152.185", + "134.33.13.150", "4.227.45.34", "4.227.35.225", "20.14.18.200", "20.14.18.180", + "20.14.62.63", "20.150.155.56", "135.234.82.151", "20.14.114.132", "20.106.115.55", + "20.14.59.52", "4.227.44.57", "20.118.153.31", "20.125.94.115", "134.33.13.131", + "20.14.36.5", "20.171.210.30", "51.57.119.141", "20.125.93.57", "134.33.15.19", + "134.33.14.158", "135.234.66.26", "20.14.113.82", "134.33.14.144", "134.33.14.55", + "51.57.119.193", "20.14.119.89", "51.57.119.238", "4.236.68.178"], "latestRevisionName": + "containerapp-e2e000003--0000001", "latestReadyRevisionName": "containerapp-e2e000003--jb0h14a", + "latestRevisionFqdn": "", "customDomainVerificationId": "7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA", + "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", + "value": "AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"}, {"name": "newsecret", "value": "test", "keyVaultUrl": "", "identity": ""}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": @@ -3856,7 +4499,7 @@ interactions: "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage": "2Gi"}}], "initContainers": null, "scale": {"minReplicas": 1, "maxReplicas": 1, "cooldownPeriod": 300, "pollingInterval": 30, "rules": null}, "volumes": null, "serviceBinds": null}, "eventStreamEndpoint": - "https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", + "https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", "delegatedIdentities": []}, "identity": {"type": "None"}}' headers: Accept: @@ -3868,35 +4511,35 @@ interactions: Connection: - keep-alive Content-Length: - - '5097' + - '5174' Content-Type: - application/json ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc cache-control: - no-cache content-length: - - '4325' + - '4391' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:55 GMT + - Fri, 11 Sep 2026 02:16:20 GMT expires: - '-1' pragma: @@ -3910,11 +4553,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/e4627207-58ef-4427-a6c3-4b2369eb1f34 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/461e4ff7-2af5-43ef-8da0-be837406053c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 8FC07E1B367E4862AA2AC34321F0CE97 Ref B: BY1AA1072318062 Ref C: 2026-03-24T05:55:55Z' + - 'Ref A: C036CB687AB84C00AFD9A9A927F05EB4 Ref B: SYD281080706025 Ref C: 2026-09-11T02:16:20Z' x-powered-by: - ASP.NET status: @@ -3934,26 +4577,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"InProgress","startTime":"2026-09-11T02:16:20.9745271"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:56 GMT + - Fri, 11 Sep 2026 02:16:21 GMT expires: - '-1' pragma: @@ -3967,11 +4610,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/cd0d9c91-24fa-4273-b382-463b525735fe + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b763f5a9-5994-473a-a36b-bc44acf02526 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C3E8134529584186A81D7578B1FA70AC Ref B: BY1AA1072318060 Ref C: 2026-03-24T05:55:56Z' + - 'Ref A: BCCFC380A67A4A90878C42356F378A59 Ref B: SYD281080709029 Ref C: 2026-09-11T02:16:21Z' x-powered-by: - ASP.NET status: @@ -3991,26 +4634,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"InProgress","startTime":"2026-09-11T02:16:20.9745271"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:58 GMT + - Fri, 11 Sep 2026 02:16:24 GMT expires: - '-1' pragma: @@ -4024,11 +4667,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/28d356eb-f8f8-4ef3-a998-85f5b6f4e5a2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/147200f5-62f8-4d25-ad4f-ca312ab6b98b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F44C52974FCF45F3AD96AD8891A2179F Ref B: SJC211051201045 Ref C: 2026-03-24T05:55:58Z' + - 'Ref A: 684B8D59CB1E46AC8ABC09989DF5F355 Ref B: SYD281080708034 Ref C: 2026-09-11T02:16:25Z' x-powered-by: - ASP.NET status: @@ -4048,26 +4691,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"InProgress","startTime":"2026-09-11T02:16:20.9745271"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:00 GMT + - Fri, 11 Sep 2026 02:16:29 GMT expires: - '-1' pragma: @@ -4081,11 +4724,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/0de5384e-2426-4071-bb90-912cb0ce516b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/4cdfd50b-ece0-43f2-b2fc-05fd1dd16e06 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E6DADEE961EC4C3EB591E37F165F1FF7 Ref B: SJC211051205011 Ref C: 2026-03-24T05:56:00Z' + - 'Ref A: 82B24C3C0DC841DF9F11F600D6292160 Ref B: SYD281080707025 Ref C: 2026-09-11T02:16:28Z' x-powered-by: - ASP.NET status: @@ -4105,140 +4748,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"Succeeded","startTime":"2026-09-11T02:16:20.9745271"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:56:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/e2312522-0df5-4178-9200-544aa5102489 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: CBEE3B84D5194D3FA61E1D861AAB363C Ref B: BY1AA1072317029 Ref C: 2026-03-24T05:56:03Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp secret set - Connection: - - keep-alive - ParameterSetName: - - -g -n --secrets - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:56:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c9a8bf35-6262-45dd-a8cb-a3d3ea278526 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: A9B8271806C0464F944A4C2B754EB8BE Ref B: SJC211051204025 Ref C: 2026-03-24T05:56:05Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp secret set - Connection: - - keep-alive - ParameterSetName: - - -g -n --secrets - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"Succeeded","startTime":"2026-03-24T05:55:55.897585"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '276' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:08 GMT + - Fri, 11 Sep 2026 02:16:32 GMT expires: - '-1' pragma: @@ -4252,11 +4781,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9f349a5d-3577-4e46-8eeb-5d24181c5fa6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bcfb3cc-bfb2-419a-899c-556bf8512504 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4EE0DEF8C3D6412CB4CE71E445B62105 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:56:08Z' + - 'Ref A: 42DABD6BBA9F439FA5068DAA1233FB0B Ref B: SYD281080705036 Ref C: 2026-09-11T02:16:31Z' x-powered-by: - ASP.NET status: @@ -4276,27 +4805,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '4749' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:08 GMT + - Fri, 11 Sep 2026 02:16:32 GMT expires: - '-1' pragma: @@ -4312,7 +4841,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CCC01C783D574577AA8501B30A001860 Ref B: SJC211051203053 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: C9DF0D44E85942B6BC92985BE5624FC8 Ref B: SYD281080711023 Ref C: 2026-09-11T02:16:33Z' x-powered-by: - ASP.NET status: @@ -4332,7 +4861,7 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -4343,9 +4872,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4353,27 +4884,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4381,33 +4918,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -4415,132 +4959,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -4548,97 +5121,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:08 GMT + - Fri, 11 Sep 2026 02:16:33 GMT expires: - '-1' pragma: @@ -4652,7 +5289,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6038F898746C41AA9A89E8B256D036F1 Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: 6024F8B8316F40FF9F49BDE55C4F886D Ref B: SYD281080712023 Ref C: 2026-09-11T02:16:34Z' status: code: 200 message: OK @@ -4670,27 +5307,27 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '4749' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:09 GMT + - Fri, 11 Sep 2026 02:16:34 GMT expires: - '-1' pragma: @@ -4706,7 +5343,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9C4E884AA8B4470EBE209FC2BA55208F Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: 7E53D89C88C44A6DA36F77F2938D5FB5 Ref B: SYD281080706031 Ref C: 2026-09-11T02:16:34Z' x-powered-by: - ASP.NET status: @@ -4728,18 +5365,18 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -4747,7 +5384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:09 GMT + - Fri, 11 Sep 2026 02:16:35 GMT expires: - '-1' pragma: @@ -4761,13 +5398,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/da4138f1-e787-439b-a80f-7f43415a263b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/dfa0fbb5-586a-471f-aa48-bfa5ff2d7d83 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 05F6652B679A4680B104BA81D538E845 Ref B: BY1AA1072317036 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: 781E4C7B81B546198F55EFDA1E3C29E4 Ref B: SYD281080705052 Ref C: 2026-09-11T02:16:35Z' x-powered-by: - ASP.NET status: @@ -4787,7 +5424,7 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -4798,9 +5435,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4808,27 +5447,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4836,33 +5481,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -4870,8 +5522,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4879,73 +5534,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -4962,25 +5635,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -4993,9 +5672,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -5003,97 +5684,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:09 GMT + - Fri, 11 Sep 2026 02:16:37 GMT expires: - '-1' pragma: @@ -5107,7 +5852,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3904BCFA04A74EDC9D306749BDAB337C Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:10Z' + - 'Ref A: 93E68BCDAB864C2D85A4081EC8E53291 Ref B: SYD281080706060 Ref C: 2026-09-11T02:16:36Z' status: code: 200 message: OK @@ -5125,27 +5870,27 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '4749' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:10 GMT + - Fri, 11 Sep 2026 02:16:37 GMT expires: - '-1' pragma: @@ -5161,7 +5906,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 00C600BB9AE6418B8F08CC34161515A2 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:56:10Z' + - 'Ref A: 8A65E08518FF4D6C8BE44D444C2C0294 Ref B: SYD281080710036 Ref C: 2026-09-11T02:16:38Z' x-powered-by: - ASP.NET status: @@ -5183,18 +5928,18 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -5202,7 +5947,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:10 GMT + - Fri, 11 Sep 2026 02:16:39 GMT expires: - '-1' pragma: @@ -5216,13 +5961,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8e2e9a85-aeba-435c-8c88-9f89f355079a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/f82c019d-d927-4936-b4b1-b8a8fbe0092d x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 41BDCDD27D774B498C9CAB78E9AF9137 Ref B: BY1AA1072319042 Ref C: 2026-03-24T05:56:10Z' + - 'Ref A: A2DE9198BFC040879239162183328ACB Ref B: SYD281080709062 Ref C: 2026-09-11T02:16:39Z' x-powered-by: - ASP.NET status: @@ -5231,47 +5976,48 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "East US", "systemData": {"createdBy": "test@example.com", "createdByType": - "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", - "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:55.7796029"}, + "West US 3", "systemData": {"createdBy": "test@example.com", "createdByType": + "User", "createdAt": "2026-09-11T02:15:37.9447156", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2026-09-11T02:16:20.7273503"}, "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", - "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", - "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", - "40.121.19.74", "40.121.19.40", "40.121.18.62", "40.121.18.244", "40.121.19.105", - "40.121.18.246", "40.121.18.166", "40.121.18.60", "40.121.18.21", "40.121.18.44", - "40.121.18.41", "40.121.18.248", "40.121.18.82", "40.121.19.108", "40.121.19.125", - "40.121.18.46", "40.117.125.130", "40.121.18.52", "40.121.18.33", "40.121.18.238", - "40.121.19.2", "40.121.19.122", "40.121.19.19", "40.121.18.114", "40.121.18.255", - "40.121.18.164", "40.117.121.106", "40.121.18.27", "40.121.18.156", "40.121.18.117", - "40.121.18.197", "40.121.18.133", "40.121.18.112", "40.121.18.106", "40.121.19.89", - "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", - "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", - "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", - "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", - "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", - "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", - "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", - "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", - "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", - "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", - "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", - "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", - "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", - "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", - "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", - "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", - "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", - "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", - "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", - "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", - "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", - "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], - "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": - "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": - "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": - {"secrets": [{"name": "newsecret", "value": "test"}], "activeRevisionsMode": + "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.125.76.124", + "20.125.74.58", "20.118.180.220", "20.125.72.245", "4.236.29.28", "4.236.28.230", + "4.236.28.126", "4.236.29.23", "4.236.28.206", "4.236.29.43", "20.14.119.70", + "135.234.107.40", "135.234.118.135", "20.14.118.252", "4.236.1.136", "134.33.25.140", + "20.14.66.96", "134.33.8.60", "20.171.203.222", "20.14.36.89", "20.150.255.247", + "135.234.57.229", "4.227.26.117", "135.234.57.184", "134.33.29.28", "134.33.13.26", + "135.234.57.185", "20.106.113.235", "20.150.255.246", "4.227.35.224", "20.171.205.76", + "20.14.32.62", "134.33.12.230", "135.234.56.142", "20.125.67.33", "20.125.69.152", + "4.227.26.140", "4.227.40.234", "135.234.57.236", "20.25.168.115", "134.33.12.156", + "20.14.0.159", "135.234.56.178", "135.234.82.154", "135.234.57.227", "135.234.85.139", + "135.234.56.143", "134.33.10.88", "4.227.42.218", "4.227.25.94", "20.106.119.7", + "20.125.70.236", "135.234.57.237", "4.227.26.24", "4.227.25.66", "135.234.56.179", + "134.33.9.225", "20.14.38.176", "4.227.43.159", "134.33.30.78", "134.33.25.23", + "20.14.112.189", "4.236.31.57", "134.33.30.121", "20.14.32.63", "20.14.36.53", + "134.33.31.137", "20.14.35.60", "20.171.203.223", "134.33.29.111", "4.227.26.72", + "20.25.168.87", "20.150.251.124", "4.227.36.172", "4.227.30.80", "134.33.29.43", + "4.227.27.148", "20.150.251.125", "4.227.28.135", "20.150.253.71", "20.118.146.180", + "20.118.148.199", "20.118.144.32", "20.118.146.221", "4.227.76.26", "4.227.76.45", + "4.227.76.46", "4.227.76.20", "4.227.76.51", "4.227.76.18", "4.227.58.38", "134.33.25.222", + "4.236.8.251", "4.236.39.174", "20.14.40.97", "4.236.61.216", "20.125.75.87", + "20.14.115.60", "4.149.49.40", "20.118.152.204", "20.14.16.172", "134.33.15.10", + "51.57.119.195", "20.14.18.201", "134.33.15.35", "20.14.117.141", "20.14.118.111", + "134.33.15.172", "20.14.18.181", "20.14.18.216", "20.14.119.56", "51.57.118.243", + "20.14.62.62", "51.57.117.40", "134.33.15.34", "135.234.86.10", "135.234.82.155", + "134.33.14.147", "20.150.155.57", "134.33.15.133", "4.227.41.173", "20.14.119.233", + "4.227.34.162", "135.234.86.4", "134.33.15.11", "134.33.14.169", "134.33.14.159", + "134.33.14.54", "20.14.68.165", "134.33.14.168", "20.14.34.15", "20.150.152.185", + "134.33.13.150", "4.227.45.34", "4.227.35.225", "20.14.18.200", "20.14.18.180", + "20.14.62.63", "20.150.155.56", "135.234.82.151", "20.14.114.132", "20.106.115.55", + "20.14.59.52", "4.227.44.57", "20.118.153.31", "20.125.94.115", "134.33.13.131", + "20.14.36.5", "20.171.210.30", "51.57.119.141", "20.125.93.57", "134.33.15.19", + "134.33.14.158", "135.234.66.26", "20.14.113.82", "134.33.14.144", "134.33.14.55", + "51.57.119.193", "20.14.119.89", "51.57.119.238", "4.236.68.178"], "latestRevisionName": + "containerapp-e2e000003--0000001", "latestReadyRevisionName": "containerapp-e2e000003--0000001", + "latestRevisionFqdn": "", "customDomainVerificationId": "7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA", + "configuration": {"secrets": [{"name": "newsecret", "value": "test"}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": "containerapp000002azurecrio-containerapp000002", "identity": ""}], "dapr": null, "runtime": null, "maxInactiveRevisions": 100, @@ -5281,7 +6027,7 @@ interactions: "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage": "2Gi"}}], "initContainers": null, "scale": {"minReplicas": 1, "maxReplicas": 1, "cooldownPeriod": 300, "pollingInterval": 30, "rules": null}, "volumes": null, "serviceBinds": null}, "eventStreamEndpoint": - "https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", + "https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", "delegatedIdentities": []}, "identity": {"type": "None"}}' headers: Accept: @@ -5293,13 +6039,13 @@ interactions: Connection: - keep-alive Content-Length: - - '4905' + - '4982' Content-Type: - application/json ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -5312,7 +6058,7 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -5320,7 +6066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:10 GMT + - Fri, 11 Sep 2026 02:16:39 GMT expires: - '-1' pragma: @@ -5332,11 +6078,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/61d8b356-d6f9-4b78-a688-de202ce08734 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/f39de379-0389-41b3-a518-c5c90c1857f5 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 816599FAEA9040529498C23C0DB57675 Ref B: SJC211051204007 Ref C: 2026-03-24T05:56:11Z' + - 'Ref A: E83C30116E724091A64F3DCCC1099F45 Ref B: SYD281080710060 Ref C: 2026-09-11T02:16:39Z' x-powered-by: - ASP.NET status: @@ -5356,7 +6102,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -5367,9 +6113,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5377,27 +6125,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5405,33 +6159,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -5439,132 +6200,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -5572,97 +6362,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:11 GMT + - Fri, 11 Sep 2026 02:16:41 GMT expires: - '-1' pragma: @@ -5676,7 +6530,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BFE51125256A4FF593D00AA543B49B09 Ref B: BY1AA1072316062 Ref C: 2026-03-24T05:56:11Z' + - 'Ref A: 7D90A200FFDC40DA84F100EBCFFD9654 Ref B: SYD281080708040 Ref C: 2026-09-11T02:16:41Z' status: code: 200 message: OK @@ -5694,7 +6548,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -5705,9 +6559,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5715,27 +6571,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5743,33 +6605,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -5777,132 +6646,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -5910,97 +6808,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:11 GMT + - Fri, 11 Sep 2026 02:16:41 GMT expires: - '-1' pragma: @@ -6014,7 +6976,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3512FA170F1C403CB2F3FB534F148289 Ref B: SJC211051204037 Ref C: 2026-03-24T05:56:11Z' + - 'Ref A: 6B6EBE348D0F4D398F37F46756D3E2B0 Ref B: SYD281080709040 Ref C: 2026-09-11T02:16:41Z' status: code: 200 message: OK @@ -6032,27 +6994,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '4749' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:12 GMT + - Fri, 11 Sep 2026 02:16:42 GMT expires: - '-1' pragma: @@ -6068,7 +7030,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 866E0B3AA9474449B8CEB1CC89614392 Ref B: BY1AA1072318036 Ref C: 2026-03-24T05:56:12Z' + - 'Ref A: EBAF4B65708140C9B43FF065823FDF7B Ref B: SYD281080712034 Ref C: 2026-09-11T02:16:42Z' x-powered-by: - ASP.NET status: @@ -6095,7 +7057,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -6106,19 +7068,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:56:12 GMT + - Fri, 11 Sep 2026 02:16:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=l-N9Vi3l9-TX_yOuu0QM4TcCIh9TNah7vnMU7t9wfU4plH-1xT11_xNhfceZ3-7flZBf4VtHOkqQSdbsxdwSESXpK4tKza1TT2D6KBseZI2gua_goueOdXclqPuqDpyfc1xFB94vLgBoxaburE9LsrUjIx4UHAsAx4mf0yNAE83dv32qWFTPwkoO4cM-MD5OU8bqOLWHCNmeRtLFnLFoInTRh8szc4lRcvw6jotcyiZ7yLQVjyET4jl-JlF_xOh_cY5ErFmf1lqTiGoCjlpSE4m5cVqCaZaZLUpaqqFqmH6yVhBwAN7vuBwHmo2cIbnVUEGEJ-aAL-d5oeqcmyidHg&h=pmoREmszgFD1_OGHIqPB5EsqTa58JsD3ZbxXmff0r7g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationResults/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=hEiVqoFqdpsgIU8gwY6LY2dsXdvaTjYfIQLYC9LHImHNYt7afjMKr0humUZk59T-Z44HTrpZVQDlhN02OC-zRinHopWBvGr5rGVKSHh0ACRsz3EDKCJ0O-yeitJ6GRqpbGhVUFZRmNz5dlRS2BuxZcxG7Uy2_DuPs_3_Kw0CFP5eo18l2f_bRVLf5On7BjXE63Z51EUXAWC1728TDPqGdEBzJhw5m0KD5_SqTt2cuaD5LZwXPxuZnrb5HgVbtmSELywt2RJjYNaaex4-UloOD174H-8YVc48Zy1iHXf3wezfCGzJJY6PdUszm7MaVSYCuyqbOadd5xBqgDGrMyxe5w&h=5OBkTTllAZu5O1HsPXkWIU-oqYbBLRlcsuG9Ihl_qIA pragma: - no-cache strict-transport-security: @@ -6128,11 +7090,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/673adef0-8a4a-4ae7-90fa-459031cbda47 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/ad8fa8c9-2e94-4135-82e2-a85be30da4d3 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 50349BF7FCED4677B7718B2E21CDACFF Ref B: SJC211051205025 Ref C: 2026-03-24T05:56:12Z' + - 'Ref A: E3FD394A1AB04B10A909AC6F7B0B0D27 Ref B: SYD281080712029 Ref C: 2026-09-11T02:16:43Z' x-powered-by: - ASP.NET status: @@ -6152,26 +7114,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:13 GMT + - Fri, 11 Sep 2026 02:16:45 GMT expires: - '-1' pragma: @@ -6185,11 +7147,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f1d73c06-d328-4481-bd02-d6cb554d2ed0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/7c5d64ac-49b6-4226-946e-e9d5dd8243bd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C85F4A1CBAE749AB95A369BE2FE653A4 Ref B: BY1AA1072315054 Ref C: 2026-03-24T05:56:12Z' + - 'Ref A: B838172E225C485FB2E7086D46EC5D8E Ref B: SYD281080710031 Ref C: 2026-09-11T02:16:44Z' x-powered-by: - ASP.NET status: @@ -6209,26 +7171,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:15 GMT + - Fri, 11 Sep 2026 02:16:48 GMT expires: - '-1' pragma: @@ -6242,11 +7204,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ab77b96a-55ff-4d3d-88a7-d4ceb38b6649 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/286c34c0-9af8-4fd0-b6b9-623a17ce3abd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 929C22EE3A894C58BFBEDB39B1C6F948 Ref B: SJC211051203039 Ref C: 2026-03-24T05:56:15Z' + - 'Ref A: 9CCF6247601F4D3D9F65A9AA1BC90DCE Ref B: SYD281080710034 Ref C: 2026-09-11T02:16:48Z' x-powered-by: - ASP.NET status: @@ -6266,26 +7228,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:17 GMT + - Fri, 11 Sep 2026 02:16:51 GMT expires: - '-1' pragma: @@ -6299,11 +7261,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/8c7e3e3b-9339-4236-8282-0ac9b47ab4ec + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/a646beb8-fe45-4d90-a04e-5ab8a1d10630 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BC38B9AD13DF436DBBD44334B085D9D4 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:18Z' + - 'Ref A: 4DB63B9D2BB441AC922E24D99B3C7A90 Ref B: SYD281080706042 Ref C: 2026-09-11T02:16:51Z' x-powered-by: - ASP.NET status: @@ -6323,26 +7285,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:20 GMT + - Fri, 11 Sep 2026 02:16:54 GMT expires: - '-1' pragma: @@ -6356,11 +7318,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/138620fe-f8a3-42d1-b4f7-cf00708613fa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e375a43e-55c5-4a3d-a40c-410f9d714cc1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A97A32F8D13148EA9B55A5612807DDA2 Ref B: SJC211051201025 Ref C: 2026-03-24T05:56:20Z' + - 'Ref A: BD9BFC77CC564FD69D4361D34916D682 Ref B: SYD281080710060 Ref C: 2026-09-11T02:16:54Z' x-powered-by: - ASP.NET status: @@ -6380,26 +7342,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"Succeeded","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"Succeeded","startTime":"2026-09-11T02:16:44.0304181"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:22 GMT + - Fri, 11 Sep 2026 02:16:58 GMT expires: - '-1' pragma: @@ -6413,11 +7375,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5e65ca00-a2e0-43ce-9e54-f06f1a5be6ae + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ef723786-f1a9-470a-9f24-b34a712bd29d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9276638915DC4EED942414019D1DCF38 Ref B: SJC211051203019 Ref C: 2026-03-24T05:56:23Z' + - 'Ref A: 2BBC2FCF02CE4B1EAE615E046F7A130B Ref B: SYD281080712031 Ref C: 2026-09-11T02:16:57Z' x-powered-by: - ASP.NET status: @@ -6437,27 +7399,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:43.8054567"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4683' + - '4750' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:23 GMT + - Fri, 11 Sep 2026 02:16:58 GMT expires: - '-1' pragma: @@ -6473,7 +7435,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B57503384A9F4B7BB36952039BC66D51 Ref B: BY1AA1072317040 Ref C: 2026-03-24T05:56:23Z' + - 'Ref A: 80ABBB38652341D59B1555CF90953B6C Ref B: SYD281080712062 Ref C: 2026-09-11T02:16:59Z' x-powered-by: - ASP.NET status: @@ -6493,7 +7455,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -6504,9 +7466,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6514,27 +7478,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6542,33 +7512,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -6576,8 +7553,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6585,73 +7565,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -6668,25 +7666,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -6699,9 +7703,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -6709,97 +7715,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:23 GMT + - Fri, 11 Sep 2026 02:17:00 GMT expires: - '-1' pragma: @@ -6813,7 +7883,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5F16576371564FF4BBEB56A9598B2BCF Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: 516DAC547D3846B1BE7E354A991FFB99 Ref B: SYD281080709031 Ref C: 2026-09-11T02:17:00Z' status: code: 200 message: OK @@ -6831,7 +7901,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -6842,9 +7912,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6852,27 +7924,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6880,33 +7958,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -6914,8 +7999,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6923,73 +8011,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -7006,25 +8112,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -7037,9 +8149,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -7047,97 +8161,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:24 GMT + - Fri, 11 Sep 2026 02:17:00 GMT expires: - '-1' pragma: @@ -7151,7 +8329,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B7E7B0AC0D5F4273816CB34096E6AEA0 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: B451123F854D4F339ACD896AB24C545E Ref B: SYD281080707023 Ref C: 2026-09-11T02:17:01Z' status: code: 200 message: OK @@ -7169,27 +8347,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:43.8054567"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4683' + - '4750' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:24 GMT + - Fri, 11 Sep 2026 02:17:01 GMT expires: - '-1' pragma: @@ -7205,7 +8383,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 052B2DF708074132B5A2338ACBC4FE65 Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: D0476F8C8EE6455EA56D2550E45AF47E Ref B: SYD281080712036 Ref C: 2026-09-11T02:17:01Z' x-powered-by: - ASP.NET status: @@ -7232,7 +8410,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -7243,19 +8421,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:56:25 GMT + - Fri, 11 Sep 2026 02:17:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=nGnObUS2fzfEzjaPvemoLxSKDlfTkJCahp05Q2qA-eXnVJZwM8KuzADfuoW1Eu5e3Lb2IjScnIwMBNaBRe6RYlV-6Wx6nHWsyTXoQogkM5-Q3lWQ-Z-v9wtrTrcLjg-qY8VUKdIVHr2aYyvif-opISYgG1UF-_9QLGksw8_eqbG368ZzlVFq--uhh_u9vm-ChgXmxAxqhURZj6Ncl5Bs3KaDa4oPVCzB_te1ibwXFOetcPFm-BNsXFJRXt4jQ-FbGH5E5SyiWuWbOxpqpaixpMi_Jjck9wjSGZ6BVsHNLPAelX1Ta0B8ZoMlh8brrWtwGP-CwQ3TOd_RLy_K5L6qdQ&h=B-ERuNnmQhnJ7wz89GCBR3A7pv7KjBBYxn2GzWq24Wg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationResults/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&t=639246898231669609&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZDowiMmZMds-oKfdCUXMLtSlIymvkQA6AcPoIvryzpPhCml0YG45nSsMr71zHAHHKLER_q6UcDm9_OIFHEiljiY3X-oSzzUNfSm3z2ornRt1nHoe5_o08Q0ZnX7nDBP9N1xVweS0kcdUX69_xkKsycc3k7qrnqfPEbN5hoMe9tNj3O6IjxGRYczc9JyOlSP14BqRsv98zq3Srcu429l8xbgT4u8Gc_Fmem7DFfi4FAyNuC4WKI8mWJ2vbFqcRgyMbG-FA4nKgeKnhP6LB-RORouIo4uI9txNtwrDKPYhM-4Tx45FjajNUQvOt8jQw1tTeEVoR-NQ4KTgy1ZJbPrgfw&h=pNDK0S7idvZ9C68VdR4f4pKNZ2kkAcR6zw7nqzwmnbE pragma: - no-cache strict-transport-security: @@ -7265,11 +8443,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/644b3668-11d5-4fc1-945f-e2d788b6b71e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/c92cf691-c6ce-46f2-b067-87c4a8af7a27 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: F124A9D6074E4E8E8B4B390D15943D5E Ref B: BY1AA1072315025 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: 13B13728AE254D1D83C5B0F6C6C0595A Ref B: SYD281080707054 Ref C: 2026-09-11T02:17:02Z' x-powered-by: - ASP.NET status: @@ -7289,83 +8467,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '278' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:56:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1d741503-7667-4e92-a836-5c35e0ee1a6d - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: C23740FAE9194EB8B8633D0624232D30 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:56:26Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp update - Connection: - - keep-alive - ParameterSetName: - - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"InProgress","startTime":"2026-09-11T02:17:03.1169231"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:28 GMT + - Fri, 11 Sep 2026 02:17:04 GMT expires: - '-1' pragma: @@ -7379,11 +8500,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/3f7dc4ea-9be6-41e5-9542-3b2aded364d8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/89071e4d-f9a8-44e3-8129-66e8664304d8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EAE9CD227D3B46EE93FBB094BD519488 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:28Z' + - 'Ref A: 09A0BC163CF949B3AE29A385E30CA1B8 Ref B: SYD281080705040 Ref C: 2026-09-11T02:17:04Z' x-powered-by: - ASP.NET status: @@ -7403,26 +8524,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"InProgress","startTime":"2026-09-11T02:17:03.1169231"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:31 GMT + - Fri, 11 Sep 2026 02:17:07 GMT expires: - '-1' pragma: @@ -7436,11 +8557,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/e6428943-ab1b-4af5-8286-1b1601b4b46f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/2ddf7188-62a3-4b7c-b241-b00c3ace0d6a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A51578B47C7F43E18CD66F04A94E55D7 Ref B: SJC211051201047 Ref C: 2026-03-24T05:56:31Z' + - 'Ref A: 09C1DD831E774BC6ADD398A43C32338F Ref B: SYD281080712029 Ref C: 2026-09-11T02:17:07Z' x-powered-by: - ASP.NET status: @@ -7460,26 +8581,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"InProgress","startTime":"2026-09-11T02:17:03.1169231"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:33 GMT + - Fri, 11 Sep 2026 02:17:10 GMT expires: - '-1' pragma: @@ -7493,11 +8614,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/58824e6e-f0bf-4615-9342-e424d737ef50 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/363686d6-096c-4f89-9729-77719765d9fa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F025D55194CE4297AB0881E8DBB14934 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:56:34Z' + - 'Ref A: 3029520CDFDE48EB9D38D988155CAFB2 Ref B: SYD281080708036 Ref C: 2026-09-11T02:17:10Z' x-powered-by: - ASP.NET status: @@ -7517,18 +8638,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"Succeeded","startTime":"2026-09-11T02:17:03.1169231"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -7536,64 +8657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/e7c8a6fe-b0b0-4f62-9cf3-681088abba32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 4C649878B57F45A5B51C8C1B88BAC0FF Ref B: BY1AA1072320025 Ref C: 2026-03-24T05:56:36Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp update - Connection: - - keep-alive - ParameterSetName: - - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"Succeeded","startTime":"2026-03-24T05:56:25.8970205"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:56:38 GMT + - Fri, 11 Sep 2026 02:17:13 GMT expires: - '-1' pragma: @@ -7607,11 +8671,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/470adce1-4b33-445f-a6e6-47ee0472fb82 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/30195de4-f2ee-4752-8c79-7900d96aef06 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D46AAE94DAF04CCBBD9BDDFCDDE3B288 Ref B: BY1AA1072315062 Ref C: 2026-03-24T05:56:38Z' + - 'Ref A: 12ACA52DC6FD44288EB39B67BE2E193B Ref B: SYD281080710060 Ref C: 2026-09-11T02:17:14Z' x-powered-by: - ASP.NET status: @@ -7631,27 +8695,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:25.6259606"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:17:02.916963"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4637' + - '4703' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:39 GMT + - Fri, 11 Sep 2026 02:17:15 GMT expires: - '-1' pragma: @@ -7667,7 +8731,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73A95C8B6DC442C1B32BF6BCBD52D953 Ref B: SJC211051205045 Ref C: 2026-03-24T05:56:39Z' + - 'Ref A: FA0FC7897E8346F59D9270FDD96DDD48 Ref B: SYD281080709042 Ref C: 2026-09-11T02:17:14Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml index 5994906ab1c..171708b5e4d 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,9 +24,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -34,27 +36,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -62,25 +70,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -88,7 +102,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -96,8 +111,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -105,73 +123,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -188,25 +224,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -219,9 +261,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -229,97 +273,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:34 GMT + - Fri, 11 Sep 2026 02:13:32 GMT expires: - '-1' pragma: @@ -333,7 +441,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 81DF483E783C4D98933C5543A57F49B7 Ref B: BN1AA2051015039 Ref C: 2026-04-09T18:46:35Z' + - 'Ref A: 7ADF8DF67CDE418D9AB90E1ACD5391A4 Ref B: SYD281080707036 Ref C: 2026-09-11T02:13:32Z' status: code: 200 message: OK @@ -351,27 +459,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:36 GMT + - Fri, 11 Sep 2026 02:13:33 GMT expires: - '-1' pragma: @@ -387,14 +495,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B3844DBEEF01430999E2AF077AAD7CF2 Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:46:37Z' + - 'Ref A: A415DEB81646406D8F938EACD295BE60 Ref B: SYD281080711031 Ref C: 2026-09-11T02:13:33Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -406,29 +514,29 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '91' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1627' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:49 GMT + - Fri, 11 Sep 2026 02:13:45 GMT expires: - '-1' pragma: @@ -440,13 +548,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/98d11168-e94f-45d5-a6bb-a63e6b018f0b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6a29ccaf-e6c6-4f8c-805d-a43082611d96 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 2C4F85ADDD2A4A8989516354E85B068A Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:46:40Z' + - 'Ref A: C61AF8E346D349F1B93F35B851C1DBB9 Ref B: SYD281080708029 Ref C: 2026-09-11T02:13:34Z' status: code: 200 message: OK @@ -464,22 +572,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' headers: cache-control: - no-cache content-length: - - '6965' + - '4432' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:51 GMT + - Fri, 11 Sep 2026 02:13:46 GMT expires: - '-1' pragma: @@ -493,7 +600,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5D0DD95D11064C2183A55E115718AB53 Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:46:51Z' + - 'Ref A: BC20DF1BFB734BF98933887741DBFA33 Ref B: SYD281080707054 Ref C: 2026-09-11T02:13:46Z' status: code: 200 message: OK @@ -511,23 +618,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1627' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:54 GMT + - Fri, 11 Sep 2026 02:13:47 GMT expires: - '-1' pragma: @@ -541,7 +648,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 80A4186B485446ADB2F5D43C48DF40DE Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:46:53Z' + - 'Ref A: 153A7FDF36364E0E9905F3F89B0C7A89 Ref B: SYD281080706025 Ref C: 2026-09-11T02:13:47Z' status: code: 200 message: OK @@ -559,22 +666,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acrouvbstr6isw5ks3lbrkhd.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acrbdm2ci64i3lpdam37v6qk.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '20786' + - '15555' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:56 GMT + - Fri, 11 Sep 2026 02:13:49 GMT expires: - '-1' pragma: @@ -590,11 +696,10 @@ interactions: - '' - '' - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C1FE7AD308FC4EB7A7D4C5BFE020CBCD Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:46:56Z' + - 'Ref A: E60B16A097F54834B1D21DC7E6F72F0C Ref B: SYD281080709062 Ref C: 2026-09-11T02:13:48Z' status: code: 200 message: OK @@ -617,9 +722,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -629,17 +734,18 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Apr 2026 18:46:59 GMT + - Fri, 11 Sep 2026 02:13:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896309622540&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=CIUiUcnUb1f2JgM4OO8fWZOid1afG7mgDPUDPZbTanNoUJ2NMQVpZ7YPdKV3lYzXPm6e8ts6HadOvK0dk6pqPPlofkqfCszLxcDXwNxNLe49ZX5fMQk0bnlojRfs7-JILNDmEX-Uj_78PiY8tsk7xAyKCFM1fMjBwQHVJQa4eiXgE27rQxXAZqtKFNxO2pk0z8_3HddruzCQKrgzFgiraJOC02GE0yyy67cvseRam_c-tRKZ6VhujDk22OEfXqa7jlyOiKgW3Ea1PzfJmDnJDN7SwdLuxsixgs0j06HYYVuGABi2NYiiCRceI_KKllsCe9pOhVdMnXVgAlhQkFUa5g&h=0QUrF4FKVYHIe46tQayZ6uu7L6psmUxdIfARR8-Iwig pragma: - no-cache strict-transport-security: @@ -649,13 +755,63 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2a36d3ee-e3fe-4e51-ba97-733be268c807 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/0ffe5883-4144-4c5a-8f7d-c22edaa5218a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 65836825BBD84F259BA9D087A4696890 Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:46:59Z' + - 'Ref A: 6CDA41C0CDF94808AD8F3848095EF186 Ref B: SYD281080710040 Ref C: 2026-09-11T02:13:50Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896309622540&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=CIUiUcnUb1f2JgM4OO8fWZOid1afG7mgDPUDPZbTanNoUJ2NMQVpZ7YPdKV3lYzXPm6e8ts6HadOvK0dk6pqPPlofkqfCszLxcDXwNxNLe49ZX5fMQk0bnlojRfs7-JILNDmEX-Uj_78PiY8tsk7xAyKCFM1fMjBwQHVJQa4eiXgE27rQxXAZqtKFNxO2pk0z8_3HddruzCQKrgzFgiraJOC02GE0yyy67cvseRam_c-tRKZ6VhujDk22OEfXqa7jlyOiKgW3Ea1PzfJmDnJDN7SwdLuxsixgs0j06HYYVuGABi2NYiiCRceI_KKllsCe9pOhVdMnXVgAlhQkFUa5g&h=0QUrF4FKVYHIe46tQayZ6uu7L6psmUxdIfARR8-Iwig + response: + body: + string: '{"status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:13:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896319841039&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=UyeTkHMIWTFRFY4tavvIpX3OFvY_GJAmnAFKQ3l6WgLArqjJwRkcuP-KbzYJJszMmhmiIRkm0mb0U44-Y-_MQ4bkf5VmNkRH0fBjQZbkMvTmcb7QBfJYV9GyZzXQ42uBG28gInlwjAlwoYFe8txD8qGlHD2z6dV-G9_QByD_itTq9-nL1k9Ne3fqqIN4rgHzmN0ABKLCQnZnkW6Yo0YDiBqU0BupJvU24n7nrcngMSbK8k6L2pR66PTh93DReAje_3F0VoWnp2YBRzKRznhF-6ZEGYfWX-UW0ecWYQCwl6QMQ4koAWXVkfGuuw13BnLZ5PYpw2OZYm4t1TD9oDR4Tw&h=v4J7t2pdnYh2VcDtyPSuFznZnGXCX4wAR6tKNzNPyhk + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/abb98c65-f850-4758-8986-fdad54988549 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AD57B792C36E4829B87E15851C517DF6 Ref B: SYD281080705042 Ref C: 2026-09-11T02:13:51Z' status: code: 202 message: Accepted @@ -673,9 +829,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896319841039&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=UyeTkHMIWTFRFY4tavvIpX3OFvY_GJAmnAFKQ3l6WgLArqjJwRkcuP-KbzYJJszMmhmiIRkm0mb0U44-Y-_MQ4bkf5VmNkRH0fBjQZbkMvTmcb7QBfJYV9GyZzXQ42uBG28gInlwjAlwoYFe8txD8qGlHD2z6dV-G9_QByD_itTq9-nL1k9Ne3fqqIN4rgHzmN0ABKLCQnZnkW6Yo0YDiBqU0BupJvU24n7nrcngMSbK8k6L2pR66PTh93DReAje_3F0VoWnp2YBRzKRznhF-6ZEGYfWX-UW0ecWYQCwl6QMQ4koAWXVkfGuuw13BnLZ5PYpw2OZYm4t1TD9oDR4Tw&h=v4J7t2pdnYh2VcDtyPSuFznZnGXCX4wAR6tKNzNPyhk response: body: string: '{"status":"Succeeded"}' @@ -687,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:02 GMT + - Fri, 11 Sep 2026 02:14:03 GMT expires: - '-1' pragma: @@ -699,11 +855,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1c4d9862-aa0b-4ddc-89b7-9440dc9968c8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/db8b4756-82c9-46ea-93c1-124ec05b2268 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5C210DB918394B91973684B8EA718635 Ref B: BN1AA2051013025 Ref C: 2026-04-09T18:47:02Z' + - 'Ref A: 51F27AA32CE44412BC41EC88583EBC35 Ref B: SYD281080709054 Ref C: 2026-09-11T02:14:02Z' status: code: 200 message: OK @@ -721,22 +877,21 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' headers: cache-control: - no-cache content-length: - - '6965' + - '5033' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:04 GMT + - Fri, 11 Sep 2026 02:14:04 GMT expires: - '-1' pragma: @@ -750,7 +905,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 969EE93254A04D409B992E7D64DBE1F6 Ref B: BN1AA2051014019 Ref C: 2026-04-09T18:47:05Z' + - 'Ref A: E58C036CA8794A7694183B779F1C7956 Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:03Z' status: code: 200 message: OK @@ -768,23 +923,23 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1627' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:07 GMT + - Fri, 11 Sep 2026 02:14:06 GMT expires: - '-1' pragma: @@ -798,7 +953,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 96153C972B9A4EE6AA1240D3C76A7F2E Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:47:06Z' + - 'Ref A: 20DC60F8754F4667BB9E70003F29A5E1 Ref B: SYD281080709042 Ref C: 2026-09-11T02:14:04Z' status: code: 200 message: OK @@ -818,15 +973,15 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000002","passwords":[{"name":"password","value":"CH5xJ62L2oWH4orARwLtSZ2hn3ULrHHrSDLlfqV10vyDgTffDVAHJQQJ99CIACMsfrFEqg7NAAACAZCRzhLg"},{"name":"password2","value":"CtqH1Z0pA1AjiHv2aGf4mEq7ORTXkFtit40Y3leXgqQraq9FrzGLJQQJ99CIACMsfrFEqg7NAAACAZCRC7ft"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -834,7 +989,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:09 GMT + - Fri, 11 Sep 2026 02:14:06 GMT expires: - '-1' pragma: @@ -846,13 +1001,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/d003e1a0-c5c1-4722-857f-15ca515817b0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/583be1e0-7aa1-4639-8183-e27834d23bfb x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1D7D7F7E39F4420B958C04A12856D9FF Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:47:09Z' + - 'Ref A: 5967C7DB27254F5E9FE4B483D1FBF6DE Ref B: SYD281080708034 Ref C: 2026-09-11T02:14:06Z' status: code: 200 message: OK @@ -872,7 +1027,7 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -883,9 +1038,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -893,27 +1050,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -921,25 +1084,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -947,7 +1116,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -955,8 +1125,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -964,73 +1137,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1047,25 +1238,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1078,9 +1275,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1088,97 +1287,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:11 GMT + - Fri, 11 Sep 2026 02:14:07 GMT expires: - '-1' pragma: @@ -1192,7 +1455,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8717E93CE85241DD8621CED1BF48EFBB Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:11Z' + - 'Ref A: A6775722080E4683BF6870D68773A5C1 Ref B: SYD281080705029 Ref C: 2026-09-11T02:14:08Z' status: code: 200 message: OK @@ -1212,27 +1475,27 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:13 GMT + - Fri, 11 Sep 2026 02:14:08 GMT expires: - '-1' pragma: @@ -1248,7 +1511,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EA334DE36513489BB40E1955127D65C6 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:47:13Z' + - 'Ref A: 92999F809DB841EFAA7565B7CB6C0D6A Ref B: SYD281080707060 Ref C: 2026-09-11T02:14:08Z' x-powered-by: - ASP.NET status: @@ -1270,7 +1533,7 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1281,9 +1544,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1291,27 +1556,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1319,25 +1590,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1345,7 +1622,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1353,8 +1631,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1362,73 +1643,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1445,25 +1744,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1476,9 +1781,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1486,97 +1793,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:14 GMT + - Fri, 11 Sep 2026 02:14:09 GMT expires: - '-1' pragma: @@ -1590,15 +1961,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A33AF7EBE16C435D8B369243CC412549 Ref B: BN1AA2051012037 Ref C: 2026-04-09T18:47:15Z' + - 'Ref A: C2F3162C191546E088DB6821AD668BE6 Ref B: SYD281080705034 Ref C: 2026-09-11T02:14:09Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": [{"name": "acr000002azurecrio-443-acr000002", "value": - "***"}], + "CH5xJ62L2oWH4orARwLtSZ2hn3ULrHHrSDLlfqV10vyDgTffDVAHJQQJ99CIACMsfrFEqg7NAAACAZCRzhLg"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1618,7 +1989,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1113' + - '1117' Content-Type: - application/json ParameterSetName: @@ -1626,30 +1997,30 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:10.8238256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:10.8238256Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 cache-control: - no-cache content-length: - - '6762' + - '4071' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:18 GMT + - Fri, 11 Sep 2026 02:14:12 GMT expires: - '-1' pragma: @@ -1663,11 +2034,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/f9b94549-f461-470a-8227-dd57ca7699da + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/f3113268-6f1b-4e57-86fb-df47fdd820db x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 093094C3F4DE41009F580DD914A369BF Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:16Z' + - 'Ref A: 01232BC1B9034B1588810C494B75ED96 Ref B: SYD281080708060 Ref C: 2026-09-11T02:14:10Z' x-powered-by: - ASP.NET status: @@ -1689,26 +2060,85 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"InProgress","startTime":"2026-04-09T18:47:17.6055813"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe","name":"7c4684aa-34b2-4ae8-b184-02337ebfdafe","status":"InProgress","startTime":"2026-09-11T02:14:11.2061875"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '282' + - '283' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/def1485d-da85-4905-afba-2c9553481cb8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F3BB9D9133A14BA4A47BBD91F4A1420F Ref B: SYD281080706040 Ref C: 2026-09-11T02:14:14Z' + 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: + - -g -n --image --environment --registry-server --registry-username --registry-password + --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count + --cron-expression + User-Agent: + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe","name":"7c4684aa-34b2-4ae8-b184-02337ebfdafe","status":"InProgress","startTime":"2026-09-11T02:14:11.2061875"}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, + 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '283' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:20 GMT + - Fri, 11 Sep 2026 02:14:17 GMT expires: - '-1' pragma: @@ -1722,11 +2152,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d5d49e6c-c6e9-498b-b9c3-a63ec8315ba1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/69ed78d4-3882-454e-afe6-cefc50d95ae0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9AE9F17A837D4A7593DAF12327BDDE84 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:47:20Z' + - 'Ref A: 7E8D2491A97749A5AB4CF5B0F51891CB Ref B: SYD281080705062 Ref C: 2026-09-11T02:14:17Z' x-powered-by: - ASP.NET status: @@ -1748,26 +2178,26 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"Succeeded","startTime":"2026-04-09T18:47:17.6055813"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe","name":"7c4684aa-34b2-4ae8-b184-02337ebfdafe","status":"Succeeded","startTime":"2026-09-11T02:14:11.2061875"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '281' + - '282' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:23 GMT + - Fri, 11 Sep 2026 02:14:20 GMT expires: - '-1' pragma: @@ -1781,11 +2211,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/88c578ab-d53d-490e-8b5a-1d32ef22dd93 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/d81945e0-d420-42bb-a910-77a3472a0811 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7335F136400F487CA6BADB27B36308E4 Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:24Z' + - 'Ref A: 2EB0E248F5F142AD9C2E2AAC0AADD7BF Ref B: SYD281080705062 Ref C: 2026-09-11T02:14:20Z' x-powered-by: - ASP.NET status: @@ -1807,28 +2237,28 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:10.8238256","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:10.8238256"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6759' + - '4068' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:26 GMT + - Fri, 11 Sep 2026 02:14:21 GMT expires: - '-1' pragma: @@ -1844,7 +2274,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FFB7195E58DE4B80B3CA6B6CF47D2401 Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:25Z' + - 'Ref A: 72FA3F56B324496C9313FFA1B8084190 Ref B: SYD281080711025 Ref C: 2026-09-11T02:14:21Z' x-powered-by: - ASP.NET status: @@ -1864,7 +2294,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1875,9 +2305,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1885,27 +2317,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1913,25 +2351,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1939,7 +2383,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1947,8 +2392,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1956,73 +2404,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2039,25 +2505,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2070,9 +2542,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2080,97 +2554,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:27 GMT + - Fri, 11 Sep 2026 02:14:22 GMT expires: - '-1' pragma: @@ -2184,7 +2722,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 966F1477B51A42D4B7DDEE67DB90ADCF Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:47:28Z' + - 'Ref A: 158BAB28FDD345A49649F456D4EE8B1F Ref B: SYD281080707023 Ref C: 2026-09-11T02:14:22Z' status: code: 200 message: OK @@ -2202,28 +2740,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:10.8238256","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:10.8238256"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6759' + - '4068' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:29 GMT + - Fri, 11 Sep 2026 02:14:23 GMT expires: - '-1' pragma: @@ -2239,7 +2777,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 16CBA3CFCE244C7492EB31B6B5F5D4B9 Ref B: BN1AA2051014031 Ref C: 2026-04-09T18:47:29Z' + - 'Ref A: 7FA3D53F51DA49F3901C9A70F94BD067 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:23Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml index 4ca8e0e1aaa..47fc3c735b7 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,9 +24,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -34,27 +36,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -62,25 +70,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -88,7 +102,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -96,8 +111,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -105,73 +123,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -188,25 +224,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -219,9 +261,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -229,97 +273,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:21 GMT + - Fri, 11 Sep 2026 02:14:30 GMT expires: - '-1' pragma: @@ -333,7 +441,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D79E4ABE17ED479DA18AB68266456F42 Ref B: BN1AA2051014035 Ref C: 2026-04-09T18:39:21Z' + - 'Ref A: C72BAD6198F14731B0502E323A72D970 Ref B: SYD281080705040 Ref C: 2026-09-11T02:14:30Z' status: code: 200 message: OK @@ -351,27 +459,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:21 GMT + - Fri, 11 Sep 2026 02:14:30 GMT expires: - '-1' pragma: @@ -387,14 +495,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 100F81752CDD43F783029C74CAC1807E Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:22Z' + - 'Ref A: A033274CD029456D8F95E26DAD9F160D Ref B: SYD281080707054 Ref C: 2026-09-11T02:14:30Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -406,29 +514,29 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '91' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1592' + - '1628' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:32 GMT + - Fri, 11 Sep 2026 02:14:42 GMT expires: - '-1' pragma: @@ -440,13 +548,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/e7859cc0-887c-46bc-8d6b-42554cb1b658 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/bad37c7c-8a57-4e52-802d-a152286671e9 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: ABB76CC525DC4ECC89A1B310523E84AB Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:39:24Z' + - 'Ref A: 10DE184897A54C71BD8C6CEA198EB0B5 Ref B: SYD281080709034 Ref C: 2026-09-11T02:14:31Z' status: code: 200 message: OK @@ -464,22 +572,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' headers: cache-control: - no-cache content-length: - - '6363' + - '6235' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:33 GMT + - Fri, 11 Sep 2026 02:14:43 GMT expires: - '-1' pragma: @@ -493,7 +600,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 52E5459154AD422EB7322ADCA46053CC Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:34Z' + - 'Ref A: 19340854264644C3BD69A4B7CB07BC6C Ref B: SYD281080707054 Ref C: 2026-09-11T02:14:43Z' status: code: 200 message: OK @@ -511,23 +618,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1592' + - '1628' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:36 GMT + - Fri, 11 Sep 2026 02:14:45 GMT expires: - '-1' pragma: @@ -541,7 +648,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 055CD56627984DFE806E3C4F204F0F91 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:39:35Z' + - 'Ref A: 4782FA0F0523418D9D434902D8B49256 Ref B: SYD281080705040 Ref C: 2026-09-11T02:14:44Z' status: code: 200 message: OK @@ -559,22 +666,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acrbdm2ci64i3lpdam37v6qk.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp3lfto542omn5.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19083' + - '17289' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:38 GMT + - Fri, 11 Sep 2026 02:14:46 GMT expires: - '-1' pragma: @@ -590,11 +696,10 @@ interactions: - '' - '' - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A0C1E174972742D7B0110AD636B9F7A0 Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:38Z' + - 'Ref A: 7E60A617CBA44E919B9475C7639BB052 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:46Z' status: code: 200 message: OK @@ -617,9 +722,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -629,17 +734,18 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Apr 2026 18:39:39 GMT + - Fri, 11 Sep 2026 02:14:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896894130178&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JI1pZMZH4F4aoOWRPT82iJl8yf0J5hHpKQGgW3IG1iOqpu3YLl05kkGY4xm9w-fxJFR29so2cLvk3Y62XftzRSTXbWpJ00qOPrtuHmhNT7O41KDIe11Jr0KG0oEIhCwXIzWlW9-9SpwWHZciSafuo6svbH8a6e5pWfbV2cVHWJlwe3h8oH9jYxuA7HFTt8DTP61u94_Nd4BKDr8IFuhWYyyIYeiLcpZ18G-GtQ6qjE238dWYgtJ3_hnspUK9K8zRUJLUdHMCM0Uuo7NLz4Kex3uyubylXofVYUxUTUjkkFp2a2QO2o5np0WrwPyy2c4EIwzzIODpC9z2TQOK9mIX-w&h=nPumL1ZP9tFrVRyX_Ep4dI6xFaAyuIJKDwTZTGZH2-E pragma: - no-cache strict-transport-security: @@ -649,13 +755,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d6ec942e-9589-4198-84e7-eb5d4c31a39c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/74ab3a5f-aa88-4ec0-a3a8-7646dffda695 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 208C27AFA6854D4BA96E4E22B660581C Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:39Z' + - 'Ref A: 3D01BE8DE5A24AE99BE24B33CEF38892 Ref B: SYD281080709031 Ref C: 2026-09-11T02:14:48Z' status: code: 202 message: Accepted @@ -673,9 +779,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896894130178&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JI1pZMZH4F4aoOWRPT82iJl8yf0J5hHpKQGgW3IG1iOqpu3YLl05kkGY4xm9w-fxJFR29so2cLvk3Y62XftzRSTXbWpJ00qOPrtuHmhNT7O41KDIe11Jr0KG0oEIhCwXIzWlW9-9SpwWHZciSafuo6svbH8a6e5pWfbV2cVHWJlwe3h8oH9jYxuA7HFTt8DTP61u94_Nd4BKDr8IFuhWYyyIYeiLcpZ18G-GtQ6qjE238dWYgtJ3_hnspUK9K8zRUJLUdHMCM0Uuo7NLz4Kex3uyubylXofVYUxUTUjkkFp2a2QO2o5np0WrwPyy2c4EIwzzIODpC9z2TQOK9mIX-w&h=nPumL1ZP9tFrVRyX_Ep4dI6xFaAyuIJKDwTZTGZH2-E response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -687,11 +793,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:41 GMT + - Fri, 11 Sep 2026 02:14:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896907767927&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=EDjT9zYREL0wsBbsFL1quzwtnPOQ19-X2s8QkTwTgf8zfG_ljDh5WcsFcJR4TbmQXONLIcApfwhrIph5pDW8-SizRkyjlVsWrflvXjuct9RPMbN_MUmTEh2e4BAoZpluzQmILwefriMHH0yAy7d4XH8xheCkRv6FDCDzLNK__rASSYah_ryjYKtgG34DwX5_4OBbEJSL-bjNJYHgFsQPqWh6Hf12ZPe6jkHtlIuDuLmRlllq_yymZkRtnyOdk8evirJhoDei_bXXntICFu0pLsSCIivY9V9v3KlhpPoQzw2KwjYk0Ia0tWeGvJW3FwpjV6wG5h0FFJ3eHxf5zUxHRw&h=lXgsjYOYEGseBqv0trt1PTHMoFZalZXiqQBTTCS30ts pragma: - no-cache strict-transport-security: @@ -701,11 +807,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/55671bb4-e502-4109-b3a4-2d9d8a15f4a8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/18ee15d9-e3c3-4c73-80f0-0cebfc3768c8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FE9C3EF657EE4579AF7E2BCBFF379AA3 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:39:41Z' + - 'Ref A: 467DED2BEB2044C88991079A2B3B9B9F Ref B: SYD281080710060 Ref C: 2026-09-11T02:14:50Z' status: code: 202 message: Accepted @@ -723,9 +829,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896907767927&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=EDjT9zYREL0wsBbsFL1quzwtnPOQ19-X2s8QkTwTgf8zfG_ljDh5WcsFcJR4TbmQXONLIcApfwhrIph5pDW8-SizRkyjlVsWrflvXjuct9RPMbN_MUmTEh2e4BAoZpluzQmILwefriMHH0yAy7d4XH8xheCkRv6FDCDzLNK__rASSYah_ryjYKtgG34DwX5_4OBbEJSL-bjNJYHgFsQPqWh6Hf12ZPe6jkHtlIuDuLmRlllq_yymZkRtnyOdk8evirJhoDei_bXXntICFu0pLsSCIivY9V9v3KlhpPoQzw2KwjYk0Ia0tWeGvJW3FwpjV6wG5h0FFJ3eHxf5zUxHRw&h=lXgsjYOYEGseBqv0trt1PTHMoFZalZXiqQBTTCS30ts response: body: string: '{"status":"Succeeded"}' @@ -737,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:52 GMT + - Fri, 11 Sep 2026 02:15:01 GMT expires: - '-1' pragma: @@ -749,11 +855,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/bd6cccd9-9a0a-483d-9b5d-e1112d3434d6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/1e81ddd8-afe0-4ee3-9ef7-fff1ea08ac06 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 71803075B0394E0696867BAEF523461C Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:52Z' + - 'Ref A: D17C729B87244E1093F2B2F2F724383F Ref B: SYD281080707054 Ref C: 2026-09-11T02:15:01Z' status: code: 200 message: OK @@ -772,7 +878,7 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -783,9 +889,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -793,27 +901,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -821,25 +935,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -847,7 +967,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -855,8 +976,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -864,73 +988,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -947,25 +1089,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -978,9 +1126,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -988,97 +1138,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:53 GMT + - Fri, 11 Sep 2026 02:15:03 GMT expires: - '-1' pragma: @@ -1092,7 +1306,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 86D2A59EF3D04A31B46BF4B61E5D4F11 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:39:54Z' + - 'Ref A: 4ED5AF30AD0A4D4E972BD1D91B37B79A Ref B: SYD281080710034 Ref C: 2026-09-11T02:15:03Z' status: code: 200 message: OK @@ -1111,27 +1325,27 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:54 GMT + - Fri, 11 Sep 2026 02:15:03 GMT expires: - '-1' pragma: @@ -1147,7 +1361,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4C59E4AF517E4ACEBFBE7C2896A307BB Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:55Z' + - 'Ref A: E87A218F89964B0981E69C2204B73836 Ref B: SYD281080705034 Ref C: 2026-09-11T02:15:04Z' x-powered-by: - ASP.NET status: @@ -1168,7 +1382,7 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1179,9 +1393,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1189,27 +1405,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1217,25 +1439,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1243,7 +1471,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1251,8 +1480,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1260,73 +1492,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1343,25 +1593,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1374,9 +1630,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1384,97 +1642,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:56 GMT + - Fri, 11 Sep 2026 02:15:04 GMT expires: - '-1' pragma: @@ -1488,7 +1810,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AA230AA512F94FCF833078E7FF1AD076 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:39:56Z' + - 'Ref A: 583B4072CD3745C5B18672230C8624D0 Ref B: SYD281080709052 Ref C: 2026-09-11T02:15:05Z' status: code: 200 message: OK @@ -1507,22 +1829,21 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' headers: cache-control: - no-cache content-length: - - '6363' + - '6232' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:57 GMT + - Fri, 11 Sep 2026 02:15:05 GMT expires: - '-1' pragma: @@ -1536,7 +1857,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9AC1E5DF27A84B179AEEA970BD938B7C Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:57Z' + - 'Ref A: 3FAEAAE57075467AB28BCF87C7CB464A Ref B: SYD281080706025 Ref C: 2026-09-11T02:15:05Z' status: code: 200 message: OK @@ -1555,23 +1876,23 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1592' + - '1628' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:59 GMT + - Fri, 11 Sep 2026 02:15:08 GMT expires: - '-1' pragma: @@ -1585,7 +1906,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8E88063BCB744109834A12B9738E1D0B Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:59Z' + - 'Ref A: 385A24E415FF4B46A53299FBA2E16C8B Ref B: SYD281080706023 Ref C: 2026-09-11T02:15:06Z' status: code: 200 message: OK @@ -1606,15 +1927,15 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"4Zgzkj4Ky47yI4Zo1g8EswgGGUkrEYGZ95OC3LZJ25G97CIgxMg1JQQJ99CIACMsfrFEqg7NAAACAZCR7Wlo"},{"name":"password2","value":"DRyYZUya17bbIMyfkRi1IIpy75V3Q9UYvnCX01Q9woW9ZXb5SvoJJQQJ99CIACMsfrFEqg7NAAACAZCRbKk5"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1622,7 +1943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:01 GMT + - Fri, 11 Sep 2026 02:15:09 GMT expires: - '-1' pragma: @@ -1634,21 +1955,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3218cb1b-7714-43c3-911e-77df9149fcdd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c5392382-9dd4-4da8-ada6-c6319850d4ad x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 700ADF7EE3E34DB49784D78D4BA76AA1 Ref B: BN1AA2051014025 Ref C: 2026-04-09T18:40:01Z' + - 'Ref A: E0D34B8BE48E496596B94DAC51E97460 Ref B: SYD281080707052 Ref C: 2026-09-11T02:15:09Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "***"}], + "4Zgzkj4Ky47yI4Zo1g8EswgGGUkrEYGZ95OC3LZJ25G97CIgxMg1JQQJ99CIACMsfrFEqg7NAAACAZCR7Wlo"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1668,37 +1989,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1097' + - '1101' Content-Type: - application/json ParameterSetName: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:11.7690834Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:11.7690834Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ cache-control: - no-cache content-length: - - '6710' + - '4019' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:05 GMT + - Fri, 11 Sep 2026 02:15:12 GMT expires: - '-1' pragma: @@ -1712,11 +2033,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2b2af31d-3904-49aa-8c31-cbdd5ce263b9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/a7090838-839d-4f03-a3bc-7421a020df20 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: E0FCBF5CE2E84377A600596BCE208499 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:40:02Z' + - 'Ref A: 7F67906ED55746E3996B36C8BEDCE614 Ref B: SYD281080705023 Ref C: 2026-09-11T02:15:11Z' x-powered-by: - ASP.NET status: @@ -1737,26 +2058,26 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54","name":"3e717b99-06d6-4d4b-aac2-024613bc5d54","status":"InProgress","startTime":"2026-09-11T02:15:12.2109618"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '282' + - '283' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:06 GMT + - Fri, 11 Sep 2026 02:15:13 GMT expires: - '-1' pragma: @@ -1770,11 +2091,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2f5ee287-de12-4045-a480-6ddd550c16fa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/5c60b598-fd66-4d8c-a8c8-73f0219dc6db x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0280B490106341D88CFBEB937445EAE3 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:40:06Z' + - 'Ref A: C94DAE94E1814B6FB3D533E455F1488B Ref B: SYD281080708029 Ref C: 2026-09-11T02:15:13Z' x-powered-by: - ASP.NET status: @@ -1795,26 +2116,26 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54","name":"3e717b99-06d6-4d4b-aac2-024613bc5d54","status":"InProgress","startTime":"2026-09-11T02:15:12.2109618"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '282' + - '283' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:09 GMT + - Fri, 11 Sep 2026 02:15:16 GMT expires: - '-1' pragma: @@ -1828,11 +2149,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/cae3d9c2-99d2-443f-a256-0d45a1a811d4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4e728705-1bb3-4161-813d-d6c2c94ec0d0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 425F1797C326411098C34645F653B0CD Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:40:10Z' + - 'Ref A: 21D7ED6D2F65490CB9002E6FB0E61BDF Ref B: SYD281080710036 Ref C: 2026-09-11T02:15:16Z' x-powered-by: - ASP.NET status: @@ -1853,26 +2174,26 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"Succeeded","startTime":"2026-04-09T18:40:03.8491944"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54","name":"3e717b99-06d6-4d4b-aac2-024613bc5d54","status":"Succeeded","startTime":"2026-09-11T02:15:12.2109618"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '281' + - '282' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:12 GMT + - Fri, 11 Sep 2026 02:15:20 GMT expires: - '-1' pragma: @@ -1886,11 +2207,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7217f9cb-3ece-440a-b441-6a09ebd2c092 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/e4c2f8e9-b816-4f59-a6fd-2bcc9a8575eb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 04716B3FF17C4B8781604E4B9184B5A5 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:13Z' + - 'Ref A: ACA466B3ABEE4337A21ED091DB96913A Ref B: SYD281080710029 Ref C: 2026-09-11T02:15:20Z' x-powered-by: - ASP.NET status: @@ -1911,28 +2232,28 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:11.7690834","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:11.7690834"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6743' + - '4052' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:14 GMT + - Fri, 11 Sep 2026 02:15:22 GMT expires: - '-1' pragma: @@ -1948,7 +2269,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B84F3253837E4C72860E5BC974F43DC7 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:14Z' + - 'Ref A: 55530CF1556B47D7908282D7BC0855A8 Ref B: SYD281080710040 Ref C: 2026-09-11T02:15:21Z' x-powered-by: - ASP.NET status: @@ -1968,7 +2289,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1979,9 +2300,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1989,27 +2312,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2017,25 +2346,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2043,7 +2378,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2051,8 +2387,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2060,73 +2399,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2143,25 +2500,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2174,9 +2537,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2184,97 +2549,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:16 GMT + - Fri, 11 Sep 2026 02:15:23 GMT expires: - '-1' pragma: @@ -2288,7 +2717,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 18DEF2BCDF744F248D088A28AE173CD5 Ref B: BN1AA2051015051 Ref C: 2026-04-09T18:40:16Z' + - 'Ref A: C762427D48604AE3ACD4805A02C83D1C Ref B: SYD281080708036 Ref C: 2026-09-11T02:15:23Z' status: code: 200 message: OK @@ -2306,28 +2735,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:11.7690834","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:11.7690834"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6743' + - '4052' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:17 GMT + - Fri, 11 Sep 2026 02:15:25 GMT expires: - '-1' pragma: @@ -2343,7 +2772,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5CE77785D034439397FAC293550F7FEC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:40:17Z' + - 'Ref A: 3974BF9331274AF2AECB842E5D14D5FA Ref B: SYD281080710034 Ref C: 2026-09-11T02:15:24Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml index 73325194a10..64120878b16 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,9 +24,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -34,27 +36,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -62,25 +70,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -88,7 +102,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -96,8 +111,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -105,73 +123,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -188,25 +224,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -219,9 +261,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -229,97 +273,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:46 GMT + - Fri, 11 Sep 2026 02:13:32 GMT expires: - '-1' pragma: @@ -333,7 +441,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 935694BF77FE4F489DA734B06EAD4422 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:32:46Z' + - 'Ref A: 710FAA2033B849E5993C1470A4AE5F26 Ref B: SYD281080705052 Ref C: 2026-09-11T02:13:33Z' status: code: 200 message: OK @@ -351,27 +459,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:47 GMT + - Fri, 11 Sep 2026 02:13:33 GMT expires: - '-1' pragma: @@ -387,14 +495,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5DF609807C014522A61BCFAF26C14FB6 Ref B: BN1AA2051015021 Ref C: 2026-04-09T18:32:47Z' + - 'Ref A: 2B0CE2B5CA1B4BC688C643C4ABF438D0 Ref B: SYD281080710036 Ref C: 2026-09-11T02:13:33Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -406,29 +514,29 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '91' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1628' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:57 GMT + - Fri, 11 Sep 2026 02:13:47 GMT expires: - '-1' pragma: @@ -440,13 +548,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/ab59e23b-3481-45b7-be3c-a155148dd568 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/7b2d1907-c6f7-4f73-ba5f-a78ad09a6e6b x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 9D22F35D42194E88980BD08345D78EF0 Ref B: BN1AA2051012011 Ref C: 2026-04-09T18:32:49Z' + - 'Ref A: 7BD54ACD39D341BF80C30AB5D2C27BED Ref B: SYD281080709042 Ref C: 2026-09-11T02:13:34Z' status: code: 200 message: OK @@ -464,22 +572,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '5033' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:59 GMT + - Fri, 11 Sep 2026 02:13:48 GMT expires: - '-1' pragma: @@ -493,7 +600,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C406F4E866A442E486CBEFE2C002240E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:32:59Z' + - 'Ref A: E0DFC5A788C54856AE0267DC5C924024 Ref B: SYD281080711052 Ref C: 2026-09-11T02:13:48Z' status: code: 200 message: OK @@ -511,23 +618,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1628' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:59 GMT + - Fri, 11 Sep 2026 02:13:49 GMT expires: - '-1' pragma: @@ -541,7 +648,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DACC7961348A4026AAD64B1FABA2D290 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:33:00Z' + - 'Ref A: 8AD93AB68C6B41DAA78012932D36E902 Ref B: SYD281080711062 Ref C: 2026-09-11T02:13:49Z' status: code: 200 message: OK @@ -559,22 +666,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acrjrhsylrlc3qevqmmgrrcf.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '19086' + - '15555' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:02 GMT + - Fri, 11 Sep 2026 02:13:50 GMT expires: - '-1' pragma: @@ -590,11 +696,10 @@ interactions: - '' - '' - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 8FFD0E23271F4E378A7504390687E463 Ref B: BN1AA2051015023 Ref C: 2026-04-09T18:33:01Z' + - 'Ref A: 4466DACCB20C4C88A9A12DA44E1BCE38 Ref B: SYD281080707029 Ref C: 2026-09-11T02:13:50Z' status: code: 200 message: OK @@ -617,9 +722,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -629,17 +734,18 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Apr 2026 18:33:04 GMT + - Fri, 11 Sep 2026 02:13:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896331939374&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=qSs89QYG0JnZnOIwDM6IDVLYxONXnFAryFTXdRcx9f7gobJMfXsoDrmFlDRk3cZOYJlSWeqgQkrJWtoIfj-JYZSWxMm2CpHLi9RLRfc1qiLsW0kPUHmmKc1re07lm9Z85bsanSMzgTKHF-lk0NN__i9oqApRuwTC8-Sv4hMfBMfZPPp0PBIRqN2qCnIJLbuDZ2FfVKoHLiTDihsHgO8wItj4wdFqnTtMx8YH_O_34JoELxacHrUpD8XS7EwK33SZrZCpi8BDKatEAG_azqzgdjwohbPYR814mTp41xyxWn4ShNWb0JkKrXlsTA50JaZl-JINeJHbABsvwf5gfYIb4g&h=pKIpqexPjtHNwUOezH1jEah274LkdNxXIGsSFBJvhqo pragma: - no-cache strict-transport-security: @@ -649,13 +755,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/c07d67de-0f42-4a8f-9101-4f4996a9c554 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/386f90a4-6dfb-467e-b2bf-af19a66a760b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1012E8D384A540D7B2B2D30B58232633 Ref B: BN1AA2051015029 Ref C: 2026-04-09T18:33:03Z' + - 'Ref A: BEFC612A2A98443C9D78023578E314F7 Ref B: SYD281080708025 Ref C: 2026-09-11T02:13:52Z' status: code: 202 message: Accepted @@ -673,9 +779,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896331939374&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=qSs89QYG0JnZnOIwDM6IDVLYxONXnFAryFTXdRcx9f7gobJMfXsoDrmFlDRk3cZOYJlSWeqgQkrJWtoIfj-JYZSWxMm2CpHLi9RLRfc1qiLsW0kPUHmmKc1re07lm9Z85bsanSMzgTKHF-lk0NN__i9oqApRuwTC8-Sv4hMfBMfZPPp0PBIRqN2qCnIJLbuDZ2FfVKoHLiTDihsHgO8wItj4wdFqnTtMx8YH_O_34JoELxacHrUpD8XS7EwK33SZrZCpi8BDKatEAG_azqzgdjwohbPYR814mTp41xyxWn4ShNWb0JkKrXlsTA50JaZl-JINeJHbABsvwf5gfYIb4g&h=pKIpqexPjtHNwUOezH1jEah274LkdNxXIGsSFBJvhqo response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -687,11 +793,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:05 GMT + - Fri, 11 Sep 2026 02:13:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896346286201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=hPaqCJ1BapqMfrkZ9XmFPVBNx-ZhJHaZWuche4cVE46uT5vanwia3ARhagXrAL2Utz3RqlPOXqfb7RMSl7geKIGksbVxFRBEGUDYD_6IILilueYi2QVAPY0KagKfKUPf_tBuo5QNPSqmgPtkISr2dEW3VG7e8uDdAXcuZk0VCfKO5J8HdaeRtZzkm6oiw5u7FVriokT70i3TJdUoV3O0BQanP6P2Ib7FPZxNqoRU4yzUxR7y5JHhiHKtTCA14hLJt3sckx8ePe1BFCKiKoDwT6vtxSjM9L_5vlvoq19bMqrh3SLqbLPctCGwSMg5rcz5c0HlbaqIqV27fjafPS9iVA&h=LJbMP7DSzuz3dxMqJva11CwtCSROKVvHrVxBsRzDdUI pragma: - no-cache strict-transport-security: @@ -701,11 +807,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/522bd5fc-1bfb-4482-bc19-4ba9adaa6e17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/64dce04d-16e9-4153-b23a-4cde28ae1bdd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9462B692FCA9409D9D16339D52E8616B Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:05Z' + - 'Ref A: 0C31D7AF18DD4E59B6D4E993FEF86135 Ref B: SYD281080706034 Ref C: 2026-09-11T02:13:53Z' status: code: 202 message: Accepted @@ -723,9 +829,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896346286201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=hPaqCJ1BapqMfrkZ9XmFPVBNx-ZhJHaZWuche4cVE46uT5vanwia3ARhagXrAL2Utz3RqlPOXqfb7RMSl7geKIGksbVxFRBEGUDYD_6IILilueYi2QVAPY0KagKfKUPf_tBuo5QNPSqmgPtkISr2dEW3VG7e8uDdAXcuZk0VCfKO5J8HdaeRtZzkm6oiw5u7FVriokT70i3TJdUoV3O0BQanP6P2Ib7FPZxNqoRU4yzUxR7y5JHhiHKtTCA14hLJt3sckx8ePe1BFCKiKoDwT6vtxSjM9L_5vlvoq19bMqrh3SLqbLPctCGwSMg5rcz5c0HlbaqIqV27fjafPS9iVA&h=LJbMP7DSzuz3dxMqJva11CwtCSROKVvHrVxBsRzDdUI response: body: string: '{"status":"Succeeded"}' @@ -737,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:16 GMT + - Fri, 11 Sep 2026 02:14:05 GMT expires: - '-1' pragma: @@ -749,11 +855,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/a843b716-c68d-4d00-bbf7-8aba702d0ffa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/2a70a9bd-f360-48a3-9e1c-7ddd0f9f804a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8894CADC7C5B4832950EBDF9E6A80642 Ref B: BN1AA2051013029 Ref C: 2026-04-09T18:33:16Z' + - 'Ref A: 03ED24F46134476FA2F135D546498CFE Ref B: SYD281080708025 Ref C: 2026-09-11T02:14:05Z' status: code: 200 message: OK @@ -771,22 +877,21 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' headers: cache-control: - no-cache content-length: - - '6365' + - '5033' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:17 GMT + - Fri, 11 Sep 2026 02:14:06 GMT expires: - '-1' pragma: @@ -800,7 +905,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 25013C196C964BD2A036CF7F2CCB5ECC Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:33:17Z' + - 'Ref A: D369F430DB07445C9457D453054029DB Ref B: SYD281080705029 Ref C: 2026-09-11T02:14:06Z' status: code: 200 message: OK @@ -818,23 +923,23 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1628' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:19 GMT + - Fri, 11 Sep 2026 02:14:08 GMT expires: - '-1' pragma: @@ -848,7 +953,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 940C3E473F1443049CD3EC10C7214075 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:33:19Z' + - 'Ref A: DDFAAD5E4087440B9927A113BD75E705 Ref B: SYD281080712031 Ref C: 2026-09-11T02:14:07Z' status: code: 200 message: OK @@ -868,15 +973,15 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"},{"name":"password2","value":"DVZkvWV7HIapGzL5FZ4Xi9xlzDC2xJU3XeKzI6AJrtU4jeLr0qsxJQQJ99CIACMsfrFEqg7NAAACAZCRABv6"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -884,7 +989,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:20 GMT + - Fri, 11 Sep 2026 02:14:09 GMT expires: - '-1' pragma: @@ -896,13 +1001,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/db30c45f-f6a3-419a-a04c-8076870826b2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e9ef9e5e-7030-4221-a5ef-9c222a2f7c92 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 83E48A07885D4308A191192885072445 Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:33:20Z' + - 'Ref A: 0770852510BE441E981683FF61C4A197 Ref B: SYD281080706060 Ref C: 2026-09-11T02:14:08Z' status: code: 200 message: OK @@ -921,7 +1026,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -932,9 +1037,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -942,27 +1049,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -970,25 +1083,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -996,7 +1115,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1004,8 +1124,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1013,73 +1136,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1096,25 +1237,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1127,9 +1274,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1137,97 +1286,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:22 GMT + - Fri, 11 Sep 2026 02:14:10 GMT expires: - '-1' pragma: @@ -1241,7 +1454,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FCE26477FA874AE4BD33D82497129109 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:33:22Z' + - 'Ref A: 05533EB6C7CF4313809F7F37086E389F Ref B: SYD281080709062 Ref C: 2026-09-11T02:14:10Z' status: code: 200 message: OK @@ -1260,27 +1473,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:23 GMT + - Fri, 11 Sep 2026 02:14:10 GMT expires: - '-1' pragma: @@ -1296,7 +1509,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3F443B86EF314F78BAE30E2BFD947002 Ref B: BN1AA2051015025 Ref C: 2026-04-09T18:33:23Z' + - 'Ref A: 9944C419FB15457DADD703A9DCDB393E Ref B: SYD281080705062 Ref C: 2026-09-11T02:14:10Z' x-powered-by: - ASP.NET status: @@ -1317,7 +1530,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1328,9 +1541,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1338,27 +1553,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1366,25 +1587,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1392,7 +1619,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1400,8 +1628,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1409,73 +1640,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1492,25 +1741,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1523,9 +1778,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1533,97 +1790,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:24 GMT + - Fri, 11 Sep 2026 02:14:10 GMT expires: - '-1' pragma: @@ -1637,15 +1958,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DFEC64F36CEB4003829B4938A7FA4A3E Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:24Z' + - 'Ref A: 6CD0BE8CBC6E4B78B4CCF35AEF9D00C1 Ref B: SYD281080710060 Ref C: 2026-09-11T02:14:11Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": [{"name": "acr000003azurecrio-443-acr000003", "value": - "***"}], + "6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, @@ -1665,36 +1986,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1192' + - '1196' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:12.8755176Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:12.8755176Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE cache-control: - no-cache content-length: - - '7048' + - '4358' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:26 GMT + - Fri, 11 Sep 2026 02:14:12 GMT expires: - '-1' pragma: @@ -1708,11 +2029,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3871540a-7a46-4dc6-a69b-de9b56d9fac2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/67f77e89-e089-4dbd-a214-d2543b405ab6 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 12CDD39E935A4B7A8A5B7E8E1B6341D4 Ref B: BN1AA2051014023 Ref C: 2026-04-09T18:33:25Z' + - 'Ref A: 98EEFE2421F44A3A875A228237256A3D Ref B: SYD281080708040 Ref C: 2026-09-11T02:14:12Z' x-powered-by: - ASP.NET status: @@ -1733,26 +2054,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:27 GMT + - Fri, 11 Sep 2026 02:14:13 GMT expires: - '-1' pragma: @@ -1766,11 +2087,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/4c88da92-c7ec-43b5-b317-33e9fde772a5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/62cab82e-2b76-4576-94a6-f17272aaaa19 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F9233BAF3569419996A0E1FA8088943F Ref B: BN1AA2051012017 Ref C: 2026-04-09T18:33:28Z' + - 'Ref A: 49A6BAD4E737463B993CA67B68D8C065 Ref B: SYD281080707029 Ref C: 2026-09-11T02:14:14Z' x-powered-by: - ASP.NET status: @@ -1791,26 +2112,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:31 GMT + - Fri, 11 Sep 2026 02:14:16 GMT expires: - '-1' pragma: @@ -1824,11 +2145,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/060ef7e5-15bb-4fb2-8ec5-8a7adef9f3ea + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/4c8d5514-b5c7-43bc-b7f8-4214993ebe7a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F8B8363DA5BF4923B53875A2B05CC309 Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:33:31Z' + - 'Ref A: CD5934BECB574277BB2E6A54089E7C35 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:17Z' x-powered-by: - ASP.NET status: @@ -1849,26 +2170,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:34 GMT + - Fri, 11 Sep 2026 02:14:20 GMT expires: - '-1' pragma: @@ -1882,11 +2203,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/7e664e93-3760-4628-ba57-67dc10fc9985 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/33f41dbe-669f-4df9-9bd7-9123260645b6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3B2C9E30C5424A44B6BF3EB1342F5A79 Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:33:34Z' + - 'Ref A: 1AFC8217934542A19417725446E5AB24 Ref B: SYD281080707023 Ref C: 2026-09-11T02:14:20Z' x-powered-by: - ASP.NET status: @@ -1907,26 +2228,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:38 GMT + - Fri, 11 Sep 2026 02:14:23 GMT expires: - '-1' pragma: @@ -1940,11 +2261,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e1e7f557-17ee-4d00-869c-9736a043ba07 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1da90169-d8ee-44e9-aeb7-b23e428853c2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 48BD08A5D6794290A20D875CA56C15A8 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:33:38Z' + - 'Ref A: D2AA4AA8F42B421EA4DE621CCF64D76D Ref B: SYD281080706042 Ref C: 2026-09-11T02:14:23Z' x-powered-by: - ASP.NET status: @@ -1965,26 +2286,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"Succeeded","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"Succeeded","startTime":"2026-09-11T02:14:13.2832086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:41 GMT + - Fri, 11 Sep 2026 02:14:26 GMT expires: - '-1' pragma: @@ -1998,11 +2319,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/f8084cb3-71eb-423f-b1f1-9c4a78b02f73 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/5e9e1b2b-8066-47a2-8a53-bb09e57cdbf0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C1AEB49CE7A748718236187D0F3F8226 Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:33:41Z' + - 'Ref A: D0E202C1186A49EF87855D94EF52241F Ref B: SYD281080712060 Ref C: 2026-09-11T02:14:26Z' x-powered-by: - ASP.NET status: @@ -2023,27 +2344,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:12.8755176","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:12.8755176"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--wo6jze3","latestReadyRevisionName":"aca000002--wo6jze3","latestRevisionFqdn":"aca000002--wo6jze3.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7681' + - '4994' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:42 GMT + - Fri, 11 Sep 2026 02:14:27 GMT expires: - '-1' pragma: @@ -2059,7 +2380,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A32FE836747A4DD8A801E2CB0C3BF1AD Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:42Z' + - 'Ref A: 4826C46D34E147F8BDC95CC825D0F916 Ref B: SYD281080708052 Ref C: 2026-09-11T02:14:27Z' x-powered-by: - ASP.NET status: @@ -2079,7 +2400,7 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2090,9 +2411,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2100,27 +2423,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2128,25 +2457,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2154,7 +2489,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2162,8 +2498,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2171,73 +2510,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2254,25 +2611,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2285,9 +2648,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2295,97 +2660,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:44 GMT + - Fri, 11 Sep 2026 02:14:28 GMT expires: - '-1' pragma: @@ -2397,9 +2826,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: EC81DEB16E0C4F0CA2EB0A4B6388BDCE Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:33:44Z' + - 'Ref A: 8BFB091618CC44239FFF1D956B9C4B6B Ref B: SYD281080705029 Ref C: 2026-09-11T02:14:29Z' status: code: 200 message: OK @@ -2417,27 +2846,27 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:12.8755176","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:12.8755176"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--wo6jze3","latestReadyRevisionName":"aca000002--wo6jze3","latestRevisionFqdn":"aca000002--wo6jze3.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7681' + - '4994' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:46 GMT + - Fri, 11 Sep 2026 02:14:29 GMT expires: - '-1' pragma: @@ -2453,7 +2882,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3A2F6B8B36B04807A1E7F56A911D5AC3 Ref B: BN1AA2051012029 Ref C: 2026-04-09T18:33:45Z' + - 'Ref A: 532FB8B231F3414E8B55A950FAA128CE Ref B: SYD281080710060 Ref C: 2026-09-11T02:14:29Z' x-powered-by: - ASP.NET status: @@ -2475,18 +2904,18 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"***"}]}' + string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2494,7 +2923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:48 GMT + - Fri, 11 Sep 2026 02:14:32 GMT expires: - '-1' pragma: @@ -2508,13 +2937,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/7d0d9b73-ad40-4e82-bfa3-193e8d0bb5e1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/632e62c5-811d-41ad-b388-31d055bab698 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 84D1EA72669F406EA501976FC4886A18 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:47Z' + - 'Ref A: 99D5B33247904993AC6519F65ACA129E Ref B: SYD281080712029 Ref C: 2026-09-11T02:14:31Z' x-powered-by: - ASP.NET status: @@ -2535,7 +2964,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2546,9 +2975,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2556,27 +2987,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2584,25 +3021,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2610,7 +3053,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2618,8 +3062,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2627,73 +3074,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2710,25 +3175,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2741,9 +3212,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2751,97 +3224,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:49 GMT + - Fri, 11 Sep 2026 02:14:32 GMT expires: - '-1' pragma: @@ -2855,7 +3392,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C77679F8F174482EB4F403773474F244 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:49Z' + - 'Ref A: CFD6C3614988404BAB296012F048FE35 Ref B: SYD281080711052 Ref C: 2026-09-11T02:14:33Z' status: code: 200 message: OK @@ -2874,27 +3411,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:51 GMT + - Fri, 11 Sep 2026 02:14:33 GMT expires: - '-1' pragma: @@ -2910,7 +3447,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FC9214C9F82348C7A1E82FDD22177055 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:33:51Z' + - 'Ref A: EC468F802B5B4A6DAEBC00D480255029 Ref B: SYD281080708042 Ref C: 2026-09-11T02:14:34Z' x-powered-by: - ASP.NET status: @@ -2931,7 +3468,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2942,9 +3479,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2952,27 +3491,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2980,25 +3525,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -3006,7 +3557,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3014,8 +3566,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3023,73 +3578,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -3106,25 +3679,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -3137,9 +3716,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3147,97 +3728,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:52 GMT + - Fri, 11 Sep 2026 02:14:35 GMT expires: - '-1' pragma: @@ -3251,15 +3896,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0D074FA4E3DE4D45AB14EB3D470B3796 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:33:52Z' + - 'Ref A: 85B64B7C667141839D3836752F9D4D09 Ref B: SYD281080706023 Ref C: 2026-09-11T02:14:35Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "***"}], + "6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, @@ -3279,36 +3924,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1176' + - '1180' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:36.6940315Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:36.6940315Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI cache-control: - no-cache content-length: - - '7032' + - '4342' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:55 GMT + - Fri, 11 Sep 2026 02:14:36 GMT expires: - '-1' pragma: @@ -3322,11 +3967,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/0c457244-70bc-4ec7-b3e2-7efb30ec9a8e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/04bb7418-2ddb-4928-a9b9-132b81866f1f x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 93BDC2F67E684F32B0098BD941B76E50 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:33:54Z' + - 'Ref A: EC555FC6DBD347D98BDAC69B522AA2E1 Ref B: SYD281080708034 Ref C: 2026-09-11T02:14:36Z' x-powered-by: - ASP.NET status: @@ -3347,26 +3992,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:56 GMT + - Fri, 11 Sep 2026 02:14:37 GMT expires: - '-1' pragma: @@ -3380,11 +4025,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7eef5cd0-059c-443d-8f9e-51dbc47fb520 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/82b2db52-7db4-4ce4-8d3f-a3d53f7d8950 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7523EC4659204296AFD52448CCE7CE85 Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:56Z' + - 'Ref A: 4B79252D8FB7434CA2C9927D6FB6057D Ref B: SYD281080706054 Ref C: 2026-09-11T02:14:37Z' x-powered-by: - ASP.NET status: @@ -3405,26 +4050,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:59 GMT + - Fri, 11 Sep 2026 02:14:41 GMT expires: - '-1' pragma: @@ -3438,11 +4083,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/4b2d4182-7784-4e1e-993f-d6899c9a7aa7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6e3bf7d0-58da-4339-bbbd-656ee571cf0b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1E1F8F2A0B074C938D8D04BCD262DAB4 Ref B: BN1AA2051014029 Ref C: 2026-04-09T18:34:00Z' + - 'Ref A: 2147A1BBDD6840D885B7FA4212933FC3 Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:41Z' x-powered-by: - ASP.NET status: @@ -3463,26 +4108,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:02 GMT + - Fri, 11 Sep 2026 02:14:44 GMT expires: - '-1' pragma: @@ -3496,11 +4141,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/8fcb7cf1-0bd9-48f8-b8e2-4ae1ed9475b8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/71f27512-ec66-4cb4-95ed-493acf771452 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F36A5CAB75D6496193668CAA2F649E16 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:34:03Z' + - 'Ref A: 6AD720D8942D4CFDAA2A2B0E5B241BB6 Ref B: SYD281080708060 Ref C: 2026-09-11T02:14:44Z' x-powered-by: - ASP.NET status: @@ -3521,26 +4166,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"Succeeded","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:06 GMT + - Fri, 11 Sep 2026 02:14:47 GMT expires: - '-1' pragma: @@ -3554,11 +4199,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/b3517880-1ec7-4b4f-a7e1-43d7650872c1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ac6db06f-eac2-4778-9a5f-8ec2280aea81 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6BCFFB8675514934A3A49DCFB58418BC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:34:06Z' + - 'Ref A: 163E21D5FE0C4566882344C2FE818563 Ref B: SYD281080707042 Ref C: 2026-09-11T02:14:47Z' x-powered-by: - ASP.NET status: @@ -3579,27 +4224,85 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"Succeeded","startTime":"2026-09-11T02:14:37.0902221"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:14:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4d35385d-6b33-434d-a011-b1ac73dca2d2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0415A44CF3DF4C31B504260410074510 Ref B: SYD281080705040 Ref C: 2026-09-11T02:14:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password + User-Agent: + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:36.6940315","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:36.6940315"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000004--nej545i","latestReadyRevisionName":"aca000004--nej545i","latestRevisionFqdn":"aca000004--nej545i.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7665' + - '4978' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:08 GMT + - Fri, 11 Sep 2026 02:14:52 GMT expires: - '-1' pragma: @@ -3615,7 +4318,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FF5BDBE74853474AB2E78819619C6AC1 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:34:08Z' + - 'Ref A: A7040F945819456F94DCABCEDEC18CFA Ref B: SYD281080710054 Ref C: 2026-09-11T02:14:52Z' x-powered-by: - ASP.NET status: @@ -3635,7 +4338,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3646,9 +4349,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3656,27 +4361,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3684,25 +4395,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -3710,7 +4427,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3718,8 +4436,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3727,73 +4448,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -3810,25 +4549,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -3841,9 +4586,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3851,97 +4598,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:10 GMT + - Fri, 11 Sep 2026 02:14:53 GMT expires: - '-1' pragma: @@ -3955,7 +4766,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F6386055C2B4F8F850FC71FF364F70E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:34:10Z' + - 'Ref A: 418B5255D9584231BC38F04B701585FF Ref B: SYD281080708040 Ref C: 2026-09-11T02:14:53Z' status: code: 200 message: OK @@ -3973,27 +4784,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:36.6940315","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:36.6940315"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000004--nej545i","latestReadyRevisionName":"aca000004--nej545i","latestRevisionFqdn":"aca000004--nej545i.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7665' + - '4978' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:11 GMT + - Fri, 11 Sep 2026 02:14:55 GMT expires: - '-1' pragma: @@ -4009,7 +4820,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0FDF6DDD4AF94FE09B1A06EB21164EF2 Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:34:11Z' + - 'Ref A: 604F82D37CE1411993DBA23275F8CD19 Ref B: SYD281080708036 Ref C: 2026-09-11T02:14:54Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml index 0d965d54a33..7fc5d631031 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,9 +24,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -34,27 +36,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -62,25 +70,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -88,7 +102,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -96,8 +111,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -105,73 +123,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -188,25 +224,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -219,9 +261,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -229,97 +273,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:34 GMT + - Fri, 11 Sep 2026 02:15:01 GMT expires: - '-1' pragma: @@ -333,7 +441,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 57FE089F4FA14C9E9D695FCA0354D052 Ref B: BN1AA2051015051 Ref C: 2026-04-09T18:46:35Z' + - 'Ref A: 996BDA5485F146B0A78BF0DC4113466E Ref B: SYD281080708052 Ref C: 2026-09-11T02:15:02Z' status: code: 200 message: OK @@ -351,27 +459,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:38 GMT + - Fri, 11 Sep 2026 02:15:03 GMT expires: - '-1' pragma: @@ -387,14 +495,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 888D00F6774C47EABD0E02D63762F285 Ref B: BN1AA2051013035 Ref C: 2026-04-09T18:46:38Z' + - 'Ref A: 0C3164954C78433C87CD388F58B503B1 Ref B: SYD281080706025 Ref C: 2026-09-11T02:15:03Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -406,29 +514,29 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '91' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1625' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:48 GMT + - Fri, 11 Sep 2026 02:15:12 GMT expires: - '-1' pragma: @@ -440,13 +548,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/6413d17f-8624-4780-bebe-6f9fba57cd80 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/64db2d1f-d755-4696-a4ae-9484d04df4db x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: B1342B9BD3894897A0065372FE9E8394 Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:46:41Z' + - 'Ref A: FA02F0B92BAF49639E06C3CC13F3BDDE Ref B: SYD281080708034 Ref C: 2026-09-11T02:15:04Z' status: code: 200 message: OK @@ -464,22 +572,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7boyohy6evvjsjeeey4rupmea6fkmzazrxz24auqtg3gdkgnre76owzssnyc6wlb/providers/Microsoft.ContainerRegistry/registries/acrwahclqjvx2wjo4l5kcrar","name":"acrwahclqjvx2wjo4l5kcrar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' headers: cache-control: - no-cache content-length: - - '6965' + - '6831' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:50 GMT + - Fri, 11 Sep 2026 02:15:14 GMT expires: - '-1' pragma: @@ -493,7 +600,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0B1A44E359424FA88CB6120149BE3364 Ref B: BN1AA2051013027 Ref C: 2026-04-09T18:46:51Z' + - 'Ref A: 9C1F86D0E78846739E15B21D7C98A009 Ref B: SYD281080711034 Ref C: 2026-09-11T02:15:14Z' status: code: 200 message: OK @@ -511,23 +618,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1625' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:53 GMT + - Fri, 11 Sep 2026 02:15:16 GMT expires: - '-1' pragma: @@ -541,7 +648,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A0FF97172207465BB457B605E7385B11 Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:46:53Z' + - 'Ref A: 68320534070C48B7AEE4834C8AD74A5F Ref B: SYD281080708036 Ref C: 2026-09-11T02:15:15Z' status: code: 200 message: OK @@ -559,22 +666,21 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7boyohy6evvjsjeeey4rupmea6fkmzazrxz24auqtg3gdkgnre76owzssnyc6wlb/providers/Microsoft.ContainerRegistry/registries/acrwahclqjvx2wjo4l5kcrar","name":"acrwahclqjvx2wjo4l5kcrar","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acrwahclqjvx2wjo4l5kcrar.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172+00:00"},"properties":{"loginServer":"clireg3l5cnycvqg6ymf.azurecr.io","creationDate":"2026-09-11T02:14:54.7024172Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:02.4129227+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:02.4147569+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acrmlzxrjet5l5zxtodf6prs.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp3lfto542omn5.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: cache-control: - no-cache content-length: - - '20786' + - '19013' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:56 GMT + - Fri, 11 Sep 2026 02:15:18 GMT expires: - '-1' pragma: @@ -590,11 +696,10 @@ interactions: - '' - '' - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73BF73E4BA38425195D4A6F81A3F0093 Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:46:55Z' + - 'Ref A: 76AF13DC811A4261A5B27760EBCE3734 Ref B: SYD281080709060 Ref C: 2026-09-11T02:15:18Z' status: code: 200 message: OK @@ -617,9 +722,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -629,17 +734,18 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Apr 2026 18:46:58 GMT + - Fri, 11 Sep 2026 02:15:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897209635201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=nBCsxdCxU6Pb5JQZg0fccJvuBa2j7R9a5ngkKQ2CHNUxfx-U-Rir6gJzOqJrCxdMgKKbiAL4rMeFOGO66ReEUwc1li36JA05RlfIfzeG0KYijofnTwbVNdIGFAWQa2VkdUldYh8h1qOCSVahi7hSoJMzaowQ2GwNI5gHloAF0sIu-sBN6JKK54WXy7Z80nQauyETy9jskJ9wwozvd19h1uJJSwRM2YWC4D-FUgjEMs6Z_78asvYxM6olFfsh-p3GJa05CR1HbbM3TqVxie3tfmxJIvQz35isOLy4p5Tz5i2L03EbZQJd9Zri1-MfaUlrJ8qEErwwZGPkWtFy2oIqlg&h=2PalC6vwJ-Ge_GuKPnO0oJa3UBCrpEyRnELmEqinVFo pragma: - no-cache strict-transport-security: @@ -649,13 +755,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/9c384992-493f-4207-b2c0-c439140eb525 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b3d3fe38-7fba-4d55-b148-6d52e2c71dcb x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FBC36302D64B4AF1A7D9EB758035FF19 Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:46:58Z' + - 'Ref A: 82E189F2DBDA4F0F9429EFD931BFF468 Ref B: SYD281080710040 Ref C: 2026-09-11T02:15:19Z' status: code: 202 message: Accepted @@ -673,9 +779,59 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897209635201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=nBCsxdCxU6Pb5JQZg0fccJvuBa2j7R9a5ngkKQ2CHNUxfx-U-Rir6gJzOqJrCxdMgKKbiAL4rMeFOGO66ReEUwc1li36JA05RlfIfzeG0KYijofnTwbVNdIGFAWQa2VkdUldYh8h1qOCSVahi7hSoJMzaowQ2GwNI5gHloAF0sIu-sBN6JKK54WXy7Z80nQauyETy9jskJ9wwozvd19h1uJJSwRM2YWC4D-FUgjEMs6Z_78asvYxM6olFfsh-p3GJa05CR1HbbM3TqVxie3tfmxJIvQz35isOLy4p5Tz5i2L03EbZQJd9Zri1-MfaUlrJ8qEErwwZGPkWtFy2oIqlg&h=2PalC6vwJ-Ge_GuKPnO0oJa3UBCrpEyRnELmEqinVFo + response: + body: + string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '56' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897222072129&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=M6hAk5LiO8BPZzxYSLUyvJstI-E1l-S3ZyoDEfOSXNfL2HuvivyaGRNXvRFIyh5jwlXvhxPLWi7kgowKajeJOQPorz0dzfhp2QwoqQaIeRBVSCvbhpAjbYQfJp3QdCfd3F5LeARJs7kynuyVwug6U9c_iARTF-RH51AzNgmzytPldfF8WQRGC0MLrNAi0PQlaTrgWCyOV7-Y6NGFBGmn3UjhTvjXlsMa5XatdRMES4EAqKULyVrormvqo_Jo9DF-ZZanApDCgKNGtgnJDo6jf-5wp1RzR0H1dv72sFZTyprPUua4uNv8TVPu_kkYXnA9LS0SqjsxeI41HDxzRLdPVA&h=AxJcQKexXpmF7lZGS2fzIRyeSX_3UqGdRVpwLWNrUPE + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/dccf0f53-6385-4d5b-b00f-813ee4248eda + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FE35849959264F318050B0E14012B3EA Ref B: SYD281080706060 Ref C: 2026-09-11T02:15:21Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897222072129&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=M6hAk5LiO8BPZzxYSLUyvJstI-E1l-S3ZyoDEfOSXNfL2HuvivyaGRNXvRFIyh5jwlXvhxPLWi7kgowKajeJOQPorz0dzfhp2QwoqQaIeRBVSCvbhpAjbYQfJp3QdCfd3F5LeARJs7kynuyVwug6U9c_iARTF-RH51AzNgmzytPldfF8WQRGC0MLrNAi0PQlaTrgWCyOV7-Y6NGFBGmn3UjhTvjXlsMa5XatdRMES4EAqKULyVrormvqo_Jo9DF-ZZanApDCgKNGtgnJDo6jf-5wp1RzR0H1dv72sFZTyprPUua4uNv8TVPu_kkYXnA9LS0SqjsxeI41HDxzRLdPVA&h=AxJcQKexXpmF7lZGS2fzIRyeSX_3UqGdRVpwLWNrUPE response: body: string: '{"status":"Succeeded"}' @@ -687,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:01 GMT + - Fri, 11 Sep 2026 02:15:33 GMT expires: - '-1' pragma: @@ -699,11 +855,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/6b243f9e-1ef5-4244-b4fc-d01ddb8766d2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/53f528b1-0828-416f-9f1d-091597f96ef5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9C642DC7E5DF469595963BB458787E2B Ref B: BN1AA2051012021 Ref C: 2026-04-09T18:47:02Z' + - 'Ref A: 428ADCB82A7C477792C07BA72059EC44 Ref B: SYD281080709029 Ref C: 2026-09-11T02:15:32Z' status: code: 200 message: OK @@ -721,7 +877,7 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -732,9 +888,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -742,27 +900,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -770,25 +934,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -796,7 +966,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -804,8 +975,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -813,73 +987,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -896,25 +1088,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -927,9 +1125,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -937,97 +1137,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:05 GMT + - Fri, 11 Sep 2026 02:15:34 GMT expires: - '-1' pragma: @@ -1041,7 +1305,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C02C31EE76A54497A5525F2197624F97 Ref B: BN1AA2051013049 Ref C: 2026-04-09T18:47:05Z' + - 'Ref A: 884F1633597B44278928EBEB8694FBA1 Ref B: SYD281080709040 Ref C: 2026-09-11T02:15:34Z' status: code: 200 message: OK @@ -1059,27 +1323,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '2074' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:06 GMT + - Fri, 11 Sep 2026 02:15:35 GMT expires: - '-1' pragma: @@ -1095,7 +1359,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F753B5D351642E89C455C031F82FF31 Ref B: BN1AA2051014031 Ref C: 2026-04-09T18:47:07Z' + - 'Ref A: 39852500825A43678BDE67341EA078B9 Ref B: SYD281080705036 Ref C: 2026-09-11T02:15:35Z' x-powered-by: - ASP.NET status: @@ -1115,7 +1379,7 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1126,9 +1390,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1136,27 +1402,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1164,25 +1436,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1190,7 +1468,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1198,8 +1477,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1207,73 +1489,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1290,25 +1590,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1321,9 +1627,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1331,97 +1639,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:07 GMT + - Fri, 11 Sep 2026 02:15:36 GMT expires: - '-1' pragma: @@ -1435,7 +1807,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EADDA8A2E9D34C3D9533E60708511374 Ref B: BN1AA2051013027 Ref C: 2026-04-09T18:47:08Z' + - 'Ref A: 7CDC86C706F741B4B3CA2CFFE81F02FD Ref B: SYD281080711031 Ref C: 2026-09-11T02:15:36Z' status: code: 200 message: OK @@ -1453,22 +1825,21 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7boyohy6evvjsjeeey4rupmea6fkmzazrxz24auqtg3gdkgnre76owzssnyc6wlb/providers/Microsoft.ContainerRegistry/registries/acrwahclqjvx2wjo4l5kcrar","name":"acrwahclqjvx2wjo4l5kcrar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf6mjrsz7snf6pvhgsiffbpwmzuxmuezp5cteenh4shh4ujp3ey2ol3su4dekeoxpz/providers/Microsoft.ContainerRegistry/registries/containerappwe3veae2svp7","name":"containerappwe3veae2svp7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569Z"}}]}' headers: cache-control: - no-cache content-length: - - '6965' + - '6831' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:10 GMT + - Fri, 11 Sep 2026 02:15:37 GMT expires: - '-1' pragma: @@ -1482,7 +1853,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F0A0E77EC4B04C219DD1754DF3851567 Ref B: BN1AA2051012039 Ref C: 2026-04-09T18:47:10Z' + - 'Ref A: C7068B4439424EF39C5D21B0F1043902 Ref B: SYD281080706054 Ref C: 2026-09-11T02:15:37Z' status: code: 200 message: OK @@ -1500,23 +1871,23 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1625' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:12 GMT + - Fri, 11 Sep 2026 02:15:38 GMT expires: - '-1' pragma: @@ -1530,7 +1901,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 62DA3A59ED6E421D83E1B1DB284C2A05 Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:47:12Z' + - 'Ref A: AE66BB0C6814499F9966AD7EAB4BAA21 Ref B: SYD281080707052 Ref C: 2026-09-11T02:15:38Z' status: code: 200 message: OK @@ -1550,15 +1921,15 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"2E7R9bJFCNbRlVEoyehditP3STiz6R4L0yA2hvAR5JACX6gbhxy6JQQJ99CIACMsfrFEqg7NAAACAZCRv42E"},{"name":"password2","value":"6uENhICU3OvgRMc0ptAZCIjHcm7MwFFdCQ0IoS7GbaZtLXy4KywyJQQJ99CIACMsfrFEqg7NAAACAZCRvVbe"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1566,7 +1937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:14 GMT + - Fri, 11 Sep 2026 02:15:40 GMT expires: - '-1' pragma: @@ -1578,21 +1949,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/1e9666ab-a70e-4bf3-9af2-652d19b1fa19 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/d3ea4de7-2517-4644-aa87-e26070e466a0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1BD9BEA6FE204FDF8268EBC21B5ADE2C Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:47:14Z' + - 'Ref A: 6A73AA9B784B49B1B22AE8552AEFA9FC Ref B: SYD281080710060 Ref C: 2026-09-11T02:15:40Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "***"}], + "2E7R9bJFCNbRlVEoyehditP3STiz6R4L0yA2hvAR5JACX6gbhxy6JQQJ99CIACMsfrFEqg7NAAACAZCRv42E"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, @@ -1612,35 +1983,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1176' + - '1180' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.4712961Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.4712961Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.9517993Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.9517993Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A cache-control: - no-cache content-length: - - '7032' + - '4342' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:17 GMT + - Fri, 11 Sep 2026 02:15:45 GMT expires: - '-1' pragma: @@ -1654,11 +2025,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/061d0192-b219-4035-9a3e-c1af6cf3a438 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/5d26bd85-d938-4d7b-8809-2f518c7c6e19 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: A189481DB94A407DB8929E0724A41FAC Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:47:16Z' + - 'Ref A: 0CE9EE798E684833BFFC299D9267A79B Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:42Z' x-powered-by: - ASP.NET status: @@ -1678,26 +2049,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"InProgress","startTime":"2026-04-09T18:47:17.7910038"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"InProgress","startTime":"2026-09-11T02:15:45.4680415"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:18 GMT + - Fri, 11 Sep 2026 02:15:47 GMT expires: - '-1' pragma: @@ -1711,11 +2082,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/16aaeb8c-db11-4833-9394-abfddce3617d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/89649145-ed86-4bff-830d-1e6ab8dfaa4d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 490FC5D3CE9A4741AEA0929C9F57313E Ref B: BN1AA2051014023 Ref C: 2026-04-09T18:47:19Z' + - 'Ref A: 8FBC5905850D47339AA77297B2649A99 Ref B: SYD281080709060 Ref C: 2026-09-11T02:15:47Z' x-powered-by: - ASP.NET status: @@ -1735,26 +2106,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"InProgress","startTime":"2026-04-09T18:47:17.7910038"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"InProgress","startTime":"2026-09-11T02:15:45.4680415"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:22 GMT + - Fri, 11 Sep 2026 02:15:49 GMT expires: - '-1' pragma: @@ -1768,11 +2139,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/68c79fd9-e350-4db6-aeb9-c81c058032bb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1d8c9356-cc4c-4f32-b514-55f0b769e319 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CA93D1416D2B49BA81278784CD13F4FB Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:47:23Z' + - 'Ref A: F30AE5A5BE66438B93E4D70E93D408B2 Ref B: SYD281080708034 Ref C: 2026-09-11T02:15:50Z' x-powered-by: - ASP.NET status: @@ -1792,26 +2163,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"InProgress","startTime":"2026-04-09T18:47:17.7910038"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"InProgress","startTime":"2026-09-11T02:15:45.4680415"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:26 GMT + - Fri, 11 Sep 2026 02:15:53 GMT expires: - '-1' pragma: @@ -1825,11 +2196,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/0c269764-8aa3-4575-9db6-f37c63f94756 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/418048fe-3bbc-4d05-b172-73f3330b6078 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E464FAE3A0AF48B89E67B66245D680EB Ref B: BN1AA2051014019 Ref C: 2026-04-09T18:47:27Z' + - 'Ref A: 5801F001DE6847A1B4846C8974EE8D79 Ref B: SYD281080708062 Ref C: 2026-09-11T02:15:53Z' x-powered-by: - ASP.NET status: @@ -1849,26 +2220,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"Succeeded","startTime":"2026-04-09T18:47:17.7910038"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"Succeeded","startTime":"2026-09-11T02:15:45.4680415"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:30 GMT + - Fri, 11 Sep 2026 02:15:57 GMT expires: - '-1' pragma: @@ -1882,11 +2253,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/09d3b5e5-ed39-4b67-85cf-ff2baac82ee1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/30316660-d16c-4d84-992a-4f17c9884266 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CB727FACB3604C56905DFBFD49AE4898 Ref B: BN1AA2051014011 Ref C: 2026-04-09T18:47:30Z' + - 'Ref A: 9EADE91C0B0F490CBD6B4854C21ADA1E Ref B: SYD281080705042 Ref C: 2026-09-11T02:15:56Z' x-powered-by: - ASP.NET status: @@ -1906,27 +2277,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.4712961","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.4712961"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--4vhgnzb","latestReadyRevisionName":"aca000002--4vhgnzb","latestRevisionFqdn":"aca000002--4vhgnzb.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.9517993","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.9517993"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--qdeqynz","latestReadyRevisionName":"aca000002--qdeqynz","latestRevisionFqdn":"aca000002--qdeqynz.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7665' + - '4978' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:32 GMT + - Fri, 11 Sep 2026 02:15:58 GMT expires: - '-1' pragma: @@ -1942,7 +2313,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 183AEA66A33E414FAC457B2D51A58568 Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:47:32Z' + - 'Ref A: 84A5AC6E20054778B3D1FD6418B14BB1 Ref B: SYD281080712060 Ref C: 2026-09-11T02:15:58Z' x-powered-by: - ASP.NET status: @@ -1962,7 +2333,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1973,9 +2344,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1983,27 +2356,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2011,25 +2390,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2037,7 +2422,8 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2045,8 +2431,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2054,73 +2443,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2137,25 +2544,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2168,9 +2581,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2178,97 +2593,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '49711' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:35 GMT + - Fri, 11 Sep 2026 02:15:59 GMT expires: - '-1' pragma: @@ -2282,7 +2761,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B88907AF46FF4AF989FD37E02737CDF9 Ref B: BN1AA2051014035 Ref C: 2026-04-09T18:47:35Z' + - 'Ref A: 875C70B25953414CABE42D7CC8B7DE54 Ref B: SYD281080706034 Ref C: 2026-09-11T02:15:59Z' status: code: 200 message: OK @@ -2300,27 +2779,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.4712961","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.4712961"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--4vhgnzb","latestReadyRevisionName":"aca000002--4vhgnzb","latestRevisionFqdn":"aca000002--4vhgnzb.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.9517993","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.9517993"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--qdeqynz","latestReadyRevisionName":"aca000002--qdeqynz","latestRevisionFqdn":"aca000002--qdeqynz.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7665' + - '4978' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:37 GMT + - Fri, 11 Sep 2026 02:16:00 GMT expires: - '-1' pragma: @@ -2336,7 +2815,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EDB7A7F8DF85466B9DD62B0DFCC19AF1 Ref B: BN1AA2051014009 Ref C: 2026-04-09T18:47:36Z' + - 'Ref A: 5FAE397BD7574F0FAD72B9EAA42B8993 Ref B: SYD281080705062 Ref C: 2026-09-11T02:16:00Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml index bc75eefaf54..14d64cdba6a 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,9 +24,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -34,27 +36,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -62,33 +70,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -96,132 +111,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -229,97 +273,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:06 GMT + - Fri, 11 Sep 2026 02:15:36 GMT expires: - '-1' pragma: @@ -333,7 +441,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 83B1E760B79941F5A809ABB7697DCB31 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:58:06Z' + - 'Ref A: 9889FF73128F4887A9005538C6959505 Ref B: SYD281080708025 Ref C: 2026-09-11T02:15:36Z' status: code: 200 message: OK @@ -351,27 +459,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '2074' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:05 GMT + - Fri, 11 Sep 2026 02:15:37 GMT expires: - '-1' pragma: @@ -387,7 +495,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9FE8A553BACE41579EC8E06F4465CCE9 Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:58:06Z' + - 'Ref A: 1DF413E8A5F948C79213B808F8EB9A79 Ref B: SYD281080711031 Ref C: 2026-09-11T02:15:37Z' x-powered-by: - ASP.NET status: @@ -408,7 +516,7 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -419,9 +527,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -429,27 +539,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -457,33 +573,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -491,132 +614,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -624,97 +776,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:06 GMT + - Fri, 11 Sep 2026 02:15:38 GMT expires: - '-1' pragma: @@ -728,7 +944,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4FE57FC526674F44AF549E8D36135AD3 Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:58:06Z' + - 'Ref A: 7ED21E63909640BB838638D25C37F547 Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:38Z' status: code: 200 message: OK @@ -747,27 +963,27 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '2074' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:06 GMT + - Fri, 11 Sep 2026 02:15:39 GMT expires: - '-1' pragma: @@ -783,7 +999,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6BCAE525F7B4459BBF436D0662204DBE Ref B: SJC211051204033 Ref C: 2026-03-24T05:58:07Z' + - 'Ref A: A5243E9A0780419AAC989CEA89D1E89A Ref B: SYD281080706023 Ref C: 2026-09-11T02:15:38Z' x-powered-by: - ASP.NET status: @@ -804,7 +1020,7 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -815,9 +1031,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -825,27 +1043,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -853,33 +1077,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -887,8 +1118,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -896,73 +1130,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -979,25 +1231,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1010,9 +1268,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1020,97 +1280,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:07 GMT + - Fri, 11 Sep 2026 02:15:40 GMT expires: - '-1' pragma: @@ -1124,13 +1448,13 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FAF3C3C2102D4857941D9535F01490B1 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:58:07Z' + - 'Ref A: 8763799C00814C99A4F5E04F96ACDF1B Ref B: SYD281080709031 Ref C: 2026-09-11T02:15:40Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", "configuration": {"secrets": null, "triggerType": "manual", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1}, "scheduleTriggerConfig": null, "eventTriggerConfig": null, @@ -1148,35 +1472,36 @@ interactions: Connection: - keep-alive Content-Length: - - '845' + - '849' Content-Type: - application/json ParameterSetName: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.2646305Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061?api-version=2025-07-01&azureAsyncOperation=true&t=639246897463114887&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=d9PATaka5cSlrQpQ0h3EnMQ4src2_XA5JW-jr8ugmOYN9KaQqK_7k1liY7cm_KHh88TAKXw4KDfkdyS0nCM9nnjOizlt2h7VQOqLZGvMonwNfnoEbEavAwSJ9dbgihlollHGFwBtdFpO_5b62WJFlPnDsXJSB3lMaduM0pG1TV5CcgdkYnDwrtcQxEaouz2oHfSKZ8ewaXQnzW544GXTN26m57KyvpPVxoFcsRzYwAORAS8RKcA00GjfPkTIH379cLQWJSLw5UmTAVqtwLOCQQPPjH4u7KaA898aK00HQiIIYOhp43a3Kihd983GWsPvNN-APs1JqqoVGfxTwfADOQ&h=G3n-eU7OnwaHjsJ63nyjx25x-BfSb6gFw8la5uAvNVQ cache-control: - no-cache content-length: - - '1331' + - '3844' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:10 GMT + - Fri, 11 Sep 2026 02:15:45 GMT expires: - '-1' pragma: @@ -1190,11 +1515,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/35154f62-1978-40ba-822f-e34d95c2ee7d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/3d0ce7df-8d13-4308-b784-1b596c9fcb3f x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 2A98C9C49BAA4AB08290BB04F4038388 Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:58:07Z' + - 'Ref A: 6B0A33BFE63E4AC5AAB633D14D15CF3B Ref B: SYD281080706036 Ref C: 2026-09-11T02:15:40Z' x-powered-by: - ASP.NET status: @@ -1215,25 +1540,26 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061?api-version=2025-07-01&azureAsyncOperation=true&t=639246897463114887&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=d9PATaka5cSlrQpQ0h3EnMQ4src2_XA5JW-jr8ugmOYN9KaQqK_7k1liY7cm_KHh88TAKXw4KDfkdyS0nCM9nnjOizlt2h7VQOqLZGvMonwNfnoEbEavAwSJ9dbgihlollHGFwBtdFpO_5b62WJFlPnDsXJSB3lMaduM0pG1TV5CcgdkYnDwrtcQxEaouz2oHfSKZ8ewaXQnzW544GXTN26m57KyvpPVxoFcsRzYwAORAS8RKcA00GjfPkTIH379cLQWJSLw5UmTAVqtwLOCQQPPjH4u7KaA898aK00HQiIIYOhp43a3Kihd983GWsPvNN-APs1JqqoVGfxTwfADOQ&h=G3n-eU7OnwaHjsJ63nyjx25x-BfSb6gFw8la5uAvNVQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061","name":"efb7c292-3649-4909-87f4-88eccc110061","status":"InProgress","startTime":"2026-09-11T02:15:44.7344553"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '282' + - '283' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:10 GMT + - Fri, 11 Sep 2026 02:15:47 GMT expires: - '-1' pragma: @@ -1247,11 +1573,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b7f0bc80-740a-4d8b-925b-4d47bb643dc6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/511f9a8d-6894-471d-bd25-875bf92c091e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A4F9CA8EBA054874A4349F476B4087EE Ref B: BY1AA1072319031 Ref C: 2026-03-24T05:58:11Z' + - 'Ref A: 173DE3D6618A44BF88FE309B990920B2 Ref B: SYD281080712042 Ref C: 2026-09-11T02:15:47Z' x-powered-by: - ASP.NET status: @@ -1272,17 +1598,18 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061?api-version=2025-07-01&azureAsyncOperation=true&t=639246897463114887&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=d9PATaka5cSlrQpQ0h3EnMQ4src2_XA5JW-jr8ugmOYN9KaQqK_7k1liY7cm_KHh88TAKXw4KDfkdyS0nCM9nnjOizlt2h7VQOqLZGvMonwNfnoEbEavAwSJ9dbgihlollHGFwBtdFpO_5b62WJFlPnDsXJSB3lMaduM0pG1TV5CcgdkYnDwrtcQxEaouz2oHfSKZ8ewaXQnzW544GXTN26m57KyvpPVxoFcsRzYwAORAS8RKcA00GjfPkTIH379cLQWJSLw5UmTAVqtwLOCQQPPjH4u7KaA898aK00HQiIIYOhp43a3Kihd983GWsPvNN-APs1JqqoVGfxTwfADOQ&h=G3n-eU7OnwaHjsJ63nyjx25x-BfSb6gFw8la5uAvNVQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061","name":"efb7c292-3649-4909-87f4-88eccc110061","status":"Succeeded","startTime":"2026-09-11T02:15:44.7344553"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1290,7 +1617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:13 GMT + - Fri, 11 Sep 2026 02:15:50 GMT expires: - '-1' pragma: @@ -1304,11 +1631,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/50c4cc15-57ed-48c1-a844-317737629347 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/7780f334-fee8-4068-81e8-896f283240b4 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16496' x-msedge-ref: - - 'Ref A: BE236F084B0B4394A74941946295233E Ref B: SJC211051205027 Ref C: 2026-03-24T05:58:13Z' + - 'Ref A: CD29EDB80A0C414E8071FD00D75B7E1E Ref B: SYD281080710034 Ref C: 2026-09-11T02:15:50Z' x-powered-by: - ASP.NET status: @@ -1329,83 +1656,27 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"Succeeded","startTime":"2026-03-24T05:58:09.9196862"}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, - 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '281' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:58:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/abf2851f-acad-442c-82f1-40ba686d412c - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 8EEE2B56E7AD43DA8B3F98C7005A0D63 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:58:16Z' - 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 --parallelism --replica-completion-count --image --cpu --memory - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.2646305"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1350' + - '3863' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:16 GMT + - Fri, 11 Sep 2026 02:15:51 GMT expires: - '-1' pragma: @@ -1421,14 +1692,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FACC70A2E96A4D579BBDC7230B96989D Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:58:16Z' + - 'Ref A: 9E337C913C1A431EBEEFC1B14D794E99 Ref B: SYD281080707029 Ref C: 2026-09-11T02:15:51Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -1440,29 +1711,29 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '91' Content-Type: - application/json ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:53.6281351+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:53.6281351+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:53.6281351Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456601+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1628' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:24 GMT + - Fri, 11 Sep 2026 02:15:59 GMT expires: - '-1' pragma: @@ -1474,13 +1745,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/7f2a7b6a-c21d-4e09-a9ab-b2a9e2d6797c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/6e4fb1ab-774c-435e-a74c-a2f3b96a3df2 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '799' x-msedge-ref: - - 'Ref A: 8F7996EF5799498F8FDC268A5001D21F Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:17Z' + - 'Ref A: 8FDB062EE97D4EBC9E5D9655E275A2D0 Ref B: SYD281080708034 Ref C: 2026-09-11T02:15:52Z' status: code: 200 message: OK @@ -1498,7 +1769,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1509,9 +1780,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1519,27 +1792,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1547,33 +1826,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1581,8 +1867,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1590,73 +1879,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1673,25 +1980,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1704,9 +2017,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1714,97 +2029,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:25 GMT + - Fri, 11 Sep 2026 02:16:00 GMT expires: - '-1' pragma: @@ -1818,7 +2197,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 77939CA83F664FB5B7818885C61BAC91 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:58:25Z' + - 'Ref A: 07589EB47D434E4689697B6EA28D5571 Ref B: SYD281080708052 Ref C: 2026-09-11T02:16:01Z' status: code: 200 message: OK @@ -1836,26 +2215,27 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.2646305"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1350' + - '3863' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:25 GMT + - Fri, 11 Sep 2026 02:16:02 GMT expires: - '-1' pragma: @@ -1871,7 +2251,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2FFF2425312D41118FC671E78102B179 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:25Z' + - 'Ref A: DC4CCDB40FDE45D189B0148A2C1C212E Ref B: SYD281080709042 Ref C: 2026-09-11T02:16:02Z' x-powered-by: - ASP.NET status: @@ -1893,7 +2273,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: @@ -1903,7 +2283,8 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1911,7 +2292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:26 GMT + - Fri, 11 Sep 2026 02:16:04 GMT expires: - '-1' pragma: @@ -1925,13 +2306,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/2f039500-99e3-4fb7-a16a-67997ac0be85 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/fdf3e6d7-0eb3-49f5-865a-f1c30d619bec x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: C3CBD52FCA3F4672A176CDA3B2E39F51 Ref B: BY1AA1072316029 Ref C: 2026-03-24T05:58:26Z' + - 'Ref A: 67CE9760FADC4D14AC78144984A57662 Ref B: SYD281080706040 Ref C: 2026-09-11T02:16:03Z' x-powered-by: - ASP.NET status: @@ -1951,21 +2332,21 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf6mjrsz7snf6pvhgsiffbpwmzuxmuezp5cteenh4shh4ujp3ey2ol3su4dekeoxpz/providers/Microsoft.ContainerRegistry/registries/containerappwe3veae2svp7","name":"containerappwe3veae2svp7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2mfgy7ipb44svaualywuydbzgr2daw5i4sujxmbw5p4or3xctapkzb55ryw24rqee/providers/Microsoft.ContainerRegistry/registries/acrw33ip5dhxrklxnsvq4xbl","name":"acrw33ip5dhxrklxnsvq4xbl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:53.6281351Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:53.6281351Z"}}]}' headers: cache-control: - no-cache content-length: - - '3356' + - '6831' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:26 GMT + - Fri, 11 Sep 2026 02:16:05 GMT expires: - '-1' pragma: @@ -1979,7 +2360,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1735641CAEC74F1C9C8C8F5E35799BEF Ref B: SJC211051201045 Ref C: 2026-03-24T05:58:27Z' + - 'Ref A: 5FBC829595114EDAAF79CF44A6EE6E54 Ref B: SYD281080706054 Ref C: 2026-09-11T02:16:05Z' status: code: 200 message: OK @@ -1997,23 +2378,23 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:53.6281351+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:53.6281351+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:53.6281351Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456601+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1628' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:27 GMT + - Fri, 11 Sep 2026 02:16:07 GMT expires: - '-1' pragma: @@ -2027,7 +2408,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1E7F1F40570441B483D86D0D742ED390 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:58:27Z' + - 'Ref A: 73781B5FBFCE4519965C45E68E19432A Ref B: SYD281080705040 Ref C: 2026-09-11T02:16:06Z' status: code: 200 message: OK @@ -2047,15 +2428,15 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"},{"name":"password2","value":"2VacAwj44g9QzR0SJ3BsOJ1PuaGGATyrMdeg6EHRpw7m6OH0hpMlJQQJ99CIACMsfrFEqg7NAAACAZCRUsFx"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -2063,7 +2444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:27 GMT + - Fri, 11 Sep 2026 02:16:08 GMT expires: - '-1' pragma: @@ -2075,19 +2456,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/85885868-5b4b-4a86-8230-725bdf0bbaaa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/281f4a15-1238-4b0d-8c73-188aca24c6bd x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E342E2A0B6BB491B812C73E33605B0FB Ref B: SJC211051205011 Ref C: 2026-03-24T05:58:27Z' + - 'Ref A: 2BC59260B90544C4BFD309FF80F7DCFA Ref B: SYD281080706042 Ref C: 2026-09-11T02:16:07Z' status: code: 200 message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "***"}], + "value": "zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}], "registries": [{"server": "acr000003.azurecr.io", "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}}}' headers: @@ -2106,7 +2487,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -2116,17 +2497,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:29 GMT + - Fri, 11 Sep 2026 02:16:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897701628938&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZgdXCoKzxbZbxbuYjD_ZvkTeoKrhiCM7O8G_0YGi10lIwryx7ahI4-kEkeowoSOsToLe3n6KERgbJHSalAamCvw2Q8CjzR4dVVMlu19R1aljFAFV2nP3s8X4yIPtrcmdrnqRnLrIMZJECaktr6W_ANgTdgghBeOd0koXMkpB3DtoU8sn34cR2v4TEP4udKdIgL_q1KJ-L7HyLOfWhKw0iEaB4TwT_EVdZSG7BHSK_3xovAK8TCeXM7MpKOJq0mMGh5gM-O-2hRce6FNx0aIAtH1bUepjYUZNs4sBvj5ZnuEuDMdQMxhtU7elkPfTg34dUP8k4T-sLn3I4nJbyjPnjQ&h=iDsZBXhbPeR2uyBPd1QS_P6IjAsKFWoFmy7ZMJp08vA pragma: - no-cache strict-transport-security: @@ -2136,11 +2518,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/8c5ae4d8-a6e6-4991-b2fd-c9d8e75525d2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/b6259cf4-69ae-4492-bfec-9e4dcb936239 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: B0D2853C22764F8E93A359A8F5418407 Ref B: SJC211051203037 Ref C: 2026-03-24T05:58:28Z' + - 'Ref A: BB33B60BA92A44188400852236C56E3A Ref B: SYD281080708036 Ref C: 2026-09-11T02:16:09Z' x-powered-by: - ASP.NET status: @@ -2160,9 +2542,9 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897701628938&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZgdXCoKzxbZbxbuYjD_ZvkTeoKrhiCM7O8G_0YGi10lIwryx7ahI4-kEkeowoSOsToLe3n6KERgbJHSalAamCvw2Q8CjzR4dVVMlu19R1aljFAFV2nP3s8X4yIPtrcmdrnqRnLrIMZJECaktr6W_ANgTdgghBeOd0koXMkpB3DtoU8sn34cR2v4TEP4udKdIgL_q1KJ-L7HyLOfWhKw0iEaB4TwT_EVdZSG7BHSK_3xovAK8TCeXM7MpKOJq0mMGh5gM-O-2hRce6FNx0aIAtH1bUepjYUZNs4sBvj5ZnuEuDMdQMxhtU7elkPfTg34dUP8k4T-sLn3I4nJbyjPnjQ&h=iDsZBXhbPeR2uyBPd1QS_P6IjAsKFWoFmy7ZMJp08vA response: body: string: '' @@ -2170,17 +2552,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:29 GMT + - Fri, 11 Sep 2026 02:16:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287103526622&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=RvVuBikV3PlFywK_KqHykM3IVIG24w9ln4rOEOo-Srs_aJntM0Njdgh9F633eZIPs7BJ_OHxJPmEKJjga7J1-e8F0Pe7yVWfRh2ezq3QzDPfeBwTzAftKCArNv7MkZePkPDlmdO9vFEbW3IdunuX4DFdwCDo0h9ARPQo8lK1A7spp9eX6SFx1orCJZedT1VCP2NrMsf8hH5woLFsELYp3a71aSacSrMmYOim2BB58zpcQJm9O4jyg0UTGDDJgcO-I6brjlgcWaUw8sIwnliFGcmk0ORNqXebAMYU0DvmVyTOoWjHTry-UoOBweHdf2YpgYWbGvsXrvNSgKw4jTyMkQ&h=bewZB2cYDExSd-GQEWDPHsgj8IhMBWMaB88S9_YexIs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897711955848&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=KYFTe_4spXZ5RSYDLBZ5GDwi_c-qr-y2n6-b29fby_mXISPJD04vtkiT-pyWBkcb0DL25Ya-D7JHStxN1VMwJwHMjE-SnoNqz1JHIDYOz4yL5UZkkrgTeKo7LLWuB-eHzhLQoTXOL-fTj38pM5GBTP1UB__O56musbxmC4TvSKl3_GgoANw4wtxxcFW2i53V0C0z1PLDoXXLhAlIdQmuImujDbLQZo0J1mGw1AUNvJ-K1oItuc8x2TBSwF1Ax_YdcxpY7VqZddBgIad3iOPQw_8ZeswGv76XZnQhHgtJHx3-z1mGq1NS5L98hso2r9wPyri5hQRFNea6LES9etM-Gg&h=DPQ9KhLCrLvd8CR7afk3WaHL6w1w6EAa-xJ9ydljgQQ pragma: - no-cache strict-transport-security: @@ -2190,11 +2573,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/1e4e98e8-4162-4681-ba7c-23de71c5fd6c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f090c420-1fe6-421b-b75f-21520b696409 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D21BAAE48E04A5B81B700C74ED3C6C0 Ref B: SJC211051204053 Ref C: 2026-03-24T05:58:29Z' + - 'Ref A: 02E1747694DF4C39AFA936245666A8E1 Ref B: SYD281080712036 Ref C: 2026-09-11T02:16:11Z' x-powered-by: - ASP.NET status: @@ -2214,26 +2597,27 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897701628938&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZgdXCoKzxbZbxbuYjD_ZvkTeoKrhiCM7O8G_0YGi10lIwryx7ahI4-kEkeowoSOsToLe3n6KERgbJHSalAamCvw2Q8CjzR4dVVMlu19R1aljFAFV2nP3s8X4yIPtrcmdrnqRnLrIMZJECaktr6W_ANgTdgghBeOd0koXMkpB3DtoU8sn34cR2v4TEP4udKdIgL_q1KJ-L7HyLOfWhKw0iEaB4TwT_EVdZSG7BHSK_3xovAK8TCeXM7MpKOJq0mMGh5gM-O-2hRce6FNx0aIAtH1bUepjYUZNs4sBvj5ZnuEuDMdQMxhtU7elkPfTg34dUP8k4T-sLn3I4nJbyjPnjQ&h=iDsZBXhbPeR2uyBPd1QS_P6IjAsKFWoFmy7ZMJp08vA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '3983' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:45 GMT + - Fri, 11 Sep 2026 02:16:26 GMT expires: - '-1' pragma: @@ -2247,11 +2631,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d0decb66-fae2-49f2-b24f-2bd196cef1a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/2793eba2-1b45-4caf-ad6f-7c02488687e7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F7ACFC661674CE78C3215D880097799 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:45Z' + - 'Ref A: 795DDB7ED9664BA9A3AB3C2BECC09BC1 Ref B: SYD281080709023 Ref C: 2026-09-11T02:16:26Z' x-powered-by: - ASP.NET status: @@ -2271,7 +2655,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2282,9 +2666,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2292,27 +2678,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2320,33 +2712,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2354,8 +2753,11 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2363,73 +2765,91 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2446,25 +2866,31 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2477,9 +2903,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2487,97 +2915,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:45 GMT + - Fri, 11 Sep 2026 02:16:27 GMT expires: - '-1' pragma: @@ -2591,7 +3083,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9345A4E3CE3E48C8BDFB65830B2E31A7 Ref B: SJC211051205023 Ref C: 2026-03-24T05:58:46Z' + - 'Ref A: C7C819B323FA4619ACE231B14F905D7F Ref B: SYD281080706034 Ref C: 2026-09-11T02:16:28Z' status: code: 200 message: OK @@ -2609,26 +3101,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '3983' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:46 GMT + - Fri, 11 Sep 2026 02:16:28 GMT expires: - '-1' pragma: @@ -2644,7 +3137,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3F1990142B3743B087D0FAE9F911FDF7 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:46Z' + - 'Ref A: D347BE9EA81A4ADE89F6F0D08E54A30B Ref B: SYD281080707029 Ref C: 2026-09-11T02:16:28Z' x-powered-by: - ASP.NET status: @@ -2664,7 +3157,7 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2675,9 +3168,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2685,27 +3180,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2713,33 +3214,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2747,132 +3255,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2880,97 +3417,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:46 GMT + - Fri, 11 Sep 2026 02:16:30 GMT expires: - '-1' pragma: @@ -2984,7 +3585,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F5E3DE138D14FF693115EBAFD1CB3E8 Ref B: BY1AA1072316060 Ref C: 2026-03-24T05:58:46Z' + - 'Ref A: 1C37377B01B0490C853D480C2A4D94ED Ref B: SYD281080709054 Ref C: 2026-09-11T02:16:30Z' status: code: 200 message: OK @@ -3002,26 +3603,27 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '3983' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:47 GMT + - Fri, 11 Sep 2026 02:16:31 GMT expires: - '-1' pragma: @@ -3037,7 +3639,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 483DC18DF49C4FDAB2CD4D7D2E29ACD8 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:47Z' + - 'Ref A: 69414B355D544B789E1E74598CBDE702 Ref B: SYD281080709034 Ref C: 2026-09-11T02:16:30Z' x-powered-by: - ASP.NET status: @@ -3057,7 +3659,7 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3068,9 +3670,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3078,27 +3682,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3106,33 +3716,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3140,132 +3757,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3273,97 +3919,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:47 GMT + - Fri, 11 Sep 2026 02:16:32 GMT expires: - '-1' pragma: @@ -3377,7 +4087,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 29E9F6AC05A341CDA65C83C50F3C1F87 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:48Z' + - 'Ref A: 488241F6721A4C629F605CA80CDC9EA8 Ref B: SYD281080707031 Ref C: 2026-09-11T02:16:32Z' status: code: 200 message: OK @@ -3395,26 +4105,27 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '3983' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:47 GMT + - Fri, 11 Sep 2026 02:16:33 GMT expires: - '-1' pragma: @@ -3430,7 +4141,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0AC04F0F1BC3429D8B5C486D253A3ADD Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:48Z' + - 'Ref A: E3598C79A02F4C929CDB4E341688B72C Ref B: SYD281080712060 Ref C: 2026-09-11T02:16:33Z' x-powered-by: - ASP.NET status: @@ -3452,17 +4163,18 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3470,7 +4182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:48 GMT + - Fri, 11 Sep 2026 02:16:34 GMT expires: - '-1' pragma: @@ -3484,13 +4196,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/e1c4ad97-9b1e-4f9c-b2b9-0febb4a943d9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/3324a25e-6886-409a-8135-addddd3bad5c x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5793764F5FA04C85ADE202AF0E08DD96 Ref B: SJC211051204017 Ref C: 2026-03-24T05:58:48Z' + - 'Ref A: 26E49667F3D84B8686A24BE6E6320E9E Ref B: SYD281080706031 Ref C: 2026-09-11T02:16:34Z' x-powered-by: - ASP.NET status: @@ -3498,7 +4210,7 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "***"}], + "value": "zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}], "registries": [{"server": "acr000003.azurecr.io", "username": null, "passwordSecretRef": null, "identity": "system"}]}}, "identity": {"type": "SystemAssigned"}}' headers: @@ -3517,7 +4229,7 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -3527,17 +4239,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:51 GMT + - Fri, 11 Sep 2026 02:16:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246897988405550&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=aZf_EJYQXoSC6ZUL2-3lsPdL2g7Akd9a-bKGBg6bcBN6cSpzQxqe3YZaOGY9mGjmFDDAR4upDtncjfAVaaEOrZw8KLcwR2qHDdSEXDLoKfoD75ucf7fb2LSkPWQ6oWyOuY-NX90bXVI5TRWJN-mXJha8pY9D2aiQ9ABBj9eAvPf6K3l4YRseCY1xDANvtnYVfFsxH4H2eOCNYjOjB6Khs3c_vQjuwjD9ElzeosCB9DIAJzvIWDkRTa6OeW0vorYHgqpzHqT3Q7e6KGCSIavP2QZrPHmgTg18NpyAuqXQ7lmFJPz0BcF0cDiJu8ToiPhPR8_vid61CE3rho7_30z1NQ&h=RMgBpdt3hEGpgo8D0Gt3h7ZXSynR-0-vM5E4bFXwn8E pragma: - no-cache strict-transport-security: @@ -3547,11 +4260,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/46e78443-9d13-4bbb-9805-0521c3c2d385 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/444e9245-da96-49c1-b9e5-bdb1a6c4baa9 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 4F0D76C7EA6A4F52BB3D5628232DF735 Ref B: BY1AA1072315060 Ref C: 2026-03-24T05:58:49Z' + - 'Ref A: 9AAE18CFADD54DEF9CB409F324DA27B9 Ref B: SYD281080707060 Ref C: 2026-09-11T02:16:36Z' x-powered-by: - ASP.NET status: @@ -3571,9 +4284,9 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246897988405550&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=aZf_EJYQXoSC6ZUL2-3lsPdL2g7Akd9a-bKGBg6bcBN6cSpzQxqe3YZaOGY9mGjmFDDAR4upDtncjfAVaaEOrZw8KLcwR2qHDdSEXDLoKfoD75ucf7fb2LSkPWQ6oWyOuY-NX90bXVI5TRWJN-mXJha8pY9D2aiQ9ABBj9eAvPf6K3l4YRseCY1xDANvtnYVfFsxH4H2eOCNYjOjB6Khs3c_vQjuwjD9ElzeosCB9DIAJzvIWDkRTa6OeW0vorYHgqpzHqT3Q7e6KGCSIavP2QZrPHmgTg18NpyAuqXQ7lmFJPz0BcF0cDiJu8ToiPhPR8_vid61CE3rho7_30z1NQ&h=RMgBpdt3hEGpgo8D0Gt3h7ZXSynR-0-vM5E4bFXwn8E response: body: string: '' @@ -3581,17 +4294,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:52 GMT + - Fri, 11 Sep 2026 02:16:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287327256198&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=DtETtRBQza5x5JMluIsd2lT-C1jGtqH3MHO4vy__AWGMAXLTuv6a-kJpcoIoEz9WscOUCj0bdM2CzkfBibUkTuzipUxFbgmt6gaRBgjb2-r0kJo0K22iuUGM_Uw6oXJy41MxFTyvbNC6z_hRq82q2f3E1Bd-OZKPI9-sUliiJ-9TT5QfXsJY21k0KPDHrDhgEswUZKrFiFS3Mmzs43Ch0qEeZYXydiLntF9jAkHN01UMddPMPVzh9KQfi0YcusQhV9bCcJGDHqZ3rR3dNW8un91XwEQC7iP5V9Wn01MVqTyw1LjPC1T26JN1HY4na-mLd2Z986NDq2yzaWTtJ0PFSA&h=UvsTp-heqG4otJeuH6EbuT5UgzP7mUKsv-C_tS8Zxss + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246898000898174&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=aBg_CNtoinoj359yFqz7bi3x-iOC0JOKgfJf50MBbvqUsRpyBni8kj6GH2B_tTWbSp_ZlA9ylcO7CdW68NPwDmgrDFKaiEDSXpsDXtqa5NVgO159kO4qjt-N6Nf2YYeN8QRuur_p8ExUZmVLpPW0tSoD-gWgrPyoCo0n6YJj0WhIOJ4f9IbXB4rPQFbrg5_AZOnK2_aMDkWtzf4JZqaAvs2z-rcKf1EDpAUNncWyuinFpMvPdzjS2W8DkaB11kKa1QTxpcT3agGCOK9P767z95kIttXjqz2KQAudjV0awg5SS5o0Ib-D1sFwkmGTpTttwDqrqbzxzzkjUUMurroOqw&h=3yK5CCrpyM9IUF2Ni11ZtPgPQOZ2bY9mWMiU5OG0YhM pragma: - no-cache strict-transport-security: @@ -3601,11 +4315,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a81dfa03-9ccf-4359-9060-9db59f8b5e27 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/d8e4a63a-ab76-4710-a9f0-d57248b872bc x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 40C04B66EE3743DDBDB52DD3B7B64826 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:52Z' + - 'Ref A: 56AC33D3D1244DC683124E72F2EC346C Ref B: SYD281080711031 Ref C: 2026-09-11T02:16:39Z' x-powered-by: - ASP.NET status: @@ -3625,26 +4339,27 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246897988405550&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=aZf_EJYQXoSC6ZUL2-3lsPdL2g7Akd9a-bKGBg6bcBN6cSpzQxqe3YZaOGY9mGjmFDDAR4upDtncjfAVaaEOrZw8KLcwR2qHDdSEXDLoKfoD75ucf7fb2LSkPWQ6oWyOuY-NX90bXVI5TRWJN-mXJha8pY9D2aiQ9ABBj9eAvPf6K3l4YRseCY1xDANvtnYVfFsxH4H2eOCNYjOjB6Khs3c_vQjuwjD9ElzeosCB9DIAJzvIWDkRTa6OeW0vorYHgqpzHqT3Q7e6KGCSIavP2QZrPHmgTg18NpyAuqXQ7lmFJPz0BcF0cDiJu8ToiPhPR8_vid61CE3rho7_30z1NQ&h=RMgBpdt3hEGpgo8D0Gt3h7ZXSynR-0-vM5E4bFXwn8E response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:38.0905575"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1530' + - '4042' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:07 GMT + - Fri, 11 Sep 2026 02:16:55 GMT expires: - '-1' pragma: @@ -3658,11 +4373,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/412c232f-34c0-4b87-a885-48c8d390731f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/425ffff7-5d0b-4c2d-9691-f084b6b08dc4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F106AEBB9399466197A234094714D8A0 Ref B: BY1AA1072317025 Ref C: 2026-03-24T05:59:07Z' + - 'Ref A: F97A56BEF44E4CB5B2DA9FB896EFD9CB Ref B: SYD281080706029 Ref C: 2026-09-11T02:16:55Z' x-powered-by: - ASP.NET status: @@ -3682,7 +4397,7 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3693,9 +4408,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3703,27 +4420,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3731,33 +4454,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3765,132 +4495,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3898,97 +4657,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:07 GMT + - Fri, 11 Sep 2026 02:16:56 GMT expires: - '-1' pragma: @@ -4002,7 +4825,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8874373CF6364ED4A6D928E68C222395 Ref B: SJC211051205027 Ref C: 2026-03-24T05:59:08Z' + - 'Ref A: 8F5A659189CC4E76B50DBA3645BED45F Ref B: SYD281080708042 Ref C: 2026-09-11T02:16:57Z' status: code: 200 message: OK @@ -4020,26 +4843,27 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:38.0905575"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1530' + - '4042' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:08 GMT + - Fri, 11 Sep 2026 02:16:58 GMT expires: - '-1' pragma: @@ -4055,7 +4879,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4BBD7BE8037947428F161BE1BC7D42B1 Ref B: BY1AA1072318029 Ref C: 2026-03-24T05:59:08Z' + - 'Ref A: EEC425608D164D92BA1E3CAD1D6C5B19 Ref B: SYD281080709031 Ref C: 2026-09-11T02:16:57Z' x-powered-by: - ASP.NET status: @@ -4077,17 +4901,18 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -4095,7 +4920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:09 GMT + - Fri, 11 Sep 2026 02:16:59 GMT expires: - '-1' pragma: @@ -4109,13 +4934,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/b06d364c-d8ab-4171-87a5-ced62ff994e5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/bb67c103-b359-4f20-badc-a8efe7f94411 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 55DCD26E0B094165992D85DFDA153D77 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:59:09Z' + - 'Ref A: 493775B4947F41F5A9B002349CEB36B3 Ref B: SYD281080710029 Ref C: 2026-09-11T02:16:59Z' x-powered-by: - ASP.NET status: @@ -4123,7 +4948,7 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"registries": [], "secrets": [{"name": - "acr000003azurecrio-acr000003", "value": "***"}]}}}' + "acr000003azurecrio-acr000003", "value": "zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}]}}}' headers: Accept: - '*/*' @@ -4140,7 +4965,7 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -4150,17 +4975,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:59:09 GMT + - Fri, 11 Sep 2026 02:17:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898214608610&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=KVemXHIlwfhit46XrFv5UBX2UVCBZqRucCE6ER6Flcjp99vcxhsN2B065tFxfJdKokv2h8LAwnz-pfqm6HqY1XDphuxW9aBhT1eM2RrexJEzZA_TldUGZ3AMwheZl8BbfZDdnNcs0dGef4CzI1Ynx_TASo1ObTveCXALKP-2kNh_BFPTVSvF6Q5XLQokXkE4VESC37oApwrZWJE9iJPhkbTI_ZapwH40J1P4VegTtR1VCZnaisQtCe5YXlx1xrVn8pIn0oulhCVhUifw2wwY3fUz-bU1qLtgMZR3wgoBL5yS0OgAS2MATP0_-UZBXiva2AGI3Nppad_5bctLDyA3uA&h=ccsNujl8VMmMfQv2-7n251INENUAMv4vQjhHrOU0wUM pragma: - no-cache strict-transport-security: @@ -4170,11 +4996,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/c4c74df1-a1ef-4cec-bb76-6ccd5f62469c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/8d104f3c-5d2f-46de-87a8-09ad5373863f x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 8A8EDB2792AD4D15A19DC21C041680BF Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:59:09Z' + - 'Ref A: 3D92325818FA46E2A8522784996F86FC Ref B: SYD281080711052 Ref C: 2026-09-11T02:17:00Z' x-powered-by: - ASP.NET status: @@ -4194,9 +5020,9 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898214608610&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=KVemXHIlwfhit46XrFv5UBX2UVCBZqRucCE6ER6Flcjp99vcxhsN2B065tFxfJdKokv2h8LAwnz-pfqm6HqY1XDphuxW9aBhT1eM2RrexJEzZA_TldUGZ3AMwheZl8BbfZDdnNcs0dGef4CzI1Ynx_TASo1ObTveCXALKP-2kNh_BFPTVSvF6Q5XLQokXkE4VESC37oApwrZWJE9iJPhkbTI_ZapwH40J1P4VegTtR1VCZnaisQtCe5YXlx1xrVn8pIn0oulhCVhUifw2wwY3fUz-bU1qLtgMZR3wgoBL5yS0OgAS2MATP0_-UZBXiva2AGI3Nppad_5bctLDyA3uA&h=ccsNujl8VMmMfQv2-7n251INENUAMv4vQjhHrOU0wUM response: body: string: '' @@ -4204,17 +5030,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:59:11 GMT + - Fri, 11 Sep 2026 02:17:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287511768055&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=pMi2blXJDErgbE126YwivS3ju2BCeO_rSSG-qvMtikc5G1cMzlYVGkmt-MjxDN6YckUyTVz9eiWWjPhHUCLMhT9xraJ61HtyTtezMT85rNo6T4bkpls9LbKJeXxsC60EmWY6pVCu5fmCkZL9n5HVBkTBL2jIa4KDAVMVtJ8FTMbbm2bN6LD-aQ86c4HuFeQUPIL8BWkWHNyA3ng4bCj9C3b9Waur4F0w3xNK3xfcBbYamQOVJkblxUTch1N65-EA0dfpETib59TVqoeHvTx3u8l5oPnOb6Uj7eyRXIGb7PBuTGLmY3of0RWFnO1eRsDugb-9y8igBAr6D-BuSyouUw&h=Y-aaUB7EIEVRRoSQvo2GH0VNCvdZhKrSavPZFDxirVQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898227584703&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=NIHIli6Oqk-aUbNJBXq_C2jPZ8yage0YgVIShM-4CBuoCGk0XBntZYIg04MJDyjvu7ZLdkQifrEb0adhjD-Z7z4gbti5esC-LV7h_gaNsq-wbcImMxmVygorx-28MIYeQM7QRLyvBTzK99_8NWkFpqS1s_nn68Z3WVf77EikyaotsBnLelqLWdzd__aUXvK2KTCzfOm0oLpy0Qo6WWTF8cDHHF2u-n6g7qOVw7Ktfya3K6en-f89-9kJsy0n97PqDfboQCgfSlAFwfAJgcoFcmnAwd5OWmKb-XQqTrbNfLy6ioMQetfuQFQab9qd5on5GOZeR6-SpLtNFVFjT7Al7Q&h=9Bm3XlzoHdL2AVd7_UWi-Xj1yYnTCknpo22sKm0vaYM pragma: - no-cache strict-transport-security: @@ -4224,11 +5051,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/4a18ab5f-c2ad-4ba8-afcb-db8ddf36b5e9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/35e50155-e6d3-4762-b9d1-5d81af827b68 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 3F5722B396484561BC53A0ADD001CC9F Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:59:10Z' + - 'Ref A: B1075CB2EAF948B8A8C995D044E845FC Ref B: SYD281080709060 Ref C: 2026-09-11T02:17:02Z' x-powered-by: - ASP.NET status: @@ -4248,26 +5075,27 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898214608610&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=KVemXHIlwfhit46XrFv5UBX2UVCBZqRucCE6ER6Flcjp99vcxhsN2B065tFxfJdKokv2h8LAwnz-pfqm6HqY1XDphuxW9aBhT1eM2RrexJEzZA_TldUGZ3AMwheZl8BbfZDdnNcs0dGef4CzI1Ynx_TASo1ObTveCXALKP-2kNh_BFPTVSvF6Q5XLQokXkE4VESC37oApwrZWJE9iJPhkbTI_ZapwH40J1P4VegTtR1VCZnaisQtCe5YXlx1xrVn8pIn0oulhCVhUifw2wwY3fUz-bU1qLtgMZR3wgoBL5yS0OgAS2MATP0_-UZBXiva2AGI3Nppad_5bctLDyA3uA&h=ccsNujl8VMmMfQv2-7n251INENUAMv4vQjhHrOU0wUM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:17:00.8826984"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1477' + - '3989' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:26 GMT + - Fri, 11 Sep 2026 02:17:18 GMT expires: - '-1' pragma: @@ -4281,11 +5109,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/aaada086-24c0-41bf-a483-f07ad8046a33 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/3cb0032a-7d7b-4753-b89a-118b0005b64d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6502C8A0333E4A0CA10E97706A2AB769 Ref B: BY1AA1072319054 Ref C: 2026-03-24T05:59:26Z' + - 'Ref A: 7A3FAF6FB9E64E30807F1B5E9816442C Ref B: SYD281080709060 Ref C: 2026-09-11T02:17:18Z' x-powered-by: - ASP.NET status: @@ -4305,7 +5133,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -4316,9 +5144,11 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4326,27 +5156,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4354,33 +5190,40 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile + Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -4388,132 +5231,161 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India + Central","Belgium Central","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -4521,97 +5393,161 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Germany North","New Zealand + North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Germany North","New + Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea + South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France + South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia + West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Jio India West","Korea Central","Malaysia + West","North Europe","Norway East","Poland Central","South Africa North","South + Central US","South India","Spain Central","Switzerland North","Switzerland + West","UAE North","UK West","West Central US","West US 2","West US 3","Jio + India Central","Belgium Central","Chile Central","Germany North","Korea South","New + Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North + Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK + South","Canada Central","Canada East","Mexico Central","North Central US","West + Central US","Central US","West US 2","Brazil South","France Central","Germany + West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New + Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland + Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland + North","West US 3","West US","East US 2","Italy North","Central India","East + US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '49711' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:26 GMT + - Fri, 11 Sep 2026 02:17:19 GMT expires: - '-1' pragma: @@ -4625,7 +5561,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9E03BC5C36644528B65F238E361EEF43 Ref B: BY1AA1072318054 Ref C: 2026-03-24T05:59:26Z' + - 'Ref A: 6699AAF733CD4EE4B7C31CB03994DBB9 Ref B: SYD281080712036 Ref C: 2026-09-11T02:17:19Z' status: code: 200 message: OK @@ -4643,26 +5579,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West + US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:17:00.8826984"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1477' + - '3989' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:27 GMT + - Fri, 11 Sep 2026 02:17:20 GMT expires: - '-1' pragma: @@ -4678,7 +5615,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3CA920F256DE4A6B8C325E2C8BEA6282 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:59:27Z' + - 'Ref A: D8753A0EC2624AC289D010E356C01455 Ref B: SYD281080712036 Ref C: 2026-09-11T02:17:20Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml index 112678c4913..cacb942b4f6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -26,10 +26,21 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -37,8 +48,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -46,8 +58,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -55,8 +68,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -64,8 +78,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -73,8 +88,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -82,56 +98,63 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -139,8 +162,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -148,8 +172,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -157,8 +182,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -166,17 +192,18 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '25101' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:46:36 GMT + - Fri, 11 Sep 2026 02:13:33 GMT expires: - '-1' pragma: @@ -190,7 +217,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 14D668AA37F34CC99A069C2760C81EAE Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' + - 'Ref A: 59C2A1C5453B445D8E9ED6F67F463109 Ref B: SYD281080705029 Ref C: 2026-09-11T02:13:33Z' status: code: 200 message: OK @@ -213,23 +240,23 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A46%3A40.4548437Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A13%3A34.5107025Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896147611769&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AGmFYFKZPdS_MiNmqqYiGeoJAVUOxngRR-N3v5BZX4s3AC5Pwz_mpxMYFViCvyFJMjXCuOTdFkwgyZELEPTPD4wuPSTOqfQZuDndr8LwcwuiEtyePsA3rKYpdRfZ17eZ-Ki-hUvmKFFxMeYcqRexsPJ6wIhh0rihkEc8VN3MNVO_5sdzy0fj4NdNrf4yM-w2te0EST3wMOOF8awgF7ezWWNvXCOctAfFQ6qdwJ2CY2L7Vx9LI6De39N-vYLLudA-44IqT5wwK0jJU736WjrI2NexetmlCR3sAQ9HDTbYGQeMUPiiOUtdqfQhB9oQA1CX-SfXqLWAaTmCWPm4RX1umQ&h=FGR8CIbqwJqL8tMPEX3vKYJNj-rxlxzBAlD12weUgU8 cache-control: - no-cache content-length: - - '854' + - '1029' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:46:39 GMT + - Fri, 11 Sep 2026 02:13:34 GMT expires: - '-1' pragma: @@ -241,11 +268,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/612f6a2c-e464-4fcb-9b7c-63e8002da5ea + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1d733a0e-b3f4-40a8-8326-9d710e6796a4 x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: 4E6BB32AB61D41C0BC89F502B449B87E Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' + - 'Ref A: BC5C055E3E4D4AEFAC92BA796F1951DE Ref B: SYD281080705042 Ref C: 2026-09-11T02:13:33Z' status: code: 201 message: Created @@ -263,17 +290,17 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896147611769&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AGmFYFKZPdS_MiNmqqYiGeoJAVUOxngRR-N3v5BZX4s3AC5Pwz_mpxMYFViCvyFJMjXCuOTdFkwgyZELEPTPD4wuPSTOqfQZuDndr8LwcwuiEtyePsA3rKYpdRfZ17eZ-Ki-hUvmKFFxMeYcqRexsPJ6wIhh0rihkEc8VN3MNVO_5sdzy0fj4NdNrf4yM-w2te0EST3wMOOF8awgF7ezWWNvXCOctAfFQ6qdwJ2CY2L7Vx9LI6De39N-vYLLudA-44IqT5wwK0jJU736WjrI2NexetmlCR3sAQ9HDTbYGQeMUPiiOUtdqfQhB9oQA1CX-SfXqLWAaTmCWPm4RX1umQ&h=FGR8CIbqwJqL8tMPEX3vKYJNj-rxlxzBAlD12weUgU8 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n - \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n + \ \"name\": \"MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=2zlUjXyHWtAPTdhqW49DgbFj19nbk9feW1Dh7Dp6svWzzuoAgAnhjKGpiHxdjhjMNt4BhNDdI-XvV5rTn22jw5j0K5IuoXu8W2o5W9K01bbZ2PztIUILTQFh8eUYVorXzzpguoNjPJoYVoE6bIBYUbMybV2a9CWfYl9moAfCV-r4RMtl6vEFR8bZJ0mYHTb_XJmRBbzQmO1ZzKepXj8QKg-NzUXxeJB5dmbOZSLeP9YBGsTp4h3bXpsHdCfnd6bM-_UI3CmuEuQ5FtQkxvZtAZHBLOGhR7ly1rU0yxQJ45kW34TBb6_l3Ifz5bI-G75paduolswbv63azBcPaEdpug&h=McwwVis7Zsva-Yil-eN0EHJzXYcGpCxIbxW_GNcZ_w4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896160090314&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=qGiHPAacphSlJQZFtwL9KtcHt8lqixnW53B5zljAfFeuqflbVEPjgQJF5KdrODNGmPQNWvKNIX8Bq0a-j-PTdoLeZEe8HqLynPLJ1SRe1qv38db0qHQ2EjVsDR5mnEq-32jIoWeUt7eOKXFZK2tP2DmRFTo69Tnj8tx0Xo5WyW4Q-i_P9ngTDkhHHfPlLEt-fGT_FD-hqVyBLolrB5fRwXEeLNHFghkebphTqfj8LdzQ1W2S1P0_ppF7X1SU3hgReCr6AvMkRUqouURQfe0vvtTdbD-5UgZJmkkth-f_jU1xTA4QjBop17_nrdbJlEMU68rdRdUyqTZcgyeubzt0zQ&h=HdllVPXSOLb-2SHEMfK4FoxFq3o5il7VkkcIy5mX04s cache-control: - no-cache content-length: @@ -281,11 +308,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:46:40 GMT + - Fri, 11 Sep 2026 02:13:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=oAThIfmeJGp6mtK3Lby8ZpBGkH42KUrPX7Lbf-NMjstji4EE75XMiFab7VDChvfyw5pUls5uVg7tXY4QCpwp0MOYd-Yyjp-SNUbT65fDGUGIwBKGOiX925M1CyCgj4hQ0zm5PHGkXSLM6jculZAUc2T4I_JRPRprbHlR3_wGQMNVE8b27Nr0S6M243qCX-c4pu030ZsTTLL8B62Cb4fAxbZUZngDyXD6DImfNroox_XmW0WQDv1ck5nnZW3b1gp27SI8tHBI9V5GlTXaoA2uJw3GIXIffiXhlshlGuBjWMRgNwmE24Ewg1skL7ij6fG1xIFc_5_yUGUl8NZJjqYjpg&h=c4yFJvTp9RvgrTuYZftjBbEp9E6BEHcKeHTEmp79-pA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896160246499&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=OMaSzlGt8Ds21iHtWqOEi-_ypdZfNMSM7nvWfnWUk2iag6Wwcyae3CgT6rFFjTDfE9hOuAMUC8Nn4jp40bWVJH2VEMJGgRzkpyk09pXq0YG4AU2dPmnHuXWDyKE1-TuIvDK7QEZw8NhFZDxwAwpp6RVG_W4SqX4-_LJZwh21mp0Sy-fptpvnqQJlsRE2g9qmDJ8XEAossCx0V7y_cEmIDRTOBeez0qHnuyuz3YwqgiKHii_ZtLnbX2p8UTMmp_uv9XlOPPlJjxhZYwMZnsR5U8Ursh00F24lRcCkBUegqCUip_DAU_jOcDg82seAkNYjLkX4aSFwkvfsWVLuoRzOcg&h=JDHrvphEYQRSX45s99sDgTCtIl8Kq5pdoKQergYrj0k pragma: - no-cache strict-transport-security: @@ -295,11 +322,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/bbf057af-330e-47b4-8bd7-bfc1d6d2a347 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6f1a71e0-9cd6-4519-8017-3e12a40858c6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3DF9534822984AE1840E2174BF76141D Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:40Z' + - 'Ref A: 2FEE3D38BC344B889A1A8085265C7131 Ref B: SYD281080712031 Ref C: 2026-09-11T02:13:35Z' status: code: 200 message: OK @@ -317,13 +344,13 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896147611769&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AGmFYFKZPdS_MiNmqqYiGeoJAVUOxngRR-N3v5BZX4s3AC5Pwz_mpxMYFViCvyFJMjXCuOTdFkwgyZELEPTPD4wuPSTOqfQZuDndr8LwcwuiEtyePsA3rKYpdRfZ17eZ-Ki-hUvmKFFxMeYcqRexsPJ6wIhh0rihkEc8VN3MNVO_5sdzy0fj4NdNrf4yM-w2te0EST3wMOOF8awgF7ezWWNvXCOctAfFQ6qdwJ2CY2L7Vx9LI6De39N-vYLLudA-44IqT5wwK0jJU736WjrI2NexetmlCR3sAQ9HDTbYGQeMUPiiOUtdqfQhB9oQA1CX-SfXqLWAaTmCWPm4RX1umQ&h=FGR8CIbqwJqL8tMPEX3vKYJNj-rxlxzBAlD12weUgU8 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n - \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n + \ \"name\": \"MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -333,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:41 GMT + - Fri, 11 Sep 2026 02:14:36 GMT expires: - '-1' pragma: @@ -345,11 +372,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/81c94ae3-b2ff-4707-b911-25038615fc05 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/92b112b9-b15b-4094-b098-90e323bf9ae5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7170097FDA494F73AD92F49BDF7463EC Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:41Z' + - 'Ref A: 55EDA61B75EC4C1198670AA7B3B59248 Ref B: SYD281080706042 Ref C: 2026-09-11T02:14:36Z' status: code: 200 message: OK @@ -367,21 +394,21 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A35.9858707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1010' + - '1063' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:42 GMT + - Fri, 11 Sep 2026 02:14:38 GMT expires: - '-1' pragma: @@ -395,7 +422,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 035D54B3255E499881922D63869FAB24 Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:42Z' + - 'Ref A: 30BB2D6310554E998332AA42043562E3 Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:37Z' status: code: 200 message: OK @@ -413,7 +440,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -426,10 +453,21 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -437,8 +475,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -446,8 +485,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -455,8 +495,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -464,8 +505,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -473,8 +515,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -482,56 +525,63 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -539,8 +589,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -548,8 +599,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -557,8 +609,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -566,17 +619,18 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '25101' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:44 GMT + - Fri, 11 Sep 2026 02:14:39 GMT expires: - '-1' pragma: @@ -590,7 +644,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C8CC86C422754D2E85AACB3BE44C3600 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:44Z' + - 'Ref A: DF19B2BBD44C4B61A4637C7E93BF6492 Ref B: SYD281080709036 Ref C: 2026-09-11T02:14:38Z' status: code: 200 message: OK @@ -608,21 +662,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A35.9858707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1010' + - '1063' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:45 GMT + - Fri, 11 Sep 2026 02:14:39 GMT expires: - '-1' pragma: @@ -636,7 +690,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1BC9E2B39D9245B4AC12CE4512CEB381 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' + - 'Ref A: 8C68D7BB0BC0497897D05F4D7F691214 Ref B: SYD281080711023 Ref C: 2026-09-11T02:14:39Z' status: code: 200 message: OK @@ -658,21 +712,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A44.0150819Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1036' + - '1090' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:48 GMT + - Fri, 11 Sep 2026 02:14:45 GMT expires: - '-1' pragma: @@ -684,11 +738,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/742d6299-3fda-4c5a-8cd6-3219cb597f5d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e7d14647-0e9f-4fe2-92dd-20bb6c97df61 x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: BC2ABC64EC3D4A709A14A9CF271DD72A Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' + - 'Ref A: 734219389EAE4160A9F6B62571257B39 Ref B: SYD281080710031 Ref C: 2026-09-11T02:14:40Z' status: code: 200 message: OK @@ -706,7 +760,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -719,10 +773,21 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -730,8 +795,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -739,8 +805,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -748,8 +815,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -757,8 +825,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -766,8 +835,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -775,56 +845,63 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -832,8 +909,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -841,8 +919,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -850,8 +929,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -859,17 +939,18 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '25101' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:49 GMT + - Fri, 11 Sep 2026 02:14:45 GMT expires: - '-1' pragma: @@ -883,7 +964,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EAF88A5759614A35B5FE3F9D33A13C64 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' + - 'Ref A: 0787E13C5C284B2798544791B5573093 Ref B: SYD281080705034 Ref C: 2026-09-11T02:14:46Z' status: code: 200 message: OK @@ -901,21 +982,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A44.0150819Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1036' + - '1090' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:50 GMT + - Fri, 11 Sep 2026 02:14:46 GMT expires: - '-1' pragma: @@ -929,7 +1010,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2FF7CDBE9BA54C8D8650ABCD6AF4CBDE Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' + - 'Ref A: A5AF0C8CCAE24F22808F5F03AFD2D8FB Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:46Z' status: code: 200 message: OK @@ -951,21 +1032,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A49.7666068Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1019' + - '1073' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:54 GMT + - Fri, 11 Sep 2026 02:14:50 GMT expires: - '-1' pragma: @@ -977,11 +1058,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a4a7e56f-0fb1-4688-a6e2-c38e6854950d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/7ef9baf3-e7f2-483d-b790-c930aa5df29a x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: CC58CC95D28E42E2AC5D7976BB206190 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:51Z' + - 'Ref A: 4F2390CA50EC4B9F9AE11F0410A140C8 Ref B: SYD281080708062 Ref C: 2026-09-11T02:14:47Z' status: code: 200 message: OK @@ -999,12 +1080,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2025-04-25T09:46:33Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2026-09-11T02:13:28Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1013,7 +1094,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:54 GMT + - Fri, 11 Sep 2026 02:14:51 GMT expires: - '-1' pragma: @@ -1027,7 +1108,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82A00F91D7F44BB18BB3525F8E8419E2 Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' + - 'Ref A: D947BCAD87E940C68B26A27ACB32D1EA Ref B: SYD281080710036 Ref C: 2026-09-11T02:14:52Z' status: code: 200 message: OK @@ -1049,7 +1130,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: @@ -1063,7 +1144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:58 GMT + - Fri, 11 Sep 2026 02:14:52 GMT expires: - '-1' pragma: @@ -1079,13 +1160,13 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 34E404966CEF472EA92E9DFD507E2DFD Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' + - 'Ref A: 2182460308A3483BB8732111830A66D2 Ref B: SYD281080708052 Ref C: 2026-09-11T02:14:52Z' status: code: 200 message: OK - request: body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"adminUserEnabled": - false, "anonymousPullEnabled": false}}' + false}}' headers: Accept: - application/json @@ -1096,31 +1177,29 @@ interactions: Connection: - keep-alive Content-Length: - - '125' + - '94' Content-Type: - application/json ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-11T02:14:54.7024172Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:02.4129227+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:02.4147569+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1499' + - '1661' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:14 GMT + - Fri, 11 Sep 2026 02:15:02 GMT expires: - '-1' pragma: @@ -1132,113 +1211,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f70e4cc0-badd-4f28-882f-df43beffd4c9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4f7cc215-c7a5-4425-89a9-5feebb39bab8 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 4877C4F6775846EB9A76F6C528485FB7 Ref B: SEL221051503047 Ref C: 2025-04-25T09:47:59Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2025-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712960276721&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=3zeGk9stkwpg3-ppqYbu6bel9pbacXlOCJg96HPmtutzmgoCKelGq61Pcb1PDMGKJd21_FUyjkbrcoxyoc0tuuxx8QXcHKrJ7KYFIIyoAgRg6T-XGswAUJg4uSyFLBUbJrRkreHiQjhf0iCCvxaYZwrCAj6EMohm6RUjy3-u3DTPux0Egh-k2PmKzIuR2M9QjBmyvxBu8h3eA3MxY79JJD7FRb7m1NxZhLD4zCktaKtxb2xvTOGQBM3LzDKt5Q2NPXNiXVkPLtWmf8PZBLoklw4qSvUH2TvES-K3uslNHVFTFyx1B9LmasD_Lfu3IvZQ_93UxqtAy8FhBu7LIc57Ng&h=A8h3BkyhdqBQJDgyQo0Ku2W95H8ZkbtU_iG0rvI4ao0 - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/8be659ca-2e02-40d4-ab8a-7c10f7296cb3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 670E002249964473B58CBFC8A85BEAA6 Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-03-01-preview - cache-control: - - no-cache - content-length: - - '1500' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 461D93259576462D9DBF8E7E7DCCDB6F Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:16Z' + - 'Ref A: 6C50257E88474AD49F2C9920E8BA7F21 Ref B: SYD281080710025 Ref C: 2026-09-11T02:14:54Z' status: code: 200 message: OK @@ -1256,30 +1235,21 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/huanglitestcanary","name":"huanglitestcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg1","name":"huanwucanaryreg1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/agentpoolcanary2","name":"agentpoolcanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg2","name":"huanwucanaryreg2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwueastus2euap01","name":"huanwueastus2euap01","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ctest/providers/Microsoft.ContainerRegistry/registries/cidregistry","name":"cidregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-04-27T17:47:38.6648741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-04-27T17:48:14.204558Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msearch/providers/Microsoft.ContainerRegistry/registries/msearch1","name":"msearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-17T20:22:10.5860463Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-17T20:22:10.5860463Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/ACRSoftDelete","name":"ACRSoftDelete","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-25T14:52:27.3960954Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:52:05.6107964Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/HustroudRealCanary","name":"HustroudRealCanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-18T17:44:09.5117757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-19T15:45:02.6902047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch","name":"johshacrmetadatasearch","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:10:10.212306Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:10:10.212306Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ptcBrownbag","name":"ptcBrownbag","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T15:58:17.8406846Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T15:58:17.8406846Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch1","name":"johshacrmetadatasearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:56:17.811156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:56:17.811156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadataUnitTest","name":"metadataUnitTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-12T17:24:53.9169276Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T21:12:45.4115208Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadatatestregistry","name":"metadatatestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-18T18:27:11.2513411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-18T18:27:11.2513411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/wus2test","name":"wus2test","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-24T23:10:32.9424682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-24T23:10:32.9424682Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ContainerRegistryMetrics","name":"ContainerRegistryMetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"87d7f6ef-5c58-4f3b-af9c-0cf7c6feee31","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-04T16:26:03.6327251Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-30T19:48:51.5345767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wju/providers/Microsoft.ContainerRegistry/registries/wjutasktest","name":"wjutasktest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-17T04:46:48.6292944Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-17T04:46:48.6292944Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arc-demo-backup/providers/Microsoft.ContainerRegistry/registries/arcdemobackupregistry","name":"arcdemobackupregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-25T16:42:21.3555381Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-25T16:45:58.9778337Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cav2-e2e-loadtest/providers/Microsoft.ContainerRegistry/registries/cav2e2e","name":"cav2e2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-28T01:05:19.8384666Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-28T01:05:19.8384666Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/devcabarker","name":"devcabarker","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-10T21:18:26.7436104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-10T21:18:26.7436104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-acr23oct24cp4/providers/Microsoft.ContainerRegistry/registries/acr23oct24cp4","name":"acr23oct24cp4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-23T00:21:35.2239266Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-23T00:21:35.2239266Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-bcdr-testing/providers/Microsoft.ContainerRegistry/registries/acrbcdrcanary","name":"acrbcdrcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T19:03:56.0674605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T19:03:56.0674605Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest21feb25/providers/Microsoft.ContainerRegistry/registries/khallcmktest21feb25cr","name":"khallcmktest21feb25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"a6494d55-348c-4a6b-b0bf-86e66b3b1c34","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest21feb25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest21feb25":{"principalId":"33e30c7c-2af5-47c3-b727-c300612a6bd3","clientId":"d9d9a689-7762-4854-8ab1-5e80c6cbd318"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:30:43.9875765Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:27:28.123178Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeyclitestacr","name":"zoeyclitestacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-01T00:53:21.8364822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-01T00:53:21.8364822Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistry","name":"jumboregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-07T19:33:43.6103413Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-28T18:08:23.8862902Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistryv2","name":"jumboregistryv2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-26T18:27:08.098728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-26T18:46:43.1105234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistrytest/providers/Microsoft.ContainerRegistry/registries/jumboregistrytest","name":"jumboregistrytest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-16T16:26:43.942495Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-21T22:02:05.7559949Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry60tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry60tb","name":"jumboregistry60tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-26T23:36:59.9432804Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-26T23:36:59.9432804Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry40tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry40tb","name":"jumboregistry40tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-15T23:21:22.6561217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-15T23:21:22.6561217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/helmdemo/providers/Microsoft.ContainerRegistry/registries/helmdemo","name":"helmdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/TELEPORTCAPSTEST","name":"TELEPORTCAPSTEST","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-12T23:27:12.0941403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-12T23:28:06.1559209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/teleportmetricstest","name":"teleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-10T00:23:36.0112689Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-30T00:48:30.8799876Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CanaryTesting/providers/Microsoft.ContainerRegistry/registries/Testing2","name":"Testing2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T23:22:51.5381198Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T23:24:37.9845219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resh-rg/providers/Microsoft.ContainerRegistry/registries/allaboutacrmetrics","name":"allaboutacrmetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-03T17:33:34.0668762Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-01T23:30:31.3238267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/dpteleportmetricstest","name":"dpteleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-22T22:25:33.9482191Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-22T22:25:33.9482191Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshtokensandscopemaps/providers/Microsoft.ContainerRegistry/registries/johshtokensandscopemaps","name":"johshtokensandscopemaps","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-07T23:00:35.3714024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-07T23:00:35.3714024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-acr-0425/providers/Microsoft.ContainerRegistry/registries/joshbaunachcr0425","name":"joshbaunachcr0425","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-25T21:22:22.9789133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-25T21:23:46.6667423Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zaihaotest/providers/Microsoft.ContainerRegistry/registries/yzhonpremtest","name":"yzhonpremtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T04:47:53.6558862Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T04:47:53.6558862Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-avtakkar-test/providers/Microsoft.ContainerRegistry/registries/avtakkarcuseuap","name":"avtakkarcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-14T20:31:16.8985248Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T17:27:33.1500508Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jasminetest/providers/Microsoft.ContainerRegistry/registries/jtcuseuap","name":"jtcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-22T02:10:13.641539Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-22T02:10:13.641539Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteventrivy","name":"transteventrivy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-30T21:34:16.8134465Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-30T21:34:16.8134465Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl","name":"transtevendnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-05T23:54:28.5278572Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-05T23:54:28.5278572Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteveneg","name":"transteveneg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-10T03:14:23.9929123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-10T03:14:23.9929123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl3","name":"transtevendnl3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-16T23:41:13.5929237Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-16T23:41:13.5929237Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl4","name":"transtevendnl4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"jioindiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-17T23:09:08.7328512Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-17T23:09:08.7328512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/khallcmksitest/providers/Microsoft.ContainerRegistry/registries/khallcmksitestcr","name":"khallcmksitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"principalId":"ed54f96d-dcec-4858-8961-c187ef371ea1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest":{"principalId":"4ef86bc3-acd0-4d8f-ac7f-0fb89ee9dd9c","clientId":"714c506c-c785-4137-91d1-6b30d94ba869"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-mi-khallcmksitest2":{"principalId":"b8fe8636-2dd5-433a-ac06-9844b015200f","clientId":"e11be5d2-ef82-478f-a47e-3a11e74420db"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:40:25.1585115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-hallcssitest/providers/Microsoft.ContainerRegistry/registries/hallcssitestcr","name":"hallcssitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T02:45:10.4252719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T02:45:10.4252719Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcstest21feb/providers/Microsoft.ContainerRegistry/registries/khallcstest21febcr","name":"khallcstest21febcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcstest21feb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcstest21feb":{"principalId":"55ff7d39-c75c-477c-9ad3-f8498a796069","clientId":"4ad31b06-31e7-4e12-b3d4-1b50dcb308a8"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T14:44:11.7684838Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T14:44:11.7684838Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencopa","name":"transtevencopa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T22:08:27.2769645Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T22:08:27.2769645Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencsscbugbash","name":"transtevencsscbugbash","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-07T00:09:08.1470686Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-07T00:09:08.1470686Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnltest","name":"transtevendnltest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T23:47:19.0980968Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T23:47:19.0980968Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyindexingcheck","name":"esreyindexingcheck","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-03T22:48:02.6111531Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T22:48:02.6111531Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyptc","name":"esreyptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T19:14:18.4005356Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T19:14:18.4005356Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegbatestuksouth/providers/Microsoft.ContainerRegistry/registries/mabelcruksouth","name":"mabelcruksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:24:24.9406258Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:24:24.9406258Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangliregor1/providers/Microsoft.ContainerRegistry/registries/huangliregor1","name":"huangliregor1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-11-12T22:31:43.4444409Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T22:31:43.4444409Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoacr","name":"trisavoacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:41:15.6967317Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T19:15:48.3712479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoscus","name":"trisavoscus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:49:13.3076715Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-14T17:50:36.9332722Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedieus2euap","name":"mabenedieus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-14T18:27:49.7947511Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T18:29:51.7091925Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedicuseuap","name":"mabenedicuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T18:16:40.5262072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T18:16:40.5262072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/artifactcache-loadtesting/providers/Microsoft.ContainerRegistry/registries/ptcloadtesteus2","name":"ptcloadtesteus2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T16:11:07.1449316Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T16:11:38.3226794Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vlintestrgcus/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0923","name":"vlintestregistry0923","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","createdByType":"Application","createdAt":"2024-09-23T05:55:37.3474352Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-23T05:57:23.6489466Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest25/providers/Microsoft.ContainerRegistry/registries/khallcmktest25cr","name":"khallcmktest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"967a4a89-ddf9-44ba-91de-bb7fe045ccf6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest25":{"principalId":"89e91518-6221-4e74-a94b-94c243dddd91","clientId":"66642bf7-8f88-4e81-acd3-c76f67771dc7"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:06:32.7263644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T13:12:54.2277014Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reshrg/providers/Microsoft.ContainerRegistry/registries/reshregistry","name":"reshregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/huanglitest2","name":"huanglitest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T00:35:02.358293Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T00:35:02.358293Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayCR","name":"grayCR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-27T18:48:50.2457782Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry2","name":"huanwuregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry","name":"huanwuregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graycuseuap","name":"graycuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/HuangliRegistry","name":"HuangliRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/toddysm-connected-registry-test/providers/Microsoft.ContainerRegistry/registries/tsmconnectedregistrye2e","name":"tsmconnectedregistrye2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{"Application":"Connected - ACR","Owner":"Toddy Mladenov","OwnerAlias":"memladen"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-12-19T00:19:43.4580083Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-12-19T00:19:43.4580083Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acronpremdemo/providers/Microsoft.ContainerRegistry/registries/acronpremdemo","name":"acronpremdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-07T21:07:11.9486427Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-07T21:07:45.1921076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graytestaudit","name":"graytestaudit","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-14T00:16:03.8901815Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-14T00:16:03.8901815Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acrbuildtest/providers/Microsoft.ContainerRegistry/registries/acrbuildtest","name":"acrbuildtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-07-21T19:06:09.085878Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-07-21T19:07:50.9613994Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/usilwal-jenkins-new/providers/Microsoft.ContainerRegistry/registries/usilwalaks","name":"usilwalaks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-05-12T20:31:55.4138937Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:31:55.4138937Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jenkins-eus-test/providers/Microsoft.ContainerRegistry/registries/jenkinsclusteracr","name":"jenkinsclusteracr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlppepremium","name":"luisdlppepremium","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-21T17:52:12.2228993Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-21T17:57:50.9700404Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpptc","name":"luisdlpptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"norwaywest","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-03T18:08:13.5955085Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T18:16:12.4031384Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ratify/providers/Microsoft.ContainerRegistry/registries/ratifystaging","name":"ratifystaging","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-27T18:59:25.1969543Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-27T19:05:21.9181726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchweu","name":"metadatasearchweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:36:53.0035159Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:12.1766743Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchwcus","name":"metadatasearchwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:37:59.1788133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:19.8798611Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/msrcreproeus","name":"msrcreproeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T23:53:23.5651827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T23:53:23.5651827Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-dev/providers/Microsoft.ContainerRegistry/registries/joshbaunach","name":"joshbaunach","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-22T21:55:17.6013429Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T21:57:42.8457726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/raymsrcrepro","name":"raymsrcrepro","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T00:18:38.559845Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T00:18:38.559845Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mcr/providers/Microsoft.ContainerRegistry/registries/mcreastus","name":"mcreastus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-02T23:50:36.9325308Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-02T23:54:56.5161962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-0314/providers/Microsoft.ContainerRegistry/registries/joshbaunach0314","name":"joshbaunach0314","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-14T17:02:53.5065769Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-14T17:04:59.4400271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxprivate","name":"yxprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-30T22:44:41.632583Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-30T22:44:41.632583Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/demobackup","name":"demobackup","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-02T23:22:15.1018324Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-02T23:22:15.1018324Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxacr","name":"yxacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T03:41:56.7708255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T03:41:56.7708255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05061/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05061","name":"joshbaunacharc05061","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T15:47:01.800294Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T15:48:08.5316016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/acrprivateyx","name":"acrprivateyx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-15T16:33:49.5047405Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-15T16:33:49.5047405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05161/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05161","name":"joshbaunacharc05161","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-16T21:33:46.3576779Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-16T21:34:21.2790753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayuks","name":"grayuks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-29T20:26:53.7511383Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-29T20:26:53.7511383Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/transtevenarc","name":"transtevenarc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:23:04.7415277Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:23:46.0615176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/connectedregistrypatrick","name":"connectedregistrypatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:45:48.7672127Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:45:48.7672127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegba/providers/Microsoft.ContainerRegistry/registries/mecr1","name":"mecr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T20:29:22.379623Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T20:29:22.379623Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gildardog-rg/providers/Microsoft.ContainerRegistry/registries/gildardogdev","name":"gildardogdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T09:17:52.9777011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T20:24:21.2354751Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/brett-test/providers/Microsoft.ContainerRegistry/registries/bbartifactsynctest","name":"bbartifactsynctest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:12.337382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:12.337382Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpcanary","name":"luisdlpcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:47.6991576Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:47.6991576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpuksouth","name":"luisdlpuksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:05:23.628535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:05:23.628535Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpwestcentralus","name":"luisdlpwestcentralus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:19:21.7368016Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:19:21.7368016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testnotation","name":"testnotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T02:38:59.8279972Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-15T02:34:35.9797209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus","name":"yuaneus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-15T23:15:28.9453055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-15T23:20:48.2718399Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus2euapbasic","name":"yuaneus2euapbasic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-14T21:34:01.1464029Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-14T21:34:01.1464029Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxwus","name":"yxwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-16T19:59:48.2279105Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-16T19:59:48.2279105Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivacr","name":"devdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/azurethepolarbear","name":"azurethepolarbear","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vscode-docker-testing/providers/Microsoft.ContainerRegistry/registries/rbacExtensionTest","name":"rbacExtensionTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivgeo","name":"devdivgeo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/theRegistryisnew","name":"theRegistryisnew","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/Tutorials","name":"Tutorials","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RMResourceGroup/providers/Microsoft.ContainerRegistry/registries/Resh94ACR","name":"Resh94ACR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivdemo","name":"devdivdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/hellodevdivacr","name":"hellodevdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupdiffsub/providers/Microsoft.ContainerRegistry/registries/sourceregistrydiffsub","name":"sourceregistrydiffsub","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr3","name":"yxcr3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:12:22.6033775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:13:33.9546255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr2","name":"yxcr2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:00:21.3457265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:03:44.6157205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr1","name":"yxcr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T19:03:08.0825984Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T19:03:08.0825984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmprod","name":"testhelmprod","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-29T12:18:53.659893Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-29T12:19:25.0515213Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem","name":"yxonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-11T20:12:51.5854546Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-11T20:14:55.834411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmpatrick","name":"testhelmpatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-22T04:15:05.0977003Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-22T04:15:27.9518052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem2","name":"yxonprem2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-27T16:55:10.4906423Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-27T16:59:24.3424797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/patricknotation","name":"patricknotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-16T03:02:45.3396713Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-16T03:03:43.5825248Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcanarydebug","name":"yxcanarydebug","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-21T19:46:44.1756124Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-21T19:47:40.638082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxiaks/providers/Microsoft.ContainerRegistry/registries/yxcloudacr","name":"yxcloudacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-11T23:19:36.6342132Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-11T23:20:12.2600301Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akashsinghaltest/providers/Microsoft.ContainerRegistry/registries/aksinghaleus2euap2","name":"aksinghaleus2euap2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T22:16:30.4586467Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T22:16:30.4586467Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubu4buovf5na6xfoygbjw","name":"sourceregistrysamesubu4buovf5na6xfoygbjw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T21:10:31.12671Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T21:10:31.12671Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubpoouc6tklrm3snn73y3","name":"sourceregistrysamesubpoouc6tklrm3snn73y3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T21:41:02.3475275Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T21:41:02.3475275Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubrz25vnt4slxyfq42jx7","name":"sourceregistrysamesubrz25vnt4slxyfq42jx7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T22:18:16.3452947Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T22:18:16.3452947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwzpffqgmi4eydjmwunl","name":"sourceregistrysamesubwzpffqgmi4eydjmwunl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-18T03:01:36.4012867Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-18T03:01:36.4012867Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub7elwwwifzkkgwhvwhtm","name":"sourceregistrysamesub7elwwwifzkkgwhvwhtm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:05:01.3708772Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:05:01.3708772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubimgk2cqqibwocjojtni","name":"sourceregistrysamesubimgk2cqqibwocjojtni","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:07:40.9669138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:07:40.9669138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ContainerRegistry/registries/testregpgo2cjuu4xoc7","name":"testregpgo2cjuu4xoc7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityj7akfitg":{"principalId":"a1635a0f-f142-4e13-860a-623b49bf3ffd","clientId":"48a16b2e-b250-4fdf-8346-2f74431fc852"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T22:14:04.5494966Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T22:14:17.0480984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj64s5relsjotn7yo7bh6373g5ozowjpbeiy3uajccrmdrc7bcly27pijwhvufyizw/providers/Microsoft.ContainerRegistry/registries/cliregvr5phgmvzof4xk","name":"cliregvr5phgmvzof4xk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T17:41:40.1835358Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T17:41:40.1835358Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23oq6kjjqvid2ar2nqaguhubqbivpxl5gy576g5k32rv2adc7l5avwpesnmtsppwr/providers/Microsoft.ContainerRegistry/registries/cliregb5s7iwomh6hgou","name":"cliregb5s7iwomh6hgou","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:01:55.9102859Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:01:55.9102859Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvf342esc4gsdonhsfmsb6csg5wd5wof7324wq7nf43cpnahedku6u6g4gwo4uwwc/providers/Microsoft.ContainerRegistry/registries/cliregjppxob42oo4q76","name":"cliregjppxob42oo4q76","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:08:27.9500802Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:08:27.9500802Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfp7mjlhczmyha3paol5cwfnsr6zl4ntf4altx5idt5ynjrftlzv72o7ajpnwwkc4/providers/Microsoft.ContainerRegistry/registries/clireg6sbq3rat56snyn","name":"clireg6sbq3rat56snyn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:18:11.712155Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:18:11.712155Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmrgxnhoz5ine4rn5wtclzfpar3z7dan3ezpka553y2ym4foivyencskkot2r2iisb/providers/Microsoft.ContainerRegistry/registries/cliregfbyc6jzrrqhf4u","name":"cliregfbyc6jzrrqhf4u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:20:52.0697979Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:20:52.0697979Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2pbkjb5jbqbu7dgnswioxg6wbpcoybf5zt42rbq6kboyiqyb3cuv7o66mpdh4pawf/providers/Microsoft.ContainerRegistry/registries/cliregza6xdcmh6nkfwt","name":"cliregza6xdcmh6nkfwt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T21:17:41.0852412Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T21:17:41.0852412Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubeto7ceq7yhse3daximi","name":"sourceregistrysamesubeto7ceq7yhse3daximi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:09:59.6345906Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:09:59.6345906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubasyyapaolwptdm5bxzt","name":"sourceregistrysamesubasyyapaolwptdm5bxzt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:36:14.1751691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:36:14.1751691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxcuseuap","name":"yxcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:27:18.7712368Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:27:18.7712368Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxwcus","name":"yxwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:56:18.6122687Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:57:10.1574451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxeasia","name":"yxeasia","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:59:53.470104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T19:03:16.8124033Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bowenzhao/providers/Microsoft.ContainerRegistry/registries/bowenzhao","name":"bowenzhao","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T21:17:50.1156024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T21:17:50.1156024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/trisavosea","name":"trisavosea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-07-23T23:04:58.9857265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-31T15:22:24.9667045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry","name":"acrtestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-30T11:08:06.8561219Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-30T11:08:06.8561219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry2","name":"acrtestregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-01T03:44:49.2763798Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-01T03:44:49.2763798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0903","name":"vlintestregistry0903","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T01:46:05.5004661Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T01:45:49.1601549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0904","name":"vlintestregistry0904","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"bbf848e3-4bb9-443b-b1a7-a24a79e5ff18","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/testacrroles/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vlintestid0903":{"principalId":"cb8908d8-39a4-4fd5-b76b-deea09913fc5","clientId":"c0f13b5f-1d2e-4101-85db-611e4fcf4083"}}},"tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T23:09:11.2731004Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-24T07:15:56.200657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0906","name":"vlintestregistry0906","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-06T05:28:31.7848169Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T07:25:14.8733098Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0916","name":"vlintestregistry0916","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-16T01:44:46.6994384Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-16T01:54:29.376342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitftest","name":"huanglitftest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"northeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-30T00:47:40.5055599Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-30T00:47:40.5055599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistryimportpip","name":"vlintestregistryimportpip","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-10T05:02:13.1322952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-10T05:03:17.3507147Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry1013","name":"vlintestregistry1013","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-13T12:52:49.9587621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-13T12:52:49.9587621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/hungligeotest","name":"hungligeotest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-12-27T18:56:20.1164353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-27T18:56:20.1164353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest21","name":"huanglitest21","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T03:38:59.1596146Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T03:38:59.1596146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest22","name":"huanglitest22","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T20:20:57.9051447Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T20:20:57.9051447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglireplica","name":"huanglireplica","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T21:46:48.6716681Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T21:46:48.6716681Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal-e2e-test/providers/Microsoft.ContainerRegistry/registries/portale2e","name":"portale2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-10T20:25:49.0973042Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-10T20:25:49.0973042Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawcus","name":"kichallawcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T12:42:34.4087547Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T12:42:34.4087547Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawildcard","name":"kichallawildcard","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T17:36:47.3784874Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T17:36:47.3784874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichalladoubleencodingtest","name":"kichalladoubleencodingtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-06T16:09:35.4120347Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-06T16:19:56.2477758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallacuseuap","name":"kichallacuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-17T23:28:52.3266154Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-08T21:33:16.4814874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallafrc","name":"kichallafrc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"francecentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T22:43:32.0771918Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T22:43:32.0771918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus","name":"kichallaeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T19:41:19.5824789Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T19:41:46.5594044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aci-task/providers/Microsoft.ContainerRegistry/registries/acitask","name":"acitask","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-09T03:38:26.0691557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-06T17:58:46.7301976Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/p2p-ci-rg/providers/Microsoft.ContainerRegistry/registries/acrp2pci","name":"acrp2pci","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"Purpose":"Distribution - P2P CIs"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-19T18:41:08.5681115Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-19T18:41:08.5681115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglicrtest2","name":"huanglicrtest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-12-06T19:42:43.710084Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-06T19:50:08.5920561Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaitn","name":"kichallaitn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"italynorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-10T17:24:53.902562Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-10T17:24:53.902562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/flux/providers/Microsoft.ContainerRegistry/registries/acrflux","name":"acrflux","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremprivate","name":"acronpremprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-04T21:51:58.13367Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-04T21:51:58.13367Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremdev","name":"acronpremdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-17T22:05:38.0453625Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-17T22:05:38.0453625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremcanary","name":"acronpremcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-11T21:29:53.0130775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-11T21:30:20.5972808Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestregforcmk","name":"kichallatestregforcmk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallauamiforcmktest":{"principalId":"521422a4-c530-4f46-994f-2e4b0a2ab846","clientId":"942a7498-872e-4a67-8cf8-90fbf8021f7a"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-04-19T19:04:32.5561028Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-19T19:04:32.5561028Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweutest","name":"kichallaweutest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T07:42:47.5834707Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-30T07:43:41.0323406Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestreg","name":"kichallatestreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"360ad420-32b0-47bf-bbd8-7274dc6710e8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallatestidentity":{"principalId":"a41656d5-af9f-4a7d-874f-f0ccaf0929f2","clientId":"4a52641b-861d-4aaa-88bd-2fb08c6727c6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-22T17:07:11.6634055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-25T12:34:49.7895985Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/kraterdevteam","name":"kraterdevteam","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-09T19:35:26.9788393Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T23:08:26.6487291Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawus","name":"kichallawus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","identity":{"principalId":"a1f6138e-6251-4089-a46f-208eb9174a03","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-16T14:15:59.9461536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T15:01:00.7215173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isleeus2euap1","name":"isleeus2euap1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-09T19:07:10.0649621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-09T19:07:10.0649621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/eus2euapisletransfer","name":"eus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T18:50:35.6635138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:04:12.3431706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwus","name":"isletestwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T00:45:06.6936677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T00:45:06.6936677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaanonymouspull","name":"kichallaanonymouspull","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-04T13:55:46.4624399Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-04T13:58:11.8521285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweu","name":"kichallaweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-07T14:47:04.246701Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T14:47:04.246701Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwcus","name":"isletestwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T01:01:43.8716644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T01:01:43.8716644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/teus2euapisletransfer","name":"teus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T19:10:32.9106153Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:13:23.3704045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Public-ACR-Dev-Registry/providers/Microsoft.ContainerRegistry/registries/acrdevpublic","name":"acrdevpublic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"TestTag":"Value"},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-29T00:28:37.2116233Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus2euap","name":"kichallaeus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-02T21:52:40.997123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-02T21:52:40.997123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onebranch/providers/Microsoft.ContainerRegistry/registries/acronebranchbuilder","name":"acronebranchbuilder","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-09-30T07:23:25.8315205Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-30T07:23:25.8315205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavoprivatepreview","name":"trisavoprivatepreview","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:45:42.3355435Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T17:47:58.350387Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary","name":"trisavocanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:51:39.1070414Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-12T23:38:27.7956146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavowcus","name":"trisavowcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T00:41:18.2332536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T00:51:13.4704441Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary2","name":"trisavocanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T18:23:18.9004766Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T18:23:18.9004766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavobillingidc","name":"trisavobillingidc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"indonesiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T14:56:45.9703137Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T15:06:00.5196347Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-juliusl/providers/Microsoft.ContainerRegistry/registries/tenet","name":"tenet","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T01:39:08.6459936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T01:39:34.2967984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/buildrpreg/providers/Microsoft.ContainerRegistry/registries/buildrpreg","name":"buildrpreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Managed_Standard","tier":"Managed"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-04235/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc04235","name":"joshbaunacharc04235","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-23T21:18:48.7834726Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-23T21:19:37.7530706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-proxy-wcus/providers/Microsoft.ContainerRegistry/registries/jbproxywcusregistry","name":"jbproxywcusregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-01T18:21:13.6471108Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-01T18:21:13.6471108Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry120tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry120tb","name":"jumboregistry120tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"switzerlandnorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-07T18:26:16.9534532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-07T18:26:16.9534532Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount3","name":"pecount3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:15:13.6752037Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:15:13.6752037Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount4","name":"pecount4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:35:11.0508044Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:35:11.0508044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount5","name":"pecount5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-25T01:27:13.8444571Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-25T01:27:13.8444571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest3/providers/Microsoft.ContainerRegistry/registries/khallcmksitest3cr","name":"khallcmksitest3cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"b6d54134-bac5-4878-b04c-ed0a536d18fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest3":{"principalId":"9bea4ef2-a10b-4080-b491-e36f3ca5ff63","clientId":"111ad366-18a0-4c36-b740-59fdb4f58b50"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:11:07.6255262Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallsitest25/providers/Microsoft.ContainerRegistry/registries/khallsitest25cr","name":"khallsitest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"277350e3-b42a-4d7a-9821-36f25144a961","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T03:27:15.9238974Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:06:14.6299123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest272/providers/Microsoft.ContainerRegistry/registries/khallcmksitest272cr","name":"khallcmksitest272cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"99272fdf-8445-4dbe-8c91-76b3c419dfcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest272/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest272":{"principalId":"7c18c630-3373-4713-a6e5-611899ca7536","clientId":"f37436d0-50cb-402b-b1f6-7b736c2819f9"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T04:25:57.573226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:27:32.858899Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' headers: cache-control: - no-cache content-length: - - '109410' + - '6865' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:17 GMT + - Fri, 11 Sep 2026 02:15:03 GMT expires: - '-1' pragma: @@ -1293,7 +1263,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B62500EDDFB74B7D8A8FA9D25FC843C6 Ref B: SEL221051801033 Ref C: 2025-04-25T09:48:17Z' + - 'Ref A: CB5E0353C8C84E0C8637007C2723A33F Ref B: SYD281080712054 Ref C: 2026-09-11T02:15:03Z' status: code: 200 message: OK @@ -1311,23 +1281,23 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-11T02:14:54.7024172Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:02.4129227+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:02.4147569+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1500' + - '1661' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:18 GMT + - Fri, 11 Sep 2026 02:15:04 GMT expires: - '-1' pragma: @@ -1341,13 +1311,13 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3E8790A4F60C4F3BB79BB51F7EFCDCE3 Ref B: SEL221051504021 Ref C: 2025-04-25T09:48:18Z' + - 'Ref A: 8C17CE1B0FE04D2587DB6F84CBB0CF5D Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:04Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"serviceUri": "http://www.microsoft.com", - "status": "enabled", "actions": ["push"]}}' + body: '{"location": "westus", "properties": {"actions": ["push"], "serviceUri": + "http://www.microsoft.com", "status": "enabled"}}' headers: Accept: - application/json @@ -1364,18 +1334,20 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.578612+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1383,7 +1355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:21 GMT + - Fri, 11 Sep 2026 02:15:04 GMT expires: - '-1' pragma: @@ -1395,13 +1367,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c4f31626-aa93-4ad0-b71d-b245d9548e93 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d570f648-492f-426a-9df4-267cd0483e0a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 48075CB45B7F4F01B5A16423EA4789E6 Ref B: SEL221051805049 Ref C: 2025-04-25T09:48:20Z' + - 'Ref A: CC123F3D38734F70A5C9292793136B5B Ref B: SYD281080708060 Ref C: 2026-09-11T02:15:05Z' status: code: 200 message: OK @@ -1419,12 +1391,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -1434,678 +1406,167 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '57783' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 19D3FED0FD7049E4BBC0961332D4854F Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 - cache-control: - - no-cache - content-length: - - '633' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 46F13ABBFBF341B5B627265E8E0F1362 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"cli-test": "test"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c636f714-32ae-4c1d-a8eb-6ad4aa109797 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: B2919C3A6C654159A620A162FD3CDB54 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -2115,637 +1576,342 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '57783' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 3BA7968730D54E139BAF248B79986F92 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' - x-msedge-ref: - - 'Ref A: 6BB8F1BC212849A193650B4FD7C54864 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '12' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - - '634' + - '56858' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:32 GMT + - Fri, 11 Sep 2026 02:15:06 GMT expires: - '-1' pragma: @@ -2756,14 +1922,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/86b1f1a7-744f-4063-a40c-95ffde13b9b8 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F830282644B04E7697E3E16ED6784C1D Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:29Z' + - 'Ref A: 20DD6126107044E68166B0CBD811492D Ref B: SYD281080712034 Ref C: 2026-09-11T02:15:06Z' status: code: 200 message: OK @@ -2775,27 +1937,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - container create + - resource tag Connection: - keep-alive ParameterSetName: - - -g -n --image --cpu --memory --os-type + - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.578612+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - - '292' + - '633' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:32 GMT + - Fri, 11 Sep 2026 02:15:06 GMT expires: - '-1' pragma: @@ -2809,50 +1978,50 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3652B8F2AB534718A28633654EB09B8B Ref B: SEL221051504019 Ref C: 2025-04-25T09:48:33Z' + - 'Ref A: E821D9354F30432E87E8EE71568C95E3 Ref B: SYD281080712052 Ref C: 2026-09-11T02:15:07Z' status: code: 200 message: OK - request: - body: '{"properties": {"containers": [{"name": "clicontainer000005", "properties": - {"image": "mcr.microsoft.com/azuredocs/aci-helloworld:latest", "resources": - {"requests": {"memoryInGB": 1.0, "cpu": 1.0}}, "configMap": {"keyValuePairs": - {}}}}], "osType": "Linux"}, "location": "westus", "tags": {}}' + body: '{"tags": {"cli-test": "test"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - container create + - resource tag Connection: - keep-alive Content-Length: - - '291' + - '30' Content-Type: - application/json ParameterSetName: - - -g -n --image --cpu --memory --os-type + - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Pending","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Pending"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:08.1934778+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - - '789' + - '651' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:37 GMT + - Fri, 11 Sep 2026 02:15:07 GMT expires: - '-1' pragma: @@ -2864,65 +2033,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/23c3fe37-465a-4c45-8001-ce3dd8f12477 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2d53f74c-b490-4e87-a264-41b94bb7236e x-ms-ratelimit-remaining-subscription-global-writes: - '11999' - x-ms-ratelimit-remaining-subscription-resource-requests-pt1h: - - '299' - x-ms-ratelimit-remaining-subscription-resource-requests-pt5m: - - '99' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4373DEFAE86D4699AE011C5ABD67E90D Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:34Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - container create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Pending","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '272' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/427b8852-a55c-4a3a-be04-314fd70ff957 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 9E787B2AC9BF4A7681AD8FDC1F746649 Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:38Z' + - 'Ref A: 76FEFF06E5794382AC1AA3AC0E12FFD1 Ref B: SYD281080709029 Ref C: 2026-09-11T02:15:07Z' status: code: 200 message: OK @@ -2930,60 +2047,907 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - container create + - resource tag Connection: - keep-alive ParameterSetName: - - -g -n --image --cpu --memory --os-type + - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Succeeded","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '976' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:49:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/aa93ee33-a065-47b3-8db3-21de8f26eb91 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E4CF150C26244D2F917F088B500043EC Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '56858' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E729BCC2C1384025AB06226D9010716E Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:08.1934778+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 + cache-control: + - no-cache + content-length: + - '651' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D01B5235FFFB45D6822A61F3D7149BEB Ref B: SYD281080711060 Ref C: 2026-09-11T02:15:09Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '12' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:10.6060325+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 + cache-control: + - no-cache + content-length: + - '634' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3f8ef7d1-77f0-4220-add5-2db005f79cfe + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: EF793A96A4EC4E9D809176E1DC7BCEA9 Ref B: SYD281080708025 Ref C: 2026-09-11T02:15:10Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6D04A42F7C2A49D1B6551D834E3CA3BF Ref B: SYD281080705052 Ref C: 2026-09-11T02:15:11Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"containers": [{"name": "clicontainer000005", "properties": + {"image": "mcr.microsoft.com/azuredocs/aci-helloworld:latest", "resources": + {"requests": {"memoryInGB": 1.0, "cpu": 1.0}}, "configMap": {"keyValuePairs": + {}}}}], "osType": "Linux"}, "location": "westus", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + Content-Length: + - '291' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Pending\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/ee723bde-1d27-4b32-8b3e-dbc23a0b74d9?api-version=2018-06-01&t=639246897131683595&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gHdYONiLcT4ygBfu9tnewr9yErsazWi4VqplqGGjybrp5PzbAXdjbIK5dJDD8UVAxqdE6pdqx8KMxNCg5mMIMvUZ7ofrZc2TCPC8ASJPAwoDlOSP6JrAslfXFAdY41fbpdox1U5GUXkbXPZVSuBmVuIIfO7-MBVIvln5VxG7x8R88NfQCPHt1cNJYTWX5r5YwH7WslByyD9QGKB5OPkRvxUXLXxB_-yGgbl6dtg2wRGfORejrHZk5dXQI_WjbVcpf7bTAuHNWLKGgCYxP_wjfknK0hx0OI25_jGzoWu1lTnc7NZTbnsP8E9GmCcHPDLr1W6Iyb1nyHuyMfwoE3Sy8w&h=xY5mhf2XJBw_xoTY4ATiukks2N_MJi-YZ7ABgv3hrKY + cache-control: + - no-cache + content-length: + - '1133' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a684127a-dab8-4360-9ad2-5bbb60bd3a46 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-resource-requests-pt1h: + - '298' + x-ms-ratelimit-remaining-subscription-resource-requests-pt5m: + - '99' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 2C09F4B1F26E46C6BA1750C844C785D4 Ref B: SYD281080711060 Ref C: 2026-09-11T02:15:12Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/ee723bde-1d27-4b32-8b3e-dbc23a0b74d9?api-version=2018-06-01&t=639246897131683595&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gHdYONiLcT4ygBfu9tnewr9yErsazWi4VqplqGGjybrp5PzbAXdjbIK5dJDD8UVAxqdE6pdqx8KMxNCg5mMIMvUZ7ofrZc2TCPC8ASJPAwoDlOSP6JrAslfXFAdY41fbpdox1U5GUXkbXPZVSuBmVuIIfO7-MBVIvln5VxG7x8R88NfQCPHt1cNJYTWX5r5YwH7WslByyD9QGKB5OPkRvxUXLXxB_-yGgbl6dtg2wRGfORejrHZk5dXQI_WjbVcpf7bTAuHNWLKGgCYxP_wjfknK0hx0OI25_jGzoWu1lTnc7NZTbnsP8E9GmCcHPDLr1W6Iyb1nyHuyMfwoE3Sy8w&h=xY5mhf2XJBw_xoTY4ATiukks2N_MJi-YZ7ABgv3hrKY + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"status\": \"Pending\",\r\n \"startTime\": \"2026-09-11T02:15:13.0377667Z\",\r\n + \ \"properties\": {\r\n \"events\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '305' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/95a9d2e3-9117-43fd-af6b-df9149d9276e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: ADEE4424DCA6487DB2E86E144FA05558 Ref B: SYD281080709023 Ref C: 2026-09-11T02:15:14Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/ee723bde-1d27-4b32-8b3e-dbc23a0b74d9?api-version=2018-06-01&t=639246897131683595&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gHdYONiLcT4ygBfu9tnewr9yErsazWi4VqplqGGjybrp5PzbAXdjbIK5dJDD8UVAxqdE6pdqx8KMxNCg5mMIMvUZ7ofrZc2TCPC8ASJPAwoDlOSP6JrAslfXFAdY41fbpdox1U5GUXkbXPZVSuBmVuIIfO7-MBVIvln5VxG7x8R88NfQCPHt1cNJYTWX5r5YwH7WslByyD9QGKB5OPkRvxUXLXxB_-yGgbl6dtg2wRGfORejrHZk5dXQI_WjbVcpf7bTAuHNWLKGgCYxP_wjfknK0hx0OI25_jGzoWu1lTnc7NZTbnsP8E9GmCcHPDLr1W6Iyb1nyHuyMfwoE3Sy8w&h=xY5mhf2XJBw_xoTY4ATiukks2N_MJi-YZ7ABgv3hrKY + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"status\": \"Succeeded\",\r\n \"startTime\": \"2026-09-11T02:15:13.0377667Z\",\r\n + \ \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": + 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": + \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": + 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": + \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1025' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 11 Sep 2026 02:15:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/84b07183-a682-443c-8b16-1185e72c89b8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1252C91B59F34C17916C59B6A634245F Ref B: SYD281080709031 Ref C: 2026-09-11T02:15:45Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate CommandName: - container create Connection: @@ -2991,24 +2955,50 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully + pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": + \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '2561' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:10 GMT + - Fri, 11 Sep 2026 02:15:47 GMT expires: - '-1' pragma: @@ -3022,7 +3012,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 08BE454737704657ACBB4C3AA44D9961 Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:09Z' + - 'Ref A: EC01F373AA3A41FB91241FD101551266 Ref B: SYD281080705040 Ref C: 2026-09-11T02:15:47Z' status: code: 200 message: OK @@ -3040,187 +3030,220 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE - North","UK South","UK West","West Central US","West Europe","West India","West - US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland - North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK - South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West - US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Jio India Central","Jio + India West","Korea Central","Korea South","North Central US","North Europe","Norway + East","Norway West","Poland Central","Qatar Central","South Africa North","South + Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland + North","Switzerland West","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"Italy + North","zones":["2","1","3"]},{"location":"Japan East","zones":["2","1","3"]},{"location":"Japan + West","zones":["2","1","3"]},{"location":"Korea Central","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Sweden Central","zones":["2","1","3"]},{"location":"Switzerland + North","zones":["2","1","3"]},{"location":"UAE North","zones":["2","1","3"]},{"location":"UK + South","zones":["2","1","3"]},{"location":"West Europe","zones":["2","1","3"]},{"location":"West + US 2","zones":["2","1","3"]},{"location":"West US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE - North","UK South","UK West","West Central US","West Europe","West India","West - US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Jio India Central","Jio + India West","Korea Central","Korea South","North Central US","North Europe","Norway + East","Norway West","Poland Central","Qatar Central","South Africa North","South + Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland + North","Switzerland West","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '20484' + - '24043' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:10 GMT + - Fri, 11 Sep 2026 02:15:47 GMT expires: - '-1' pragma: @@ -3234,7 +3257,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 752F3D7E9C464AE09587186291C10384 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' + - 'Ref A: F80747CB1E7F4A90885B2BF38DB3FCA3 Ref B: SYD281080708060 Ref C: 2026-09-11T02:15:48Z' status: code: 200 message: OK @@ -3252,24 +3275,50 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully + pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": + \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '2561' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:11 GMT + - Fri, 11 Sep 2026 02:15:48 GMT expires: - '-1' pragma: @@ -3281,9 +3330,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: EB1B12573658482F92F19459CA97C562 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' + - 'Ref A: 72DCDD0541504CA69BE1AFB857A1E08C Ref B: SYD281080705034 Ref C: 2026-09-11T02:15:49Z' status: code: 200 message: OK @@ -3305,26 +3354,53 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully + pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": + \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n + \ }\r\n}" headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '1647' + - '2589' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:15 GMT + - Fri, 11 Sep 2026 02:15:49 GMT expires: - '-1' pragma: @@ -3336,13 +3412,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/cc19406b-a30b-4784-930c-56b95c74994b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/81d4966b-8052-48f5-ab47-79365af7b7da x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 65230ACFF1764D6181C187ADF287E22C Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:12Z' + - 'Ref A: 54FC16C67BE84D1DA109F9C6BC02438F Ref B: SYD281080705062 Ref C: 2026-09-11T02:15:49Z' status: code: 200 message: OK @@ -3360,187 +3436,220 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE - North","UK South","UK West","West Central US","West Europe","West India","West - US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland - North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK - South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West - US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Jio India Central","Jio + India West","Korea Central","Korea South","North Central US","North Europe","Norway + East","Norway West","Poland Central","Qatar Central","South Africa North","South + Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland + North","Switzerland West","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"Italy + North","zones":["2","1","3"]},{"location":"Japan East","zones":["2","1","3"]},{"location":"Japan + West","zones":["2","1","3"]},{"location":"Korea Central","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Sweden Central","zones":["2","1","3"]},{"location":"Switzerland + North","zones":["2","1","3"]},{"location":"UAE North","zones":["2","1","3"]},{"location":"UK + South","zones":["2","1","3"]},{"location":"West Europe","zones":["2","1","3"]},{"location":"West + US 2","zones":["2","1","3"]},{"location":"West US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE - North","UK South","UK West","West Central US","West Europe","West India","West - US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Jio India Central","Jio + India West","Korea Central","Korea South","North Central US","North Europe","Norway + East","Norway West","Poland Central","Qatar Central","South Africa North","South + Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland + North","Switzerland West","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '20484' + - '24043' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:16 GMT + - Fri, 11 Sep 2026 02:15:50 GMT expires: - '-1' pragma: @@ -3554,7 +3663,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3BF9C48DA96640FE8148356EAABF495C Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' + - 'Ref A: E8269A7A78204BAC9CB45753F2457132 Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:50Z' status: code: 200 message: OK @@ -3572,24 +3681,51 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully + pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": + \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1647' + - '2589' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:17 GMT + - Fri, 11 Sep 2026 02:15:51 GMT expires: - '-1' pragma: @@ -3603,7 +3739,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3B45777410CF4ABEBC4723907EA4431A Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' + - 'Ref A: 42678EE65145464E88DE8BF36B1E901A Ref B: SYD281080707029 Ref C: 2026-09-11T02:15:51Z' status: code: 200 message: OK @@ -3625,26 +3761,52 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully + pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": + \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '1630' + - '2561' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:20 GMT + - Fri, 11 Sep 2026 02:15:52 GMT expires: - '-1' pragma: @@ -3656,13 +3818,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5d7e56d9-d9ad-4799-853e-dbc32c8320dc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/01279f4d-29db-40a1-a968-aece5f7731fd x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F9ED74D7A6FA415FB0E3902DEF13BC0E Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:18Z' + - 'Ref A: EAD04AC782304FB3B2DEC0484AE0289C Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:52Z' status: code: 200 message: OK @@ -3680,7 +3842,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -3693,10 +3855,21 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3704,8 +3877,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3713,8 +3887,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3722,8 +3897,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3731,8 +3907,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3740,8 +3917,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3749,56 +3927,63 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3806,8 +3991,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3815,8 +4001,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3824,8 +4011,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -3833,17 +4021,18 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '25101' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:21 GMT + - Fri, 11 Sep 2026 02:15:53 GMT expires: - '-1' pragma: @@ -3855,9 +4044,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 6E2B667A30CC42C6AA2DA70BECD43749 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' + - 'Ref A: 4CE12677475B4819B758CE39FDFF4660 Ref B: SYD281080705060 Ref C: 2026-09-11T02:15:53Z' status: code: 200 message: OK @@ -3875,21 +4064,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A49.7666068Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1019' + - '1073' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:22 GMT + - Fri, 11 Sep 2026 02:15:54 GMT expires: - '-1' pragma: @@ -3903,7 +4092,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 98045C885A9640E4B9DC1A418767E6A8 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' + - 'Ref A: 9BF85DD60B594E30BBD51A8F3AE12282 Ref B: SYD281080709042 Ref C: 2026-09-11T02:15:54Z' status: code: 200 message: OK @@ -3925,21 +4114,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A49%3A25.1684641Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A15%3A55.6560418Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1037' + - '1090' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:25 GMT + - Fri, 11 Sep 2026 02:15:55 GMT expires: - '-1' pragma: @@ -3951,11 +4140,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/90b56c94-6ddf-406f-a0b0-91f773dc9f8a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5af1c548-6eef-4d92-90f5-37a1ee359a35 x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: 9E45D7C5D3CF4B64A54730CD8CE8F088 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:23Z' + - 'Ref A: B652D24C68A54C688D68D1E374270C17 Ref B: SYD281080708040 Ref C: 2026-09-11T02:15:55Z' status: code: 200 message: OK @@ -3973,12 +4162,98 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -3988,531 +4263,426 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '57783' + - '56858' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:25 GMT + - Fri, 11 Sep 2026 02:15:55 GMT expires: - '-1' pragma: @@ -4526,7 +4696,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D761F10D79B94D87B8B7C5863648E955 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' + - 'Ref A: D5E9EFE35F384FE1856ECB8192D29776 Ref B: SYD281080707029 Ref C: 2026-09-11T02:15:56Z' status: code: 200 message: OK @@ -4544,18 +4714,20 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:10.6060325+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -4563,7 +4735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:26 GMT + - Fri, 11 Sep 2026 02:15:56 GMT expires: - '-1' pragma: @@ -4577,7 +4749,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3AB4ABBB4ED7492183EB485CABC899DC Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' + - 'Ref A: 1E53603CEBA04EBC9CE913F1DA4D8B09 Ref B: SYD281080710023 Ref C: 2026-09-11T02:15:57Z' status: code: 200 message: OK @@ -4599,18 +4771,20 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:49:29.1704021+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:58.5009165+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -4618,7 +4792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:30 GMT + - Fri, 11 Sep 2026 02:15:57 GMT expires: - '-1' pragma: @@ -4630,13 +4804,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5dcd2977-c8db-491d-9230-d66b69dd7e62 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0020d791-4b65-4eda-bc9e-6ec907cdefb0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1329C9663FA242BCB33C1A137BBDA4F9 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:27Z' + - 'Ref A: B2228968C429499DB8ECE25CBB79184C Ref B: SYD281080705062 Ref C: 2026-09-11T02:15:58Z' status: code: 200 message: OK @@ -4654,187 +4828,220 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Jio India Central","Jio India West","Korea + Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland + West","UAE Central","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE - North","UK South","UK West","West Central US","West Europe","West India","West - US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland - North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK - South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West - US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Jio India Central","Jio + India West","Korea Central","Korea South","North Central US","North Europe","Norway + East","Norway West","Poland Central","Qatar Central","South Africa North","South + Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland + North","Switzerland West","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"Italy + North","zones":["2","1","3"]},{"location":"Japan East","zones":["2","1","3"]},{"location":"Japan + West","zones":["2","1","3"]},{"location":"Korea Central","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Sweden Central","zones":["2","1","3"]},{"location":"Switzerland + North","zones":["2","1","3"]},{"location":"UAE North","zones":["2","1","3"]},{"location":"UK + South","zones":["2","1","3"]},{"location":"West Europe","zones":["2","1","3"]},{"location":"West + US 2","zones":["2","1","3"]},{"location":"West US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE - North","UK South","UK West","West Central US","West Europe","West India","West - US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Jio India Central","Jio + India West","Korea Central","Korea South","North Central US","North Europe","Norway + East","Norway West","Poland Central","Qatar Central","South Africa North","South + Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland + North","Switzerland West","UAE North","UK South","UK West","West Central US","West + Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '20484' + - '24043' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:30 GMT + - Fri, 11 Sep 2026 02:15:58 GMT expires: - '-1' pragma: @@ -4848,7 +5055,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 03B4F8EEFC8A4E77A67E60AC58D6C42C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' + - 'Ref A: 5F2B99A56E0842099201C50F8F82F851 Ref B: SYD281080709023 Ref C: 2026-09-11T02:15:59Z' status: code: 200 message: OK @@ -4866,24 +5073,50 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully + pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": + \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '2561' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:31 GMT + - Fri, 11 Sep 2026 02:15:59 GMT expires: - '-1' pragma: @@ -4897,7 +5130,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0624971856614FA29A2D9EA60511719C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' + - 'Ref A: BDC9CB61EFB343C8B8D884D6E2388957 Ref B: SYD281080710054 Ref C: 2026-09-11T02:16:00Z' status: code: 200 message: OK @@ -4919,26 +5152,53 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully + pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": + \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n + \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n + \ }\r\n}" headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '1647' + - '2589' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:36 GMT + - Fri, 11 Sep 2026 02:16:01 GMT expires: - '-1' pragma: @@ -4950,13 +5210,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/0db39ab4-d695-4d3c-a150-efc6a5e76dfd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9c77f1c3-0d77-4bf8-9acf-5f3a772709f6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: EE86E7EC44774195B776B69A8F96A135 Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:32Z' + - 'Ref A: BD8A20DFCCA847CDBDC81498443B1206 Ref B: SYD281080705036 Ref C: 2026-09-11T02:16:00Z' status: code: 200 message: OK @@ -4979,17 +5239,17 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"6545fe77-172c-4914-bfba-b41c1f3b7b37\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"b7384702-8a68-487f-9ca7-70a5b6f0c834\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9efbc301-2dc6-4134-8ed0-c4a68b7abafc?api-version=2025-07-01&t=639246897636934837&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=PB66cb2tdD2IzxTm42088a9JbJ-xjTeE1d9u-fy7wdD77oaWHIBQcWxPxWh36CdiKau2sfe1lLE140Kz-hgbnD_35iXUvo5fTWgEMtYKOpglsWcZQMOgtK4jLstQPqbtGC3aV9p_1KiXCj5WTaAniw9C3WsRCzRrOisH9Q3Di5zrCVKBmkkk9peMeEGRomTpzEbBBI3rhDkBqi1g02Lwioen3W47YjG-Bz7mBVH3n0tO61JVGwCAcp36dxdHn5Csiit_VcqZ9uXuNoxU9FcDvjH4RsQ-X5dO3Ym84dAH8sB_ms-uvq_IBl10dIS_brtyvmsOWZ5oi5KhDrSCmW_ZLA&h=ZCB7AtOqOKdVC5mQQ75oDAqOi6wNsmpA1qrzfQ7tCYU cache-control: - no-cache content-length: @@ -4997,7 +5257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:40 GMT + - Fri, 11 Sep 2026 02:16:03 GMT expires: - '-1' pragma: @@ -5009,15 +5269,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76a2d317-a418-4652-b3e4-0944e1b77834 + - 10137629-e457-473a-95bb-41608c52d3bd x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a8bff673-eaf6-466e-9e24-89b834eec07e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f17a82f7-a531-45f4-b048-6f9657f0c737 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: C09ADFEE414C412DAAC85C9805D01719 Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:37Z' + - 'Ref A: 57D0F0463CC742DFAEDC391A152DDEDB Ref B: SYD281080712023 Ref C: 2026-09-11T02:16:03Z' status: code: 201 message: Created @@ -5035,9 +5298,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9efbc301-2dc6-4134-8ed0-c4a68b7abafc?api-version=2025-07-01&t=639246897636934837&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=PB66cb2tdD2IzxTm42088a9JbJ-xjTeE1d9u-fy7wdD77oaWHIBQcWxPxWh36CdiKau2sfe1lLE140Kz-hgbnD_35iXUvo5fTWgEMtYKOpglsWcZQMOgtK4jLstQPqbtGC3aV9p_1KiXCj5WTaAniw9C3WsRCzRrOisH9Q3Di5zrCVKBmkkk9peMeEGRomTpzEbBBI3rhDkBqi1g02Lwioen3W47YjG-Bz7mBVH3n0tO61JVGwCAcp36dxdHn5Csiit_VcqZ9uXuNoxU9FcDvjH4RsQ-X5dO3Ym84dAH8sB_ms-uvq_IBl10dIS_brtyvmsOWZ5oi5KhDrSCmW_ZLA&h=ZCB7AtOqOKdVC5mQQ75oDAqOi6wNsmpA1qrzfQ7tCYU response: body: string: '{"status":"Succeeded"}' @@ -5049,7 +5312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:40 GMT + - Fri, 11 Sep 2026 02:16:03 GMT expires: - '-1' pragma: @@ -5061,13 +5324,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 518a0273-7ccb-416e-af57-6efdf4e72289 + - f3cdddc8-3f7e-4c0a-9bde-7330f727f28d x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/6b13d0b7-b2f7-4abc-aba1-436ca7bd1766 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/90f1f7a8-c18a-4b12-adfe-5d8fffb2d5e2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 3A55F322EDD6448AA1139A8371FD530E Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' + - 'Ref A: 026E7B18A7504E2D8D16F518AD573048 Ref B: SYD281080705062 Ref C: 2026-09-11T02:16:04Z' status: code: 200 message: OK @@ -5085,23 +5350,23 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"3c495642-23b3-4e50-a0c5-b64bbc0789a6\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","ipAddress":"52.159.226.221","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '645' + - '647' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:41 GMT + - Fri, 11 Sep 2026 02:16:04 GMT etag: - - W/"763cb332-0037-4875-9944-f0082f733ca0" + - W/"3c495642-23b3-4e50-a0c5-b64bbc0789a6" expires: - '-1' pragma: @@ -5113,11 +5378,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0be6840f-a5ef-49ea-b861-112445ceee4a + - 7bb20e26-eb08-45bc-852f-70326e23821c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: F9D514ABF06D4C8CAC78B0253AC8378C Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' + - 'Ref A: 6D6B018F3B744AA7AC5341D999420539 Ref B: SYD281080707040 Ref C: 2026-09-11T02:16:05Z' status: code: 200 message: OK @@ -5135,12 +5402,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5149,8 +5416,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5159,8 +5429,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5169,8 +5442,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5179,8 +5455,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5189,8 +5468,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5198,8 +5480,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5207,8 +5492,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5216,8 +5504,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5225,8 +5516,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5235,8 +5529,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5245,8 +5542,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5255,8 +5555,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5264,8 +5567,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5274,14 +5580,35 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","France South","Norway West","Switzerland + West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5290,9 +5617,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5302,9 +5628,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5314,9 +5639,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5326,27 +5650,88 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5355,9 +5740,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5367,9 +5751,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5378,9 +5761,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5389,9 +5771,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5400,9 +5781,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5411,9 +5791,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5422,9 +5801,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5433,9 +5811,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5445,9 +5822,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5456,9 +5832,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5468,9 +5843,8 @@ interactions: Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE - North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5480,9 +5854,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5492,9 +5865,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5504,9 +5876,8 @@ interactions: North","South Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5516,9 +5887,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5528,9 +5898,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5539,9 +5908,19 @@ interactions: Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","UAE + North","South Africa North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5551,9 +5930,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -5563,27 +5941,28 @@ interactions: South","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5592,9 +5971,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5603,9 +5981,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5615,20 +5992,18 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","India + South Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","Denmark + East","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5638,27 +6013,28 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5668,21 +6044,21 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","Jio India West","Jio India Central","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil @@ -5692,9 +6068,9 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile + Central","New Zealand North","Indonesia Central","Malaysia West","Austria + East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","Jio India West","Jio India Central","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East @@ -5705,9 +6081,9 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile + Central","New Zealand North","Indonesia Central","Malaysia West","Austria + East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -5717,41 +6093,21 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -5761,8 +6117,9 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -5772,8 +6129,9 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -5782,8 +6140,9 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile + Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia + West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -5793,13 +6152,14 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile + Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia + West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -5809,26 +6169,28 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Jio India West","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada @@ -5839,8 +6201,8 @@ interactions: Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan @@ -5851,9 +6213,10 @@ interactions: US","North Europe","West Europe","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada @@ -5864,8 +6227,8 @@ interactions: Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany @@ -5877,8 +6240,9 @@ interactions: US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West @@ -5890,10 +6254,19 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West + US","East US","North Europe","West Europe","East Asia","India South Central","Southeast + Asia","North Central US","South Central US","Central US","East US 2","Japan + East","Japan West","Brazil South","Australia East","Australia Southeast","Central + India","South India","West India","Canada Central","Canada East","West Central + US","West US 2","UK West","UK South","Korea Central","Korea South","France + Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Jio India West","Sweden + Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5902,9 +6275,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5913,27 +6285,39 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5943,27 +6327,28 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5973,9 +6358,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -5984,27 +6368,28 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6014,9 +6399,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6026,9 +6410,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6038,9 +6421,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6050,9 +6432,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6061,9 +6442,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -6073,9 +6453,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6085,9 +6464,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6097,9 +6475,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6109,9 +6486,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6121,9 +6497,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6133,9 +6508,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6145,27 +6519,39 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6175,9 +6561,19 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","Indonesia Central","New Zealand North","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6187,9 +6583,19 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6199,10 +6605,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","South Central US STG","Brazil Southeast","Jio India Central","Sweden - South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6212,10 +6616,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6224,9 +6627,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6235,9 +6637,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6246,9 +6647,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6257,9 +6657,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6268,9 +6667,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6279,9 +6677,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6290,9 +6687,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6301,9 +6697,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6312,9 +6707,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6323,9 +6717,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6334,9 +6727,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6345,9 +6737,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6356,9 +6747,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6367,9 +6757,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6378,9 +6767,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6389,9 +6777,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6400,9 +6787,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6411,9 +6797,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6422,9 +6807,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6433,9 +6817,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6444,9 +6827,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6455,9 +6837,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6466,9 +6847,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6477,9 +6857,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6488,9 +6867,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6500,9 +6878,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6512,9 +6889,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6523,9 +6899,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -6535,9 +6910,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6547,9 +6921,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6558,9 +6931,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6570,9 +6942,28 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6581,9 +6972,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6592,9 +6982,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6603,9 +6992,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6614,9 +7002,52 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6625,9 +7056,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -6636,44 +7067,20 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '217264' + - '247084' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:44 GMT + - Fri, 11 Sep 2026 02:16:07 GMT expires: - '-1' pragma: @@ -6685,9 +7092,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 7026C7B1779748A6806FB51A6735A481 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:42Z' + - 'Ref A: 447EEECFFFE144D58D2E75E30A247CC2 Ref B: SYD281080707023 Ref C: 2026-09-11T02:16:06Z' status: code: 200 message: OK @@ -6705,23 +7112,23 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"3c495642-23b3-4e50-a0c5-b64bbc0789a6\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","ipAddress":"52.159.226.221","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '645' + - '647' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:44 GMT + - Fri, 11 Sep 2026 02:16:08 GMT etag: - - W/"763cb332-0037-4875-9944-f0082f733ca0" + - W/"3c495642-23b3-4e50-a0c5-b64bbc0789a6" expires: - '-1' pragma: @@ -6733,14 +7140,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2015d3da-5f14-4223-8194-aca015a9c884 + - 7e9f967b-af7a-40e2-b414-d4e054c04d65 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationRatePct=0.2, operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 680DA6436B36488D91A528650C8051A2 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' + - 'Ref A: 1D28FE6FBB764C86B2B1DD6B6D8DBA5E Ref B: SYD281080707025 Ref C: 2026-09-11T02:16:08Z' status: code: 200 - message: OK + message: '' - request: body: '{"tags": {"cli-test": "test"}}' headers: @@ -6759,23 +7168,23 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"1a7cc129-5b0a-42e9-98ac-13a7aa041ed7\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"a10fb510-5013-4011-ad02-334babc53e01\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","ipAddress":"52.159.226.221","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '672' + - '674' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:48 GMT + - Fri, 11 Sep 2026 02:16:09 GMT expires: - '-1' pragma: @@ -6787,15 +7196,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e33a0c35-50e5-46b3-ac80-6ff76236bcd7 + - b48ba217-3320-4ea5-be40-3a4cf2c0fb56 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f3a82332-6400-4084-99d6-0012920eb33a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a46e0d57-dac5-4812-86fc-0875d3b47109 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 5A6C1882C1094A3697FBFF86D9E3991F Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' + - 'Ref A: 51E0B0A9BD8E41858899F79F026CB970 Ref B: SYD281080706031 Ref C: 2026-09-11T02:16:09Z' status: code: 200 message: OK @@ -6811,9 +7223,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - --id + - --id --no-wait User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -6826,10 +7238,21 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6837,8 +7260,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6846,8 +7270,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6855,8 +7280,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6864,8 +7290,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6873,8 +7300,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6882,56 +7310,63 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia + West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel + Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6939,8 +7374,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6948,8 +7384,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6957,8 +7394,9 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -6966,17 +7404,18 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico + Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark + East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '25101' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:48 GMT + - Fri, 11 Sep 2026 02:16:09 GMT expires: - '-1' pragma: @@ -6990,7 +7429,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F9F0D5481907418381FDFE77AEB430D5 Ref B: SEL221051804033 Ref C: 2025-04-25T09:49:49Z' + - 'Ref A: 33F5D1E7ABD24786A38267A7E9EDC1D2 Ref B: SYD281080706060 Ref C: 2026-09-11T02:16:10Z' status: code: 200 message: OK @@ -7008,19 +7447,75 @@ interactions: Content-Length: - '0' ParameterSetName: - - --id + - --id --no-wait User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=?api-version=2026-07-01&t=639246897712839190&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=V6sIzDgMAo5Z6kVP4fzcDdN8NbCoWPIH4Mjmi4MGWeIaGKnco0g7RxBEHyi9r-xwC013-3NMOTyCNnQIMCeO8QrrSpwW4YspSZuOPXQfqvEAs8gqchyKqMz7ZS88flIM9zx6qHER_QrwwyWg3g9JQDLuDFPRQJjn5_Nk1mG8_e5H_swc4LvpHk6gpiWQF_jFM6-vBIFIzCHBeVJToeP-I7J7x5BeqT8FKafsbzoX6Pd7oOjwQDBLR6VavVoNhSrEEl431Vn3kG_0hlVBMq-R7rn8I9QFXIo9d2RtladhEfKIFTuvIrVct6aZMjzZ4z5t-Xs9sDSNmD2YCvTyEQPvhw&h=rSPexFdj_WM_-ewaSRY9s4NbDX9PsCRH_0JLT1w9Aqc + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 11 Sep 2026 02:16:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=?api-version=2026-07-01&t=639246897712839190&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RGkQQ5RLsCfyAAErFqrG3Kjzc9LKCu-b5QqRluqyXiY56GwfMdLViX6LYn4KjNMVcXtIiZbjFgqahwVrwqeESepiHgqXpKHqHo4yRfC1rFHs4CMA2VTnQYIcUsYgWsvrt4yTx9x7xRoUBjqM--BBAcLCG1mRPSY59iZ1G3xaH_6onjgil20xmWSosWEIoE5CBA81wDszAk12t-oeJuj4ZJsGB_TQT6xkVsLi21MdaDpvoP_wcFSUppDuq_c5zfbL-RQmsxJLEc1ZrKAHudxgIVQ5-O-Tw4TCkrxl6ZB4U_CvK9h2YuCX0p2JnrH1rjb4GiqRfG0gXBOi7AR14EUS1Q&h=aY_L82OULnTp7sZKd35IuLxiNUnMNMxVbvzMqxetHdw + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9d1ae26f-c38e-4cdb-908e-1dcc78c99ecb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: 367477F1C6E744E89122A45619A4E1B2 Ref B: SYD281080706034 Ref C: 2026-09-11T02:16:10Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id --no-wait + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=?api-version=2026-07-01&t=639246897712839190&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=V6sIzDgMAo5Z6kVP4fzcDdN8NbCoWPIH4Mjmi4MGWeIaGKnco0g7RxBEHyi9r-xwC013-3NMOTyCNnQIMCeO8QrrSpwW4YspSZuOPXQfqvEAs8gqchyKqMz7ZS88flIM9zx6qHER_QrwwyWg3g9JQDLuDFPRQJjn5_Nk1mG8_e5H_swc4LvpHk6gpiWQF_jFM6-vBIFIzCHBeVJToeP-I7J7x5BeqT8FKafsbzoX6Pd7oOjwQDBLR6VavVoNhSrEEl431Vn3kG_0hlVBMq-R7rn8I9QFXIo9d2RtladhEfKIFTuvIrVct6aZMjzZ4z5t-Xs9sDSNmD2YCvTyEQPvhw&h=rSPexFdj_WM_-ewaSRY9s4NbDX9PsCRH_0JLT1w9Aqc response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=\",\r\n + \ \"name\": \"MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=\",\r\n + \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache + content-length: + - '344' + content-type: + - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:54 GMT + - Fri, 11 Sep 2026 02:16:11 GMT expires: - '-1' pragma: @@ -7032,14 +7527,14 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/b36d76ad-341b-482b-b28d-720890097964 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2148b9ee-f6a0-4f99-bf10-85c1e81efbeb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: FFE2EC7123264F3FA0D42878EF4BA9E2 Ref B: SEL221051504021 Ref C: 2025-04-25T09:49:51Z' + - 'Ref A: 49C314A8D22243A1A19ECBC5CB700609 Ref B: SYD281080709029 Ref C: 2026-09-11T02:16:12Z' status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -7054,12 +7549,340 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -7069,531 +7892,184 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan + Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio + India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Spain Central","Mexico Central","Indonesia Central","New Zealand + North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria + East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '57783' + - '56858' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:55 GMT + - Fri, 11 Sep 2026 02:16:12 GMT expires: - '-1' pragma: @@ -7607,7 +8083,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3A13299400CB4680859362EF68DC9DED Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' + - 'Ref A: 4102259ABD7B42D386543F66806456AB Ref B: SYD281080707023 Ref C: 2026-09-11T02:16:12Z' status: code: 200 message: OK @@ -7627,9 +8103,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: string: '' @@ -7638,13 +8114,15 @@ interactions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Apr 2025 09:49:59 GMT + - Fri, 11 Sep 2026 02:16:13 GMT expires: - '-1' pragma: @@ -7656,13 +8134,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/1a53184b-df43-41f4-9fb7-297f87d9f21c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4bc4c36e-2a8d-4467-a8e0-b93caeb0e51e x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: ECF92E4BB06E40A6A6BCBE536FD795D7 Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' + - 'Ref A: 8D048E08FFEE44E9B3DBD94A4E95026D Ref B: SYD281080711060 Ref C: 2026-09-11T02:16:13Z' status: code: 200 message: OK @@ -7680,12 +8158,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7694,8 +8172,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7704,8 +8185,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7714,8 +8198,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7724,8 +8211,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7734,8 +8224,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -7743,8 +8236,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -7752,8 +8248,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -7761,8 +8260,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -7770,8 +8272,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7780,8 +8285,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7790,8 +8298,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7800,8 +8311,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -7809,8 +8323,11 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","Switzerland West","France + South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7819,14 +8336,35 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","Jio India Central","Jio India West","India South + Central","Austria East","Chile Central","Belgium Central","Korea South","Poland + Central","Brazil Southeast","South Africa West","France South","Norway West","Switzerland + West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7835,9 +8373,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7847,9 +8384,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7859,9 +8395,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7871,27 +8406,88 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7900,9 +8496,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7912,9 +8507,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7923,9 +8517,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7934,9 +8527,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7945,9 +8537,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7956,9 +8547,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7967,9 +8557,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -7978,9 +8567,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7990,9 +8578,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8001,9 +8588,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8013,9 +8599,8 @@ interactions: Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE - North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8025,9 +8610,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8037,9 +8621,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8049,9 +8632,8 @@ interactions: North","South Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8061,9 +8643,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8073,9 +8654,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8084,9 +8664,19 @@ interactions: Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","UAE + North","South Africa North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8096,9 +8686,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -8108,27 +8697,28 @@ interactions: South","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8137,9 +8727,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8148,9 +8737,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8160,20 +8748,18 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","India + South Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","Denmark + East","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8183,27 +8769,28 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8213,21 +8800,21 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","Jio India West","Jio India Central","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil @@ -8237,9 +8824,9 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile + Central","New Zealand North","Indonesia Central","Malaysia West","Austria + East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","Jio India West","Jio India Central","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East @@ -8250,9 +8837,9 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile + Central","New Zealand North","Indonesia Central","Malaysia West","Austria + East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -8262,41 +8849,21 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -8306,8 +8873,9 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -8317,8 +8885,9 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -8327,8 +8896,9 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile + Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia + West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -8338,13 +8908,14 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile + Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia + West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -8354,26 +8925,28 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Jio India West","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada @@ -8384,8 +8957,8 @@ interactions: Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan @@ -8396,9 +8969,10 @@ interactions: US","North Europe","West Europe","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada @@ -8409,8 +8983,8 @@ interactions: Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany @@ -8422,8 +8996,9 @@ interactions: US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West @@ -8435,10 +9010,19 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West + US","East US","North Europe","West Europe","East Asia","India South Central","Southeast + Asia","North Central US","South Central US","Central US","East US 2","Japan + East","Japan West","Brazil South","Australia East","Australia Southeast","Central + India","South India","West India","Canada Central","Canada East","West Central + US","West US 2","UK West","UK South","Korea Central","Korea South","France + Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Jio India West","Sweden + Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8447,9 +9031,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8458,27 +9041,39 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8488,27 +9083,28 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8518,9 +9114,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8529,27 +9124,28 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8559,9 +9155,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8571,9 +9166,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8583,9 +9177,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8595,9 +9188,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8606,9 +9198,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8618,9 +9209,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8630,9 +9220,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8642,9 +9231,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8654,9 +9242,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8666,9 +9253,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8678,9 +9264,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8690,27 +9275,39 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium + Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada + Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central + US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark + East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East + US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France + Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India + South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel + Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan + East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea + Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico + Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North + Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland + Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South + Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast + Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden + Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE + North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West + Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West + US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8720,9 +9317,19 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","Indonesia Central","New Zealand North","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8732,9 +9339,19 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8744,10 +9361,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","South Central US STG","Brazil Southeast","Jio India Central","Sweden - South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8757,10 +9372,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8769,9 +9383,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8780,9 +9393,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8791,9 +9403,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8802,9 +9413,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8813,9 +9423,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8824,9 +9433,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8835,9 +9443,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8846,9 +9453,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8857,9 +9463,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8868,9 +9473,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8879,9 +9483,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8890,9 +9493,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8901,9 +9503,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8912,9 +9513,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8923,9 +9523,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8934,9 +9533,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8945,9 +9543,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8956,9 +9553,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8967,9 +9563,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8978,9 +9573,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8989,9 +9583,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9000,9 +9593,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9011,9 +9603,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9022,9 +9613,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9033,9 +9623,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9045,9 +9634,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9057,9 +9645,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9068,9 +9655,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -9080,9 +9666,8 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9092,9 +9677,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9103,9 +9687,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9115,9 +9698,28 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9126,9 +9728,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9137,9 +9738,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9148,9 +9748,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9159,9 +9758,52 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9170,9 +9812,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9181,44 +9823,20 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '217264' + - '247084' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:50:02 GMT + - Fri, 11 Sep 2026 02:16:16 GMT expires: - '-1' pragma: @@ -9232,7 +9850,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C04F98C8B5434EC981F532EC402C0BB3 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:00Z' + - 'Ref A: 745B4A5B219F49C8B3242D276B282F91 Ref B: SYD281080711060 Ref C: 2026-09-11T02:16:14Z' status: code: 200 message: OK @@ -9252,9 +9870,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 response: body: string: '' @@ -9262,17 +9880,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc0dc97e-8bc6-48eb-b2f5-caa7d869d187?api-version=2026-03-01&t=639246897781861641&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=e1DxGRpyJ9bgX1cQ5YPFI0El2TS32iSO1nQi4KAVFQlxF78E7RTD4Z2WhjTFGmvfilafrQBNm3mwJNWqgHrGisxqDChx6pBwRToCenk5BhFTVvOfOCJRJ8sy6K_1491FAYJk2olykmQfkjdmOAE35vHWOwImOGXWlYdeWtatyYYp7TghUeKwpuDlkCxgeS0sqe8Bxa74nqp8pywWdeNmItfWE-rIclpm179IVFbebbAkCEZISTI2apwPpNfSLY_rBm2yJ-JZfcq6wga9hcTwM8M2vs7JnxWlLmicI-AHcOV5Aq7ltdOm094_qmQMI299h9-WRNXGFa82Xbl0h8Bfzw&h=OIFSw5W2oJ-IIYnY8Zu5VHqeefM1MCYVu8vbZQInix0 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Apr 2025 09:50:05 GMT + - Fri, 11 Sep 2026 02:16:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062372959&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=ryZ0HaYqajQCYVen-6FUFbXNpw3olloaqo4pixCIC8lMDbbprZxw73VbeHtcMctgdVtSE4Z6ly0BesuQ1gkblQJGiuqRtJlGS_lrKboosaAHF6adyQ4UH3WKQWDMTPLPKsX0-Yxy7UdBUJzObQJPDoGg5PuqvUtKt92k-I5fqU2u7GB1VAvz2rHPnwPW4_PVel6tqznKpsbY6TYUzrvTPIuWRMFUQ_87LmA44kqKjFS_ohwB_KijQMCOBkPkXF7v3aYDeexZxmRg18peXkVyvaBILn9N1-txnxzxx2aDHFWWnl1wpnlGZobLPTgbh62oUTC4fGXLOPo-uWDiUAXSew&h=yO8x9w5WPlTS0cgHJIJGChoGYwRxs8TEIIMGfueuBbY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/dc0dc97e-8bc6-48eb-b2f5-caa7d869d187?api-version=2026-03-01&t=639246897781861641&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=r4jW7YVWb4VC_teU20v1qtNu0idQ34WzJJ_eTT2n7qxbLygsg41FRkdq_Vg_kVQe-z0FmTj2eV5VapG_L5gPuZKT7O8YvaTmzpf6S0HbLXbhM7hMYy2VknQ7XtXxqizfjZ2qH3QT3EN-9iklCSl3LwX4gRSKE2jD-QDrjh7F8WIXbQlnzCZfzMS16H0FD3DOxbt-dn73NOJ7JaI8rQNbX3oJ60jmqKrW48Cu8CbS_NpSrDOJlvfPUOKW3kc9OZH-1PA_jiVsNG67zLpXefKBpvfrbR9zjI0FYti5Any90KB1UcVwFgy3pmZdIrsiX19rn0XfhSWICl-aCa60-Kk3fw&h=Y2yUZYN6uRcbz5Ep_Izhr0LyVdaL2C7TVY7Usn5dr7A pragma: - no-cache strict-transport-security: @@ -9282,15 +9900,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b9f9f9c2-7b86-40c8-8fcf-bcf043d55843 + - 9a1df350-c7ad-4ef1-a86d-0bb903907dea x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/501b84f0-6c16-4fbb-9836-08d592a8a1ee + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1871c8f6-b9d8-41e5-99c3-5d54b253d547 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.3, + etc x-msedge-ref: - - 'Ref A: 772976AE407940DC9ED54814F78A1B23 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:04Z' + - 'Ref A: BA940F10CD064C09B560EEF8076F9C5C Ref B: SYD281080709034 Ref C: 2026-09-11T02:16:17Z' status: code: 202 message: Accepted @@ -9308,9 +9929,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc0dc97e-8bc6-48eb-b2f5-caa7d869d187?api-version=2026-03-01&t=639246897781861641&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=e1DxGRpyJ9bgX1cQ5YPFI0El2TS32iSO1nQi4KAVFQlxF78E7RTD4Z2WhjTFGmvfilafrQBNm3mwJNWqgHrGisxqDChx6pBwRToCenk5BhFTVvOfOCJRJ8sy6K_1491FAYJk2olykmQfkjdmOAE35vHWOwImOGXWlYdeWtatyYYp7TghUeKwpuDlkCxgeS0sqe8Bxa74nqp8pywWdeNmItfWE-rIclpm179IVFbebbAkCEZISTI2apwPpNfSLY_rBm2yJ-JZfcq6wga9hcTwM8M2vs7JnxWlLmicI-AHcOV5Aq7ltdOm094_qmQMI299h9-WRNXGFa82Xbl0h8Bfzw&h=OIFSw5W2oJ-IIYnY8Zu5VHqeefM1MCYVu8vbZQInix0 response: body: string: '{"status":"Succeeded"}' @@ -9322,7 +9943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:50:05 GMT + - Fri, 11 Sep 2026 02:16:19 GMT expires: - '-1' pragma: @@ -9334,13 +9955,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9fb10464-98bd-4864-b76b-161ff5a3247d + - 5a3ae7fe-6ed0-4237-8f72-001c54d7dd44 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/788679c1-b1e4-4748-b17d-99d1ff51dfe9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/c1e9871a-1aa8-4eb2-ad63-6a28f3c73d21 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 4C7B77964DE94F729CC2A4B8BF54CE72 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:06Z' + - 'Ref A: D44E3CA6905D403F9B2D93EDE9E29479 Ref B: SYD281080709042 Ref C: 2026-09-11T02:16:19Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 31021450529..a408fdbc6ea 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -491,7 +491,7 @@ def test_tag_update_by_patch(self, resource_group, resource_group_location): self.kwargs['public_ip_id'] = public_ip['publicIp']['id'] self.cmd('resource tag --ids {public_ip_id} --tags {tag}', checks=self.check('tags', {'cli-test': 'test'})) - self.cmd('resource delete --id {vault_id}', checks=self.is_empty()) + self.cmd('resource delete --id {vault_id} --no-wait', checks=self.is_empty()) self.cmd('resource delete --id {webhook_id}', checks=self.is_empty()) self.cmd('resource delete --id {public_ip_id}', checks=self.is_empty()) From 3b6a49808d8c085b51e38d2b20fcabdf2d954e2e Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Fri, 11 Sep 2026 14:13:13 +1000 Subject: [PATCH 07/19] Revert "test(acr): re-record tests for other modules" This reverts commit 48144bd9f75b31ee7510c4d26e310d6459f9653d. undo --- .../recordings/test_acr_create_abac.yaml | 84 +- .../latest/recordings/test_container_acr.yaml | 1249 +- .../test_container_acr_env_var.yaml | 5458 +++---- ...erapp_manualjob_private_registry_port.yaml | 1596 +- ...ljob_registry_acr_look_up_credentical.yaml | 1515 +- ...st_containerapp_private_registry_port.yaml | 2679 ++- ...rapp_registry_acr_look_up_credentical.yaml | 1563 +- .../test_containerappjob_registry_crud.yaml | 3417 ++-- .../recordings/test_tag_update_by_patch.yaml | 13413 ++++++++-------- .../resource/tests/latest/test_resource.py | 2 +- 10 files changed, 12914 insertions(+), 18062 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml index fda1beaeb36..626082c05f1 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml @@ -23,18 +23,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:27.0652097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1663' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:34 GMT + - Thu, 10 Sep 2026 06:42:41 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/fe1ce86e-5208-4e96-8240-442dbfc180d7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bf6e8d0-c4e4-4b5a-8bd3-eee843657790 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: ACE0EE953F1943398F13FD68295B6042 Ref B: SYD281080706023 Ref C: 2026-09-11T02:16:25Z' + - 'Ref A: 99314DE97E844DC694DBF5A8AD402823 Ref B: SYD281080705040 Ref C: 2026-09-10T06:42:32Z' status: code: 200 message: OK @@ -75,18 +75,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:27.0652097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1663' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:36 GMT + - Thu, 10 Sep 2026 06:42:42 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4A04A7DCC4484886B755195CD217CE40 Ref B: SYD281080705029 Ref C: 2026-09-11T02:16:35Z' + - 'Ref A: 4317657C2D7440E080357F06030D2673 Ref B: SYD281080707042 Ref C: 2026-09-10T06:42:42Z' status: code: 200 message: OK @@ -123,18 +123,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:27.0652097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1663' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:37 GMT + - Thu, 10 Sep 2026 06:42:44 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD001438C5DC427DB42839AB427ABEBE Ref B: SYD281080706023 Ref C: 2026-09-11T02:16:37Z' + - 'Ref A: 93402403C119442C953FAC0E4F1A9AC7 Ref B: SYD281080707034 Ref C: 2026-09-10T06:42:44Z' status: code: 200 message: OK @@ -175,18 +175,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:41.0146454+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1664' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:40 GMT + - Thu, 10 Sep 2026 06:42:46 GMT expires: - '-1' pragma: @@ -198,13 +198,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/7c998855-2034-4d0d-9bde-0c61dccc0baa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/86bcd0d2-dab5-479e-94d0-da1d05ebf496 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E692E295E7794C7FA3DC89B942825E40 Ref B: SYD281080708060 Ref C: 2026-09-11T02:16:38Z' + - 'Ref A: DC28DC71EE674D7C97D0CE3E86B41483 Ref B: SYD281080712025 Ref C: 2026-09-10T06:42:45Z' status: code: 200 message: OK @@ -227,18 +227,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:41.0146454+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1664' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:42 GMT + - Thu, 10 Sep 2026 06:42:48 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23D52F4DF4E340C5A39754F4DB6FCF74 Ref B: SYD281080712060 Ref C: 2026-09-11T02:16:42Z' + - 'Ref A: 4E0AC5FC79C24ED09BCFF1CF34AD5D51 Ref B: SYD281080710031 Ref C: 2026-09-10T06:42:48Z' status: code: 200 message: OK @@ -279,18 +279,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:44.1674886+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1665' + - '1664' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:43 GMT + - Thu, 10 Sep 2026 06:42:49 GMT expires: - '-1' pragma: @@ -302,13 +302,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d9ef8cf2-a850-49f5-ab02-83edb6812c7e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/20cb4955-1656-4347-9d96-0de05f6046a5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5831AC9237064B50B8AAB30C3AEB27EB Ref B: SYD281080706040 Ref C: 2026-09-11T02:16:43Z' + - 'Ref A: CD363FFE7CD446DF888402C25A00EFBC Ref B: SYD281080709062 Ref C: 2026-09-10T06:42:49Z' status: code: 200 message: OK @@ -333,22 +333,22 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:16:27.0652097+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:44.1674886+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-11T02:16:27.0652097Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:34.810105+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:34.8101609+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1663' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:45 GMT + - Thu, 10 Sep 2026 06:42:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898060754820&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=o3eZWALxpP_OD1dgzE8zIOAV4BuSlQQHLai2hkyRCMPVY3gKKR4wYzBCzIYe-93dThh2hxvTAae4OZjLOzAXaP49eq1SxaXYX7VhTA-xkzc04dsO_eiuurZLwYVaRvrpo7eCYv-fbeszdAfR34g5Y_hG6YA_TPYRkOdkZCsl3a6rfrGdRDQpy-uSs-GJmrcoNIL6SG0Y1pX-sh2rtJeQ3HbNyBv7RZagpHhQB8qFOT3ABWVmJZj7uK-O7PQk3POhc5aohluapCUt8yYvXUzSpF6D9qtqofeZgbWkmil7ZrHkH_QWGVIHfphbXH2TIe-Lu8q_BIgCjPNyfY64KuCiZA&h=keclUbDJ947GwRsZg1FAH4yeBS7B2JzySWeiiBtCu1I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew pragma: - no-cache strict-transport-security: @@ -358,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/b1813c42-759c-4215-8f39-53003f2f6776 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/58a4dbf1-63cd-4e4f-8844-2e14b95300a9 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 93BAE718DBB5452AADE7ADEADFF06ED0 Ref B: SYD281080709060 Ref C: 2026-09-11T02:16:45Z' + - 'Ref A: 646AE4D19B144B639A34E8CDE1C3A6BD Ref B: SYD281080710042 Ref C: 2026-09-10T06:42:51Z' status: code: 202 message: Accepted @@ -384,7 +384,7 @@ interactions: User-Agent: - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898060754820&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=o3eZWALxpP_OD1dgzE8zIOAV4BuSlQQHLai2hkyRCMPVY3gKKR4wYzBCzIYe-93dThh2hxvTAae4OZjLOzAXaP49eq1SxaXYX7VhTA-xkzc04dsO_eiuurZLwYVaRvrpo7eCYv-fbeszdAfR34g5Y_hG6YA_TPYRkOdkZCsl3a6rfrGdRDQpy-uSs-GJmrcoNIL6SG0Y1pX-sh2rtJeQ3HbNyBv7RZagpHhQB8qFOT3ABWVmJZj7uK-O7PQk3POhc5aohluapCUt8yYvXUzSpF6D9qtqofeZgbWkmil7ZrHkH_QWGVIHfphbXH2TIe-Lu8q_BIgCjPNyfY64KuCiZA&h=keclUbDJ947GwRsZg1FAH4yeBS7B2JzySWeiiBtCu1I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew response: body: string: '' @@ -394,11 +394,11 @@ interactions: content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:48 GMT + - Thu, 10 Sep 2026 06:42:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898085709092&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=K9rNsuyvJScwcCIEpR7OJNBftVOgmuInNJ86BL8RsW3CXgzGCvbNQa7_EmMSbcMNBo1rSMt3b5W0H_Q5yWKZLhvE7tvrV5-B1KsD9Je2VHu2dRBGKr-W1J6BsvR6hDHLy5RXxuywMvGh3OeYZhYOEM4SZMxnd0pH9hat5rqE7sxcpzVc9lvPFIZWf2gcFfytU21nq18Z0MNt-hugZN3Mi-gZARTG-0wEKWq86feXFw2_KDDaTzYywm2Bl2RAYkG-3NpHaUBw1VmEjI8pUavqVpX6VI-79vvG9yXWVCbXZcOLxLq2xy1DAOR-SKK5QshFmoJXr7CO6MboSmmlu-UZBQ&h=rFPhwBbJEVq_rKqGdEgjIg0vXJAXoCiQngLuAUgwBTk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk pragma: - no-cache strict-transport-security: @@ -408,11 +408,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f342cdb6-3f33-4999-b5b1-d234e688e88e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/81089ec9-6e21-49a1-bb23-e3e375bbe350 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 677A31AF5576466F8218E4624E6AA82B Ref B: SYD281080712036 Ref C: 2026-09-11T02:16:47Z' + - 'Ref A: 38220075980544C9A21CF26D4999C6AD Ref B: SYD281080705052 Ref C: 2026-09-10T06:42:52Z' status: code: 202 message: Accepted @@ -432,7 +432,7 @@ interactions: User-Agent: - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d6172bd0-ad86-11f1-988c-3cefa50a58cc?api-version=2026-09-01-preview&t=639246898085709092&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=K9rNsuyvJScwcCIEpR7OJNBftVOgmuInNJ86BL8RsW3CXgzGCvbNQa7_EmMSbcMNBo1rSMt3b5W0H_Q5yWKZLhvE7tvrV5-B1KsD9Je2VHu2dRBGKr-W1J6BsvR6hDHLy5RXxuywMvGh3OeYZhYOEM4SZMxnd0pH9hat5rqE7sxcpzVc9lvPFIZWf2gcFfytU21nq18Z0MNt-hugZN3Mi-gZARTG-0wEKWq86feXFw2_KDDaTzYywm2Bl2RAYkG-3NpHaUBw1VmEjI8pUavqVpX6VI-79vvG9yXWVCbXZcOLxLq2xy1DAOR-SKK5QshFmoJXr7CO6MboSmmlu-UZBQ&h=rFPhwBbJEVq_rKqGdEgjIg0vXJAXoCiQngLuAUgwBTk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk response: body: string: '' @@ -442,7 +442,7 @@ interactions: content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:58 GMT + - Thu, 10 Sep 2026 06:43:04 GMT expires: - '-1' pragma: @@ -454,11 +454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f86d7213-b12f-42d6-90eb-10de656ad383 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/af1d2677-f13f-440b-93e5-5c5f25946215 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F8D32F63D14F4BE4A9C334DDA0304879 Ref B: SYD281080712040 Ref C: 2026-09-11T02:16:59Z' + - 'Ref A: 25BF3405F9E6488E8616BC304A4420A8 Ref B: SYD281080706023 Ref C: 2026-09-10T06:43:04Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml index 5e4de205576..661c5b8d49a 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,11 +24,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -36,33 +34,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -70,40 +62,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -111,161 +96,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -273,161 +229,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:13 GMT + - Tue, 24 Mar 2026 04:51:12 GMT expires: - '-1' pragma: @@ -441,7 +333,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EDE93F7028A04103B91FE33D9A2793D1 Ref B: SYD281080709040 Ref C: 2026-09-11T02:14:13Z' + - 'Ref A: DEB706BE95EF40B7A15EC0CAFE34A074 Ref B: BY1AA1072318054 Ref C: 2026-03-24T04:51:13Z' status: code: 200 message: OK @@ -459,27 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2074' + - '1726' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:13 GMT + - Tue, 24 Mar 2026 04:51:13 GMT expires: - '-1' pragma: @@ -495,14 +387,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4DF3AA53AD234A5EA4B7671819510AC5 Ref B: SYD281080712060 Ref C: 2026-09-11T02:14:13Z' + - 'Ref A: 7B3AEB6CD6AF455B9E01BA8DA9EF8954 Ref B: SJC211051203045 Ref C: 2026-03-24T04:51:13Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -514,29 +406,29 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '90' Content-Type: - application/json ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1655' + - '1622' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:21 GMT + - Tue, 24 Mar 2026 04:51:21 GMT expires: - '-1' pragma: @@ -548,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/9d31b815-22fa-4415-a2fe-ba6c1a6d0dd3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/7bcba73f-eb17-4fbd-a79e-46537cefb9ef x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: C2BB244B96CD41FCBD1DC976A469A0F6 Ref B: SYD281080712029 Ref C: 2026-09-11T02:14:14Z' + - 'Ref A: A57B3BDF7F804690BBC72E1B7D8772EF Ref B: BY1AA1072318040 Ref C: 2026-03-24T04:51:14Z' status: code: 200 message: OK @@ -572,23 +464,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1655' + - '1622' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:22 GMT + - Tue, 24 Mar 2026 04:51:21 GMT expires: - '-1' pragma: @@ -602,7 +494,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BFF0514CE2394B17B9F594B38B9789E0 Ref B: SYD281080709029 Ref C: 2026-09-11T02:14:22Z' + - 'Ref A: 03EB10E81F3E48419EB661B93C714EC2 Ref B: BY1AA1072317031 Ref C: 2026-03-24T04:51:22Z' status: code: 200 message: OK @@ -622,15 +514,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"5kAUWC5q2TRf2xsBtURwt6vQw0vswOnrVqmpfmGAdTx5rWuwxRjCJQQJ99CIACMsfrFEqg7NAAACAZCRHfyo"},{"name":"password2","value":"7FWkNJkJfT3sDO4AbdKuwbLMVTEexHI4rj5UcvZJonwFva79slZsJQQJ99CIACMsfrFEqg7NAAACAZCR7As9"}]}' + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -638,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:23 GMT + - Tue, 24 Mar 2026 04:51:22 GMT expires: - '-1' pragma: @@ -650,13 +542,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/0e6a326b-c6b5-4fc7-9bf9-c7a2071999d2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/17096a55-4895-4b47-9203-d5d5e79bb569 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E06C694332CB45C4ABC14599087F16A6 Ref B: SYD281080706054 Ref C: 2026-09-11T02:14:23Z' + - 'Ref A: 8CAF524FCC7F489786E497DD16038F5A Ref B: BY1AA1072319040 Ref C: 2026-03-24T04:51:22Z' status: code: 200 message: OK @@ -674,7 +566,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -685,11 +577,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -697,33 +587,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -731,40 +615,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -772,161 +649,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -934,161 +782,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:24 GMT + - Tue, 24 Mar 2026 04:51:22 GMT expires: - '-1' pragma: @@ -1102,7 +886,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CB4CCA236434417BAD7B72FEBCCCDA4A Ref B: SYD281080712042 Ref C: 2026-09-11T02:14:24Z' + - 'Ref A: 7DC2A10262794C9396DE8036F9D7A4FF Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:23Z' status: code: 200 message: OK @@ -1120,27 +904,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2074' + - '1726' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:25 GMT + - Tue, 24 Mar 2026 04:51:23 GMT expires: - '-1' pragma: @@ -1156,7 +940,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AA51A369B45349B6A3F7A50025F5E78F Ref B: SYD281080706029 Ref C: 2026-09-11T02:14:24Z' + - 'Ref A: 2AB000AE9B184301A93A1A86641A87FB Ref B: SJC211051204039 Ref C: 2026-03-24T04:51:23Z' x-powered-by: - ASP.NET status: @@ -1176,7 +960,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1187,11 +971,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1199,33 +981,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1233,40 +1009,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1274,161 +1043,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1436,161 +1176,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:25 GMT + - Tue, 24 Mar 2026 04:51:23 GMT expires: - '-1' pragma: @@ -1604,15 +1280,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 10D537AF5FB04707842FDF2E33553EB4 Ref B: SYD281080709031 Ref C: 2026-09-11T02:14:25Z' + - 'Ref A: C3C8CE0D4223415E83C24F54CC82DFE3 Ref B: BY1AA1072317025 Ref C: 2026-03-24T04:51:23Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "5kAUWC5q2TRf2xsBtURwt6vQw0vswOnrVqmpfmGAdTx5rWuwxRjCJQQJ99CIACMsfrFEqg7NAAACAZCRHfyo"}], + "value": "***"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}]}, "template": @@ -1631,35 +1307,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1036' + - '1032' Content-Type: - application/json ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:26.7087926Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:26.7087926Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg cache-control: - no-cache content-length: - - '4166' + - '4101' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:26 GMT + - Tue, 24 Mar 2026 04:51:24 GMT expires: - '-1' pragma: @@ -1673,11 +1349,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/a0548c69-0cdb-4b8f-939f-6f06a25d2693 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/9ab4c0af-91b8-4a54-99bb-ebe133c8638c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 617049237E7747B182DCD3E600C037CC Ref B: SYD281080710042 Ref C: 2026-09-11T02:14:26Z' + - 'Ref A: 644D80A1A74840A2B07FCCE93306269A Ref B: BY1AA1072317040 Ref C: 2026-03-24T04:51:24Z' x-powered-by: - ASP.NET status: @@ -1697,26 +1373,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:26 GMT + - Tue, 24 Mar 2026 04:51:24 GMT expires: - '-1' pragma: @@ -1730,11 +1406,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/6d501d02-8fda-410d-b975-f9893e20796e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9d04871a-e50a-458d-a954-236c5d2cd223 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5F3B3B0407364AFEBB4FCD7B35DCCC86 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:27Z' + - 'Ref A: 110420A4F9504E7AA2348355E0730D37 Ref B: BY1AA1072315054 Ref C: 2026-03-24T04:51:24Z' x-powered-by: - ASP.NET status: @@ -1754,26 +1430,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:30 GMT + - Tue, 24 Mar 2026 04:51:27 GMT expires: - '-1' pragma: @@ -1787,11 +1463,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/8cf7c727-fe8c-4865-99ec-ae217f30f10f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/17779ed2-2d04-47cd-baae-cc3dd00d2951 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A78A2CFEB2164BD7BC9BCF9B64E734FE Ref B: SYD281080712042 Ref C: 2026-09-11T02:14:30Z' + - 'Ref A: 508CA5FF4376425483768453E84749A3 Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:27Z' x-powered-by: - ASP.NET status: @@ -1811,26 +1487,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:33 GMT + - Tue, 24 Mar 2026 04:51:30 GMT expires: - '-1' pragma: @@ -1844,11 +1520,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/81e59e0b-b570-452d-acf6-738b9cbfe8f2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4aea88da-ad7a-475d-8f45-1b9b5409eb60 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 842B3279D25F45D99F0B473B9BD58EDA Ref B: SYD281080706023 Ref C: 2026-09-11T02:14:33Z' + - 'Ref A: 8A75FC56D25E42C2AAA8FA94EE73BB13 Ref B: SJC211051201009 Ref C: 2026-03-24T04:51:30Z' x-powered-by: - ASP.NET status: @@ -1868,26 +1544,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"InProgress","startTime":"2026-09-11T02:14:26.9295856"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:36 GMT + - Tue, 24 Mar 2026 04:51:32 GMT expires: - '-1' pragma: @@ -1901,11 +1577,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/cfe96cc2-5f5a-4235-b5f7-6b9d8615ddb2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7a793285-3a60-489d-9844-d5dd666e4604 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D203A0F65EF4BDB87859FAF93A01CEA Ref B: SYD281080708025 Ref C: 2026-09-11T02:14:36Z' + - 'Ref A: 96DC966BF7D045E79F6CD129E0DD2E27 Ref B: BY1AA1072320060 Ref C: 2026-03-24T04:51:32Z' x-powered-by: - ASP.NET status: @@ -1925,18 +1601,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896670056700&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=it7Bi2Hi1k7eSjAEtCpSVvwIbs6QOsLDF7hqXwmpx0C3oMkwAWEBOGnSKqhDD-DQ872gLUVxr2DEFek6q5KaYvoQekc6GOMDnGIYHscHdAzNbcWhxH1pzEP44M-4ZK8NoSSzEgrDK9SKONzpoPPbDLiErWGtwKnW8ScrlszAlaXzid1nw3p3x3FslcrgcBLTKXn4TyOsCKH_Ri3aGge6tosJemPY1SwExHh-Bz8_AdjVYHxFLWw814jHOwwxtAjCA2vbBRye7hlVBT3zT7JKzsHGQUKPnDqpAZ8cJ5QFP_OsNJL4fOeVzfG-DU9QYB8TCpJoJeKKutsAhe3YSyzpDA&h=JSNrlBsxB9gbzseUB5vUr7utCE95aEFQeMeUdTQO4Pc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/b1bada3c-1d9d-4384-a973-39bf5ec7032d","name":"b1bada3c-1d9d-4384-a973-39bf5ec7032d","status":"Succeeded","startTime":"2026-09-11T02:14:26.9295856"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1944,7 +1620,64 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:39 GMT + - Tue, 24 Mar 2026 04:51:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d7bb09ce-e7e6-4338-bcad-2cdbb82cebeb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 849F59C2FA57440E8AD40478E3C992FC Ref B: SJC211051201047 Ref C: 2026-03-24T04:51:35Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"Succeeded","startTime":"2026-03-24T04:51:24.4460644"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '277' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 04:51:37 GMT expires: - '-1' pragma: @@ -1958,11 +1691,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/96ed2db1-05bd-4b32-8437-3f19abb9e1cb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6cb4d0b3-b530-4cce-94dc-802456f9e503 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 029DBC8C3476420B83CBF1F745E162E4 Ref B: SYD281080711062 Ref C: 2026-09-11T02:14:39Z' + - 'Ref A: 6551EFFD1C284D70AF67504A2CB9E086 Ref B: SJC211051203053 Ref C: 2026-03-24T04:51:37Z' x-powered-by: - ASP.NET status: @@ -1982,27 +1715,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:26.7087926","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:26.7087926"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000005--goupk24","latestReadyRevisionName":"containerapp-e2e000005--goupk24","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000005--p4wv4sk","latestReadyRevisionName":"containerapp-e2e000005--p4wv4sk","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4687' + - '4621' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:40 GMT + - Tue, 24 Mar 2026 04:51:38 GMT expires: - '-1' pragma: @@ -2018,7 +1751,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F67600242E66460CB4A538A2719DB866 Ref B: SYD281080709060 Ref C: 2026-09-11T02:14:40Z' + - 'Ref A: 9D678719740D452999571AFF4367604F Ref B: BY1AA1072319029 Ref C: 2026-03-24T04:51:38Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml index 02632571db9..f2d2df16cba 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,11 +24,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -36,33 +34,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -70,40 +62,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -111,161 +96,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -273,161 +229,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:20 GMT + - Tue, 24 Mar 2026 05:55:11 GMT expires: - '-1' pragma: @@ -441,7 +333,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3FB48C77BB694003A4D3067C5003C3D9 Ref B: SYD281080708054 Ref C: 2026-09-11T02:15:20Z' + - 'Ref A: F85FCD0C47AD43578E0CE37D5CD1DFA6 Ref B: BY1AA1072318025 Ref C: 2026-03-24T05:55:12Z' status: code: 200 message: OK @@ -459,27 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2074' + - '1726' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:21 GMT + - Tue, 24 Mar 2026 05:55:12 GMT expires: - '-1' pragma: @@ -495,14 +387,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD17747F14F246B3B59813AE4577AC0D Ref B: SYD281080708025 Ref C: 2026-09-11T02:15:21Z' + - 'Ref A: 887910DE91FA49C6B3F4D73E1706ED4E Ref B: BY1AA1072319036 Ref C: 2026-03-24T05:55:12Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -514,29 +406,29 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '90' Content-Type: - application/json ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-11T02:15:24.3068569Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280052+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280452+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1655' + - '1619' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:31 GMT + - Tue, 24 Mar 2026 05:55:21 GMT expires: - '-1' pragma: @@ -548,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/8d62773f-2d7e-49d9-a934-0852a0fda7d2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/310d4c57-8d43-45cc-a111-38d58da250a8 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 7FEAAC4E9FC24198920CA5DA7DF5EE66 Ref B: SYD281080708029 Ref C: 2026-09-11T02:15:22Z' + - 'Ref A: 8A63F46DEF9341B2A84341B74D6705A3 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:55:13Z' status: code: 200 message: OK @@ -572,23 +464,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-11T02:15:24.3068569Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280052+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:31.5280452+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1655' + - '1619' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:33 GMT + - Tue, 24 Mar 2026 05:55:22 GMT expires: - '-1' pragma: @@ -602,7 +494,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 094669511DBF494DB051F7F8CCC17613 Ref B: SYD281080711025 Ref C: 2026-09-11T02:15:32Z' + - 'Ref A: 148900C360A5448FB4F31B1A9F3C7505 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:55:22Z' status: code: 200 message: OK @@ -622,15 +514,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"},{"name":"password2","value":"FLubCq15CYQZHxX2Wf4IUjAhuigsQpMviT0crqc96fQZ5C2dn8MRJQQJ99CIACMsfrFEqg7NAAACAZCRVAki"}]}' + string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -638,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:33 GMT + - Tue, 24 Mar 2026 05:55:22 GMT expires: - '-1' pragma: @@ -650,13 +542,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/ed98910a-b2ff-4037-a630-1672412fc2f5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/cd571352-9681-4da7-a353-ed79d31b3dd2 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 037316F313FD44E0B5F3D6FBC2BB7B63 Ref B: SYD281080711023 Ref C: 2026-09-11T02:15:33Z' + - 'Ref A: F7BE3154E03F48118223DA69FF5F85D1 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:22Z' status: code: 200 message: OK @@ -674,7 +566,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -685,11 +577,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -697,33 +587,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -731,40 +615,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -772,11 +649,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -784,91 +658,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -885,31 +741,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -922,11 +772,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -934,161 +782,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:34 GMT + - Tue, 24 Mar 2026 05:55:23 GMT expires: - '-1' pragma: @@ -1102,7 +886,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9EBD018C61454414A1C98541B44F3B1D Ref B: SYD281080708036 Ref C: 2026-09-11T02:15:34Z' + - 'Ref A: 03CA59EFEBA84E46B942C528E2177387 Ref B: SJC211051201039 Ref C: 2026-03-24T05:55:23Z' status: code: 200 message: OK @@ -1120,27 +904,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2074' + - '1726' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:35 GMT + - Tue, 24 Mar 2026 05:55:22 GMT expires: - '-1' pragma: @@ -1156,7 +940,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 48EF26D5C3D140A984AB68DE00581115 Ref B: SYD281080709034 Ref C: 2026-09-11T02:15:35Z' + - 'Ref A: 543995D6B84544589AA3C8E3B1FBD029 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:55:23Z' x-powered-by: - ASP.NET status: @@ -1176,7 +960,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1187,11 +971,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1199,33 +981,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1233,40 +1009,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1274,161 +1043,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1436,161 +1176,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:36 GMT + - Tue, 24 Mar 2026 05:55:23 GMT expires: - '-1' pragma: @@ -1604,15 +1280,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BAE070C0CE054421977AED5EDD14EB65 Ref B: SYD281080707023 Ref C: 2026-09-11T02:15:36Z' + - 'Ref A: 784676E3AC39442792976D285A6FCEC6 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:23Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", - "value": "AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"}], + "value": "***"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": "containerapp000002azurecrio-containerapp000002"}]}, "template": @@ -1631,35 +1307,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1036' + - '1032' Content-Type: - application/json ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:37.9447156Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU cache-control: - no-cache content-length: - - '4166' + - '4099' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:38 GMT + - Tue, 24 Mar 2026 05:55:24 GMT expires: - '-1' pragma: @@ -1673,11 +1349,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/816b25d8-208f-4749-a773-51e77e9504e2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/afab1123-b379-4e37-903c-7226dae20243 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: D842B21C74BB403B95054D2C1E2903AA Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:37Z' + - 'Ref A: B041C54A3B1E4872B6D191B5F8EA7586 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:55:23Z' x-powered-by: - ASP.NET status: @@ -1697,26 +1373,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:39 GMT + - Tue, 24 Mar 2026 05:55:24 GMT expires: - '-1' pragma: @@ -1730,11 +1406,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b089aceb-1226-425e-9afb-369f3ee3b009 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8befd579-9809-491e-9229-f3954f734f20 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C6EE08D06BF743969FA658FD52B5E3E9 Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:39Z' + - 'Ref A: 3BE01733670748C0BD9922549B4E1E84 Ref B: SJC211051205039 Ref C: 2026-03-24T05:55:24Z' x-powered-by: - ASP.NET status: @@ -1754,26 +1430,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:42 GMT + - Tue, 24 Mar 2026 05:55:26 GMT expires: - '-1' pragma: @@ -1787,11 +1463,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c9e13a4d-1750-488a-8c68-c86b6872bb56 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/73aa0456-62d4-49bd-a16a-f32bc93fd2aa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9FADF0DA03C045C4B0C79D796F62924F Ref B: SYD281080706034 Ref C: 2026-09-11T02:15:42Z' + - 'Ref A: 8968CDB2E8EB413B81AA7329038A1739 Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:55:27Z' x-powered-by: - ASP.NET status: @@ -1811,26 +1487,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:45 GMT + - Tue, 24 Mar 2026 05:55:29 GMT expires: - '-1' pragma: @@ -1844,11 +1520,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/aab4d16c-d4ea-44cb-93f5-2bdacdd815bc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f384d921-10e9-4df0-a929-fc688daa9456 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6BD4814180134C2E8A24DAF3C02D9791 Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:45Z' + - 'Ref A: C3551CBBFA5C4A05BB45343A562E5489 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:29Z' x-powered-by: - ASP.NET status: @@ -1868,26 +1544,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"InProgress","startTime":"2026-09-11T02:15:38.1621015"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:49 GMT + - Tue, 24 Mar 2026 05:55:31 GMT expires: - '-1' pragma: @@ -1901,11 +1577,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/504c0c65-dc19-4706-ac85-ddb6f53f3e27 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/14f0815b-8720-40ef-a73b-4f70b164a8ba x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A888E63161E34A8D8F9991466FF9694A Ref B: SYD281080705040 Ref C: 2026-09-11T02:15:49Z' + - 'Ref A: BAD809E0866B4C13AE593E0F1749D04C Ref B: BY1AA1072319062 Ref C: 2026-03-24T05:55:31Z' x-powered-by: - ASP.NET status: @@ -1925,18 +1601,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42?api-version=2025-07-01&azureAsyncOperation=true&t=639246897382572180&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=lS3I0pe8f5lhcd6nm6mXxxeju981FuEbCQS2zq_O5VVV5HltHUocHZd6EJ2pHsD_4XOMsYgUlq8NrGFXlJl-j9O85MTKMbVeiQtzxD1czYfVWELc9uny_nnk8RqhuTh-fIfbvgQ8hxpE9aG-9y8nkMidMO_7Ec4oQV9ox8uvWZIFcgsYwONHvXCGGLzVa44367yeuuclSVjxHIb_IQRdTPXpMC5_-7fwL1iRkxgbrEKl9BEPG8t1sqBp565M4lz91oZPXrvM1vMIpjcMOUAx60Y2fVc_TPUh8YyAg9Ek1XMcsDh9DXLsBaZYwOxPoIZajtNWnG4o3cRIo437l-f6mg&h=otDmVP3RnwOntXmL3VQ_SISS_8geStgOT92d0mwBODk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/8ec41744-b590-4a5c-8e04-e3c5f103bc42","name":"8ec41744-b590-4a5c-8e04-e3c5f103bc42","status":"Succeeded","startTime":"2026-09-11T02:15:38.1621015"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1944,7 +1620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:52 GMT + - Tue, 24 Mar 2026 05:55:34 GMT expires: - '-1' pragma: @@ -1958,11 +1634,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9496e513-f6c2-4b08-8491-ea2ff044a940 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/753fa0f1-1e55-4bff-8bf0-e908ca4d8116 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 934F0F43482C493D94EDC3435558C46A Ref B: SYD281080706023 Ref C: 2026-09-11T02:15:52Z' + - 'Ref A: 802DF80DE3A94F4D95876FA067045321 Ref B: SJC211051203027 Ref C: 2026-03-24T05:55:34Z' x-powered-by: - ASP.NET status: @@ -1982,27 +1658,84 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"Succeeded","startTime":"2026-03-24T05:55:24.2097378"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '277' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:55:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/c798deaa-2d86-4123-81dc-da246a186722 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 53F3ED521F9A48FF878F2740B6BE4B30 Ref B: SJC211051204007 Ref C: 2026-03-24T05:55:37Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:37.9447156"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--jb0h14a","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4687' + - '4619' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:54 GMT + - Tue, 24 Mar 2026 05:55:36 GMT expires: - '-1' pragma: @@ -2018,7 +1751,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C9A34E34A40446E6976A1B2A9D1F0D27 Ref B: SYD281080708040 Ref C: 2026-09-11T02:15:53Z' + - 'Ref A: E11E818D845445E385872F2CEC0F7D28 Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:55:37Z' x-powered-by: - ASP.NET status: @@ -2038,7 +1771,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2049,11 +1782,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2061,33 +1792,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2095,40 +1820,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2136,161 +1854,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2298,161 +1987,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:54 GMT + - Tue, 24 Mar 2026 05:55:37 GMT expires: - '-1' pragma: @@ -2466,7 +2091,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1F330B9136014C8BA580711ACC3E957F Ref B: SYD281080712060 Ref C: 2026-09-11T02:15:54Z' + - 'Ref A: F6F8C1723EEB4C4F89BA3CFEA8F9CAA3 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:55:37Z' status: code: 200 message: OK @@ -2484,7 +2109,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2495,11 +2120,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2507,33 +2130,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2541,40 +2158,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2582,161 +2192,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2744,161 +2325,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:55 GMT + - Tue, 24 Mar 2026 05:55:38 GMT expires: - '-1' pragma: @@ -2912,7 +2429,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 889CDE3BBE6C4D928C3EA2175D4AB026 Ref B: SYD281080711062 Ref C: 2026-09-11T02:15:55Z' + - 'Ref A: C221207E5F6C43BB932BCDC8EE955207 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:55:38Z' status: code: 200 message: OK @@ -2930,27 +2447,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:37.9447156"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--jb0h14a","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4687' + - '4619' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:57 GMT + - Tue, 24 Mar 2026 05:55:38 GMT expires: - '-1' pragma: @@ -2966,7 +2483,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 17987646541A485DBD166EAA7760F57C Ref B: SYD281080710040 Ref C: 2026-09-11T02:15:56Z' + - 'Ref A: 5876958253C04DE187693AAFC2986E76 Ref B: SJC211051201017 Ref C: 2026-03-24T05:55:38Z' x-powered-by: - ASP.NET status: @@ -2993,7 +2510,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -3004,19 +2521,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:15:59 GMT + - Tue, 24 Mar 2026 05:55:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationResults/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&t=639246897593976035&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=CcjALqXk7OS87pdF87tp5nDxbuN7qb_2yiwchyMsF1w9v4wGpONdrWaKxPTpJ2jFES16H00eqYTtPCHlTdwWjRpp60_eP5dGcUVi3dRe2cu7lAfCX_Bpq5kILUSr-FGgj458B7Ca8WkWYzq3FPtV_2cCRbnelJ1nmBO2eWbfV4DGiHd1R0i2qXHPCChXn1Cn2yPYnrcr8hHCdVUZdxav0l-pfXcx_YW8EUbhyVTwqmqeFqve5Tjb4kQGlO4vTo0KNRTA5_rDd1ZU82OSp8DVA4WmYKzay70-lJnZiReUFnO_de6BEDDh2ittXBRBoS8lh5QLRitr4mzTrRkdQpDd3Q&h=GrbPs9Gq9IwnBBaBTmvlrELpL5ikij6IFf1oWUqfHvU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=OiX-ev0V-zoCue3svj0ssGPepKn9Gt9GNxDMsVGR0GuwzZXOn_ADMUHruls2YutFR59GyxuiTSybVF5zV13cXZghECiPGMt7L1CuWvJ6eVNUAIPtiMUF09Np7r90mVRbxiOhQGpCNWwf22BhRaIMCJ_oyLtt6LR8qbH4w2GFZ5-VM-4zMT6nXmoHaGuQtzrew27vCbv-X6fMiuJIT0zFAGPrktgTCj7axOKoJBASmXL4dzy2_KOtd4W6syfGx86c74AYXzQGw9w84oH7Z_E8u9eoZ5dTqXE3ygLdDD4YcwI73VvURo4SB4SuqFR8ljg-EdZ3-vO8FsZjIOhLAd9cnA&h=C5jpKW3JuJlz-0knFsza4SLcG6_eaPp1dBuPoWqH3GA pragma: - no-cache strict-transport-security: @@ -3026,11 +2543,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/dd8ead43-7f08-495b-807b-0dc6fe8fd254 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/b7e74ace-331e-42a9-90ef-40d8c2876c5d x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 46BBB29CF5884C398A3B3892C3F16188 Ref B: SYD281080706025 Ref C: 2026-09-11T02:15:58Z' + - 'Ref A: 5C876BD65A8C4050A3694E8B6D662EC1 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:55:39Z' x-powered-by: - ASP.NET status: @@ -3050,26 +2567,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:00 GMT + - Tue, 24 Mar 2026 05:55:39 GMT expires: - '-1' pragma: @@ -3083,11 +2600,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/f775b334-c607-433a-b24f-ff43351ccbf5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/091a44c2-aa37-45f4-a818-47b78080a7cc x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 7CA183AC1D31436DB5ECA230C214BD3C Ref B: SYD281080712029 Ref C: 2026-09-11T02:16:00Z' + - 'Ref A: 97AC88E040434658A1E9E7E9B28BD62D Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:39Z' x-powered-by: - ASP.NET status: @@ -3107,26 +2624,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:03 GMT + - Tue, 24 Mar 2026 05:55:42 GMT expires: - '-1' pragma: @@ -3140,11 +2657,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c9350675-08a3-4e23-8a41-01b9f9e3e905 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/be56815f-12f6-4c47-b788-5c3be718ca96 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 01CBA67FE0BE42C49D026AB8E740BC5E Ref B: SYD281080705029 Ref C: 2026-09-11T02:16:03Z' + - 'Ref A: B9CE90C233884E97915A06945841E788 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:42Z' x-powered-by: - ASP.NET status: @@ -3164,26 +2681,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:06 GMT + - Tue, 24 Mar 2026 05:55:44 GMT expires: - '-1' pragma: @@ -3197,11 +2714,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/03462843-0544-47cd-bf38-a65143cd9b09 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8516f274-e462-40e8-9f5c-1633497725dd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23779F77114A4E04B43B51A8DA2794A1 Ref B: SYD281080707054 Ref C: 2026-09-11T02:16:06Z' + - 'Ref A: 389BD75BCF074D03B3FBD348A05D88C8 Ref B: SJC211051204033 Ref C: 2026-03-24T05:55:44Z' x-powered-by: - ASP.NET status: @@ -3221,26 +2738,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"InProgress","startTime":"2026-09-11T02:15:59.3553473"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:10 GMT + - Tue, 24 Mar 2026 05:55:47 GMT expires: - '-1' pragma: @@ -3254,11 +2771,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ccec3ef3-6d0c-4116-9bd2-169601bed00f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/5af52663-9944-407d-a85a-48180b7167e4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 329D208FA36C43D0B134C161FA36B505 Ref B: SYD281080705036 Ref C: 2026-09-11T02:16:10Z' + - 'Ref A: 51647A54749044CE98DEC234813E878B Ref B: SJC211051204045 Ref C: 2026-03-24T05:55:47Z' x-powered-by: - ASP.NET status: @@ -3278,18 +2795,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef?api-version=2025-07-01&azureAsyncOperation=true&t=639246897593819744&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=MFB1knXxeRj1q4OFmTxVuuB4mBGgici470ybr_RsAyOI6d0cCYLr0xq0BUacZLEnexWT-ttWRyU9x-PUaO_usPFPcpePZ-LPRq_IwpC9rgP_nHmj3ZHXZXGK5L7tuw08NoSdzCclJbHQh2pgOYyzW8yF8Fmn0RBlCn2LFbgHw0VyUQrcTVMZVMxdz75NBCAQK2rzjocz-DNnI00mAZMqV-n_YQj4fk393W95Fbbp5r6EIJNADOSpiMYajqfGhrxHo3eculUUDpOShe5D9DgiEWUws7x_zOuOMbzX-pMBICb6nsgzPkiCFLfQMDc-oyWtGENII_fxqCMfia_1ADcv_g&h=BZg2KQLjhjH9lrRXqFfxGjY2y5R3CHnqlaJR69Z3n6Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/4b356d11-fda4-440e-8bfa-90929ab17aef","name":"4b356d11-fda4-440e-8bfa-90929ab17aef","status":"Succeeded","startTime":"2026-09-11T02:15:59.3553473"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -3297,7 +2814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:13 GMT + - Tue, 24 Mar 2026 05:55:49 GMT expires: - '-1' pragma: @@ -3311,11 +2828,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/aabbbbc3-2cb5-4388-977d-a9039eb4ec89 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/945a3cc0-063e-426f-9977-0b5184dd44a0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 06E6A09CA55D453FB2BA0CBF84A7629E Ref B: SYD281080710042 Ref C: 2026-09-11T02:16:13Z' + - 'Ref A: 1C3A14844F564B38B6989EEB1C2307B7 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:55:49Z' x-powered-by: - ASP.NET status: @@ -3335,27 +2852,84 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"Succeeded","startTime":"2026-03-24T05:55:39.6255863"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '277' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:55:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/db8d0720-dd43-46b8-8869-6af35ab63048 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 36C6A752F297453A9C190DEA0B27E18F Ref B: SJC211051201023 Ref C: 2026-03-24T05:55:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --min-replicas --max-replicas --set-env-vars + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:59.0694457"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4728' + - '4661' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:14 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -3371,7 +2945,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2515217231154AE18066BC5977872EB9 Ref B: SYD281080709060 Ref C: 2026-09-11T02:16:14Z' + - 'Ref A: DDD8789F90D94B9E8E61447B9497312E Ref B: BY1AA1072320062 Ref C: 2026-03-24T05:55:52Z' x-powered-by: - ASP.NET status: @@ -3391,7 +2965,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3402,11 +2976,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3414,33 +2986,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3448,40 +3014,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3489,161 +3048,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3651,161 +3181,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:15 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -3819,7 +3285,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1FA440A987554645BBA4B9140542AA93 Ref B: SYD281080706060 Ref C: 2026-09-11T02:16:15Z' + - 'Ref A: 3868DD2BCC6C447389CF8E197A0F6DC0 Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:53Z' status: code: 200 message: OK @@ -3837,27 +3303,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:59.0694457"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4728' + - '4661' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:15 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -3873,7 +3339,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7BB9C172A6004756BEAB709EBE1225F7 Ref B: SYD281080708062 Ref C: 2026-09-11T02:16:16Z' + - 'Ref A: F1C13AB984D342E08FACC489B275FF76 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:55:53Z' x-powered-by: - ASP.NET status: @@ -3893,7 +3359,7 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3904,11 +3370,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3916,33 +3380,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3950,40 +3408,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3991,11 +3442,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4003,91 +3451,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -4104,31 +3534,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -4141,11 +3565,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -4153,161 +3575,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:17 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -4321,7 +3679,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CB593721EDCF4594B0A0A9B3AE58943F Ref B: SYD281080712031 Ref C: 2026-09-11T02:16:17Z' + - 'Ref A: 466A474B38C147C5B4566EE3C0618A11 Ref B: SJC211051205049 Ref C: 2026-03-24T05:55:53Z' status: code: 200 message: OK @@ -4339,27 +3697,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:59.0694457"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--jb0h14a","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4728' + - '4661' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:17 GMT + - Tue, 24 Mar 2026 05:55:53 GMT expires: - '-1' pragma: @@ -4375,7 +3733,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E3868415F7124F28AFF5C782940EFBD2 Ref B: SYD281080707036 Ref C: 2026-09-11T02:16:18Z' + - 'Ref A: A7AE8C5C3C4B4421B89661404B4BEF7E Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:55:53Z' x-powered-by: - ASP.NET status: @@ -4397,18 +3755,18 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -4416,7 +3774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:19 GMT + - Tue, 24 Mar 2026 05:55:55 GMT expires: - '-1' pragma: @@ -4430,13 +3788,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/e9d37799-246b-478b-8240-e5742f189e94 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/11b564e7-976e-4d50-852d-430d807a6526 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 56AA840F2701427C81855FFBD0999DBB Ref B: SYD281080708052 Ref C: 2026-09-11T02:16:19Z' + - 'Ref A: 8EE9D307D17F46D1B803C4838B4D1330 Ref B: SJC211051204047 Ref C: 2026-03-24T05:55:54Z' x-powered-by: - ASP.NET status: @@ -4445,49 +3803,48 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "West US 3", "systemData": {"createdBy": "test@example.com", "createdByType": - "User", "createdAt": "2026-09-11T02:15:37.9447156", "lastModifiedBy": "test@example.com", - "lastModifiedByType": "User", "lastModifiedAt": "2026-09-11T02:15:59.0694457"}, + "East US", "systemData": {"createdBy": "test@example.com", "createdByType": + "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:39.3791927"}, "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", - "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", - "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", - "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.125.76.124", - "20.125.74.58", "20.118.180.220", "20.125.72.245", "4.236.29.28", "4.236.28.230", - "4.236.28.126", "4.236.29.23", "4.236.28.206", "4.236.29.43", "20.14.119.70", - "135.234.107.40", "135.234.118.135", "20.14.118.252", "4.236.1.136", "134.33.25.140", - "20.14.66.96", "134.33.8.60", "20.171.203.222", "20.14.36.89", "20.150.255.247", - "135.234.57.229", "4.227.26.117", "135.234.57.184", "134.33.29.28", "134.33.13.26", - "135.234.57.185", "20.106.113.235", "20.150.255.246", "4.227.35.224", "20.171.205.76", - "20.14.32.62", "134.33.12.230", "135.234.56.142", "20.125.67.33", "20.125.69.152", - "4.227.26.140", "4.227.40.234", "135.234.57.236", "20.25.168.115", "134.33.12.156", - "20.14.0.159", "135.234.56.178", "135.234.82.154", "135.234.57.227", "135.234.85.139", - "135.234.56.143", "134.33.10.88", "4.227.42.218", "4.227.25.94", "20.106.119.7", - "20.125.70.236", "135.234.57.237", "4.227.26.24", "4.227.25.66", "135.234.56.179", - "134.33.9.225", "20.14.38.176", "4.227.43.159", "134.33.30.78", "134.33.25.23", - "20.14.112.189", "4.236.31.57", "134.33.30.121", "20.14.32.63", "20.14.36.53", - "134.33.31.137", "20.14.35.60", "20.171.203.223", "134.33.29.111", "4.227.26.72", - "20.25.168.87", "20.150.251.124", "4.227.36.172", "4.227.30.80", "134.33.29.43", - "4.227.27.148", "20.150.251.125", "4.227.28.135", "20.150.253.71", "20.118.146.180", - "20.118.148.199", "20.118.144.32", "20.118.146.221", "4.227.76.26", "4.227.76.45", - "4.227.76.46", "4.227.76.20", "4.227.76.51", "4.227.76.18", "4.227.58.38", "134.33.25.222", - "4.236.8.251", "4.236.39.174", "20.14.40.97", "4.236.61.216", "20.125.75.87", - "20.14.115.60", "4.149.49.40", "20.118.152.204", "20.14.16.172", "134.33.15.10", - "51.57.119.195", "20.14.18.201", "134.33.15.35", "20.14.117.141", "20.14.118.111", - "134.33.15.172", "20.14.18.181", "20.14.18.216", "20.14.119.56", "51.57.118.243", - "20.14.62.62", "51.57.117.40", "134.33.15.34", "135.234.86.10", "135.234.82.155", - "134.33.14.147", "20.150.155.57", "134.33.15.133", "4.227.41.173", "20.14.119.233", - "4.227.34.162", "135.234.86.4", "134.33.15.11", "134.33.14.169", "134.33.14.159", - "134.33.14.54", "20.14.68.165", "134.33.14.168", "20.14.34.15", "20.150.152.185", - "134.33.13.150", "4.227.45.34", "4.227.35.225", "20.14.18.200", "20.14.18.180", - "20.14.62.63", "20.150.155.56", "135.234.82.151", "20.14.114.132", "20.106.115.55", - "20.14.59.52", "4.227.44.57", "20.118.153.31", "20.125.94.115", "134.33.13.131", - "20.14.36.5", "20.171.210.30", "51.57.119.141", "20.125.93.57", "134.33.15.19", - "134.33.14.158", "135.234.66.26", "20.14.113.82", "134.33.14.144", "134.33.14.55", - "51.57.119.193", "20.14.119.89", "51.57.119.238", "4.236.68.178"], "latestRevisionName": - "containerapp-e2e000003--0000001", "latestReadyRevisionName": "containerapp-e2e000003--jb0h14a", - "latestRevisionFqdn": "", "customDomainVerificationId": "7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA", - "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", - "value": "AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"}, + "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", + "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", + "40.121.19.74", "40.121.19.40", "40.121.18.62", "40.121.18.244", "40.121.19.105", + "40.121.18.246", "40.121.18.166", "40.121.18.60", "40.121.18.21", "40.121.18.44", + "40.121.18.41", "40.121.18.248", "40.121.18.82", "40.121.19.108", "40.121.19.125", + "40.121.18.46", "40.117.125.130", "40.121.18.52", "40.121.18.33", "40.121.18.238", + "40.121.19.2", "40.121.19.122", "40.121.19.19", "40.121.18.114", "40.121.18.255", + "40.121.18.164", "40.117.121.106", "40.121.18.27", "40.121.18.156", "40.121.18.117", + "40.121.18.197", "40.121.18.133", "40.121.18.112", "40.121.18.106", "40.121.19.89", + "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", + "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", + "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", + "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", + "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", + "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", + "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", + "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", + "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", + "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", + "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", + "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", + "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", + "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", + "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", + "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", + "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", + "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", + "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", + "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", + "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", + "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], + "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": + "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": + "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": + {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", "value": + "***"}, {"name": "newsecret", "value": "test", "keyVaultUrl": "", "identity": ""}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": @@ -4499,7 +3856,7 @@ interactions: "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage": "2Gi"}}], "initContainers": null, "scale": {"minReplicas": 1, "maxReplicas": 1, "cooldownPeriod": 300, "pollingInterval": 30, "rules": null}, "volumes": null, "serviceBinds": null}, "eventStreamEndpoint": - "https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", + "https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", "delegatedIdentities": []}, "identity": {"type": "None"}}' headers: Accept: @@ -4511,35 +3868,35 @@ interactions: Connection: - keep-alive Content-Length: - - '5174' + - '5097' Content-Type: - application/json ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs cache-control: - no-cache content-length: - - '4391' + - '4325' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:20 GMT + - Tue, 24 Mar 2026 05:55:55 GMT expires: - '-1' pragma: @@ -4553,11 +3910,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/461e4ff7-2af5-43ef-8da0-be837406053c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/e4627207-58ef-4427-a6c3-4b2369eb1f34 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: C036CB687AB84C00AFD9A9A927F05EB4 Ref B: SYD281080706025 Ref C: 2026-09-11T02:16:20Z' + - 'Ref A: 8FC07E1B367E4862AA2AC34321F0CE97 Ref B: BY1AA1072318062 Ref C: 2026-03-24T05:55:55Z' x-powered-by: - ASP.NET status: @@ -4577,26 +3934,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"InProgress","startTime":"2026-09-11T02:16:20.9745271"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:21 GMT + - Tue, 24 Mar 2026 05:55:56 GMT expires: - '-1' pragma: @@ -4610,11 +3967,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b763f5a9-5994-473a-a36b-bc44acf02526 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/cd0d9c91-24fa-4273-b382-463b525735fe x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BCCFC380A67A4A90878C42356F378A59 Ref B: SYD281080709029 Ref C: 2026-09-11T02:16:21Z' + - 'Ref A: C3E8134529584186A81D7578B1FA70AC Ref B: BY1AA1072318060 Ref C: 2026-03-24T05:55:56Z' x-powered-by: - ASP.NET status: @@ -4634,26 +3991,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"InProgress","startTime":"2026-09-11T02:16:20.9745271"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:24 GMT + - Tue, 24 Mar 2026 05:55:58 GMT expires: - '-1' pragma: @@ -4667,11 +4024,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/147200f5-62f8-4d25-ad4f-ca312ab6b98b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/28d356eb-f8f8-4ef3-a998-85f5b6f4e5a2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 684B8D59CB1E46AC8ABC09989DF5F355 Ref B: SYD281080708034 Ref C: 2026-09-11T02:16:25Z' + - 'Ref A: F44C52974FCF45F3AD96AD8891A2179F Ref B: SJC211051201045 Ref C: 2026-03-24T05:55:58Z' x-powered-by: - ASP.NET status: @@ -4691,26 +4048,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"InProgress","startTime":"2026-09-11T02:16:20.9745271"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:29 GMT + - Tue, 24 Mar 2026 05:56:00 GMT expires: - '-1' pragma: @@ -4724,11 +4081,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/4cdfd50b-ece0-43f2-b2fc-05fd1dd16e06 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/0de5384e-2426-4071-bb90-912cb0ce516b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82B24C3C0DC841DF9F11F600D6292160 Ref B: SYD281080707025 Ref C: 2026-09-11T02:16:28Z' + - 'Ref A: E6DADEE961EC4C3EB591E37F165F1FF7 Ref B: SJC211051205011 Ref C: 2026-03-24T05:56:00Z' x-powered-by: - ASP.NET status: @@ -4748,26 +4105,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847?api-version=2025-07-01&azureAsyncOperation=true&t=639246897810554727&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AMSkD6wllWiIBeu_vgqnGLVEtx7dDFovgFsbbomSmBEf2YNXGubQqbyruia60MswheCHUiXPGtjHlhpMJJSi88nGbsSiBRECTP1Pdbv-EyWl0tT6Dtz37cQEHXnnuKha2OKeJJLrGkNfi6MtSjo2WqGv9JS138vkE9sQMU99kRu75fi48x3dxUxzhVwp8zUrDeG0UUHOHwrG8yI5TQ36pwr89d-PooetbC-wWaR0UTxpIbMLu1TWOmCbO1mu9s66kau7ZxKs-sC2GobKlO5IlOtXXx4f423CGcBFWRdSn7Gbclcu0KPrIKQqSu5KRypsJvnZCK34Dm3QsOm2bLfdvg&h=xrLqHMlzn-w6mLYl3c9KjnbBMMOqTiHyMksi3HaJhtc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/721caa92-72fc-44d6-8303-c2b573771847","name":"721caa92-72fc-44d6-8303-c2b573771847","status":"Succeeded","startTime":"2026-09-11T02:16:20.9745271"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:32 GMT + - Tue, 24 Mar 2026 05:56:02 GMT expires: - '-1' pragma: @@ -4781,11 +4138,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bcfb3cc-bfb2-419a-899c-556bf8512504 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/e2312522-0df5-4178-9200-544aa5102489 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 42DABD6BBA9F439FA5068DAA1233FB0B Ref B: SYD281080705036 Ref C: 2026-09-11T02:16:31Z' + - 'Ref A: CBEE3B84D5194D3FA61E1D861AAB363C Ref B: BY1AA1072317029 Ref C: 2026-03-24T05:56:03Z' x-powered-by: - ASP.NET status: @@ -4805,27 +4162,141 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '277' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:56:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c9a8bf35-6262-45dd-a8cb-a3d3ea278526 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A9B8271806C0464F944A4C2B754EB8BE Ref B: SJC211051204025 Ref C: 2026-03-24T05:56:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp secret set + Connection: + - keep-alive + ParameterSetName: + - -g -n --secrets + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"Succeeded","startTime":"2026-03-24T05:55:55.897585"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '276' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:56:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9f349a5d-3577-4e46-8eeb-5d24181c5fa6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4EE0DEF8C3D6412CB4CE71E445B62105 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:56:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp secret set + Connection: + - keep-alive + ParameterSetName: + - -g -n --secrets + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4749' + - '4682' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:32 GMT + - Tue, 24 Mar 2026 05:56:08 GMT expires: - '-1' pragma: @@ -4841,7 +4312,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C9DF0D44E85942B6BC92985BE5624FC8 Ref B: SYD281080711023 Ref C: 2026-09-11T02:16:33Z' + - 'Ref A: CCC01C783D574577AA8501B30A001860 Ref B: SJC211051203053 Ref C: 2026-03-24T05:56:09Z' x-powered-by: - ASP.NET status: @@ -4861,7 +4332,7 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -4872,11 +4343,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4884,33 +4353,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4918,40 +4381,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -4959,161 +4415,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -5121,161 +4548,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:33 GMT + - Tue, 24 Mar 2026 05:56:08 GMT expires: - '-1' pragma: @@ -5289,7 +4652,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6024F8B8316F40FF9F49BDE55C4F886D Ref B: SYD281080712023 Ref C: 2026-09-11T02:16:34Z' + - 'Ref A: 6038F898746C41AA9A89E8B256D036F1 Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' status: code: 200 message: OK @@ -5307,27 +4670,27 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4749' + - '4682' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:34 GMT + - Tue, 24 Mar 2026 05:56:09 GMT expires: - '-1' pragma: @@ -5343,7 +4706,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7E53D89C88C44A6DA36F77F2938D5FB5 Ref B: SYD281080706031 Ref C: 2026-09-11T02:16:34Z' + - 'Ref A: 9C4E884AA8B4470EBE209FC2BA55208F Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' x-powered-by: - ASP.NET status: @@ -5365,18 +4728,18 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -5384,7 +4747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:35 GMT + - Tue, 24 Mar 2026 05:56:09 GMT expires: - '-1' pragma: @@ -5398,13 +4761,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/dfa0fbb5-586a-471f-aa48-bfa5ff2d7d83 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/da4138f1-e787-439b-a80f-7f43415a263b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 781E4C7B81B546198F55EFDA1E3C29E4 Ref B: SYD281080705052 Ref C: 2026-09-11T02:16:35Z' + - 'Ref A: 05F6652B679A4680B104BA81D538E845 Ref B: BY1AA1072317036 Ref C: 2026-03-24T05:56:09Z' x-powered-by: - ASP.NET status: @@ -5424,7 +4787,7 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -5435,11 +4798,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5447,33 +4808,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5481,40 +4836,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -5522,11 +4870,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5534,91 +4879,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -5635,31 +4962,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -5672,11 +4993,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -5684,161 +5003,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:37 GMT + - Tue, 24 Mar 2026 05:56:09 GMT expires: - '-1' pragma: @@ -5852,7 +5107,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 93E68BCDAB864C2D85A4081EC8E53291 Ref B: SYD281080706060 Ref C: 2026-09-11T02:16:36Z' + - 'Ref A: 3904BCFA04A74EDC9D306749BDAB337C Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:10Z' status: code: 200 message: OK @@ -5870,27 +5125,27 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4749' + - '4682' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:37 GMT + - Tue, 24 Mar 2026 05:56:10 GMT expires: - '-1' pragma: @@ -5906,7 +5161,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8A65E08518FF4D6C8BE44D444C2C0294 Ref B: SYD281080710036 Ref C: 2026-09-11T02:16:38Z' + - 'Ref A: 00C600BB9AE6418B8F08CC34161515A2 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:56:10Z' x-powered-by: - ASP.NET status: @@ -5928,18 +5183,18 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"AgxcuWbe3Ftc0OcGdlRrurXksAFwkjVzR0nlaL7OxhkwevBGv0ZdJQQJ99CIACMsfrFEqg7NAAACAZCRGTeJ"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -5947,7 +5202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:39 GMT + - Tue, 24 Mar 2026 05:56:10 GMT expires: - '-1' pragma: @@ -5961,13 +5216,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/f82c019d-d927-4936-b4b1-b8a8fbe0092d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8e2e9a85-aeba-435c-8c88-9f89f355079a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A2DE9198BFC040879239162183328ACB Ref B: SYD281080709062 Ref C: 2026-09-11T02:16:39Z' + - 'Ref A: 41BDCDD27D774B498C9CAB78E9AF9137 Ref B: BY1AA1072319042 Ref C: 2026-03-24T05:56:10Z' x-powered-by: - ASP.NET status: @@ -5976,48 +5231,47 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "West US 3", "systemData": {"createdBy": "test@example.com", "createdByType": - "User", "createdAt": "2026-09-11T02:15:37.9447156", "lastModifiedBy": "test@example.com", - "lastModifiedByType": "User", "lastModifiedAt": "2026-09-11T02:16:20.7273503"}, + "East US", "systemData": {"createdBy": "test@example.com", "createdByType": + "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:55.7796029"}, "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", - "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", - "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", - "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.125.76.124", - "20.125.74.58", "20.118.180.220", "20.125.72.245", "4.236.29.28", "4.236.28.230", - "4.236.28.126", "4.236.29.23", "4.236.28.206", "4.236.29.43", "20.14.119.70", - "135.234.107.40", "135.234.118.135", "20.14.118.252", "4.236.1.136", "134.33.25.140", - "20.14.66.96", "134.33.8.60", "20.171.203.222", "20.14.36.89", "20.150.255.247", - "135.234.57.229", "4.227.26.117", "135.234.57.184", "134.33.29.28", "134.33.13.26", - "135.234.57.185", "20.106.113.235", "20.150.255.246", "4.227.35.224", "20.171.205.76", - "20.14.32.62", "134.33.12.230", "135.234.56.142", "20.125.67.33", "20.125.69.152", - "4.227.26.140", "4.227.40.234", "135.234.57.236", "20.25.168.115", "134.33.12.156", - "20.14.0.159", "135.234.56.178", "135.234.82.154", "135.234.57.227", "135.234.85.139", - "135.234.56.143", "134.33.10.88", "4.227.42.218", "4.227.25.94", "20.106.119.7", - "20.125.70.236", "135.234.57.237", "4.227.26.24", "4.227.25.66", "135.234.56.179", - "134.33.9.225", "20.14.38.176", "4.227.43.159", "134.33.30.78", "134.33.25.23", - "20.14.112.189", "4.236.31.57", "134.33.30.121", "20.14.32.63", "20.14.36.53", - "134.33.31.137", "20.14.35.60", "20.171.203.223", "134.33.29.111", "4.227.26.72", - "20.25.168.87", "20.150.251.124", "4.227.36.172", "4.227.30.80", "134.33.29.43", - "4.227.27.148", "20.150.251.125", "4.227.28.135", "20.150.253.71", "20.118.146.180", - "20.118.148.199", "20.118.144.32", "20.118.146.221", "4.227.76.26", "4.227.76.45", - "4.227.76.46", "4.227.76.20", "4.227.76.51", "4.227.76.18", "4.227.58.38", "134.33.25.222", - "4.236.8.251", "4.236.39.174", "20.14.40.97", "4.236.61.216", "20.125.75.87", - "20.14.115.60", "4.149.49.40", "20.118.152.204", "20.14.16.172", "134.33.15.10", - "51.57.119.195", "20.14.18.201", "134.33.15.35", "20.14.117.141", "20.14.118.111", - "134.33.15.172", "20.14.18.181", "20.14.18.216", "20.14.119.56", "51.57.118.243", - "20.14.62.62", "51.57.117.40", "134.33.15.34", "135.234.86.10", "135.234.82.155", - "134.33.14.147", "20.150.155.57", "134.33.15.133", "4.227.41.173", "20.14.119.233", - "4.227.34.162", "135.234.86.4", "134.33.15.11", "134.33.14.169", "134.33.14.159", - "134.33.14.54", "20.14.68.165", "134.33.14.168", "20.14.34.15", "20.150.152.185", - "134.33.13.150", "4.227.45.34", "4.227.35.225", "20.14.18.200", "20.14.18.180", - "20.14.62.63", "20.150.155.56", "135.234.82.151", "20.14.114.132", "20.106.115.55", - "20.14.59.52", "4.227.44.57", "20.118.153.31", "20.125.94.115", "134.33.13.131", - "20.14.36.5", "20.171.210.30", "51.57.119.141", "20.125.93.57", "134.33.15.19", - "134.33.14.158", "135.234.66.26", "20.14.113.82", "134.33.14.144", "134.33.14.55", - "51.57.119.193", "20.14.119.89", "51.57.119.238", "4.236.68.178"], "latestRevisionName": - "containerapp-e2e000003--0000001", "latestReadyRevisionName": "containerapp-e2e000003--0000001", - "latestRevisionFqdn": "", "customDomainVerificationId": "7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA", - "configuration": {"secrets": [{"name": "newsecret", "value": "test"}], "activeRevisionsMode": + "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", + "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", + "40.121.19.74", "40.121.19.40", "40.121.18.62", "40.121.18.244", "40.121.19.105", + "40.121.18.246", "40.121.18.166", "40.121.18.60", "40.121.18.21", "40.121.18.44", + "40.121.18.41", "40.121.18.248", "40.121.18.82", "40.121.19.108", "40.121.19.125", + "40.121.18.46", "40.117.125.130", "40.121.18.52", "40.121.18.33", "40.121.18.238", + "40.121.19.2", "40.121.19.122", "40.121.19.19", "40.121.18.114", "40.121.18.255", + "40.121.18.164", "40.117.121.106", "40.121.18.27", "40.121.18.156", "40.121.18.117", + "40.121.18.197", "40.121.18.133", "40.121.18.112", "40.121.18.106", "40.121.19.89", + "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", + "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", + "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", + "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", + "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", + "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", + "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", + "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", + "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", + "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", + "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", + "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", + "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", + "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", + "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", + "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", + "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", + "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", + "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", + "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", + "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", + "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], + "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": + "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": + "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": + {"secrets": [{"name": "newsecret", "value": "test"}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": "containerapp000002azurecrio-containerapp000002", "identity": ""}], "dapr": null, "runtime": null, "maxInactiveRevisions": 100, @@ -6027,7 +5281,7 @@ interactions: "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage": "2Gi"}}], "initContainers": null, "scale": {"minReplicas": 1, "maxReplicas": 1, "cooldownPeriod": 300, "pollingInterval": 30, "rules": null}, "volumes": null, "serviceBinds": null}, "eventStreamEndpoint": - "https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", + "https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream", "delegatedIdentities": []}, "identity": {"type": "None"}}' headers: Accept: @@ -6039,13 +5293,13 @@ interactions: Connection: - keep-alive Content-Length: - - '4982' + - '4905' Content-Type: - application/json ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -6058,7 +5312,7 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -6066,7 +5320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:39 GMT + - Tue, 24 Mar 2026 05:56:10 GMT expires: - '-1' pragma: @@ -6078,11 +5332,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/f39de379-0389-41b3-a518-c5c90c1857f5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/61d8b356-d6f9-4b78-a688-de202ce08734 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: E83C30116E724091A64F3DCCC1099F45 Ref B: SYD281080710060 Ref C: 2026-09-11T02:16:39Z' + - 'Ref A: 816599FAEA9040529498C23C0DB57675 Ref B: SJC211051204007 Ref C: 2026-03-24T05:56:11Z' x-powered-by: - ASP.NET status: @@ -6102,7 +5356,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -6113,11 +5367,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6125,33 +5377,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6159,40 +5405,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -6200,161 +5439,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -6362,161 +5572,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:41 GMT + - Tue, 24 Mar 2026 05:56:11 GMT expires: - '-1' pragma: @@ -6530,7 +5676,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D90A200FFDC40DA84F100EBCFFD9654 Ref B: SYD281080708040 Ref C: 2026-09-11T02:16:41Z' + - 'Ref A: BFE51125256A4FF593D00AA543B49B09 Ref B: BY1AA1072316062 Ref C: 2026-03-24T05:56:11Z' status: code: 200 message: OK @@ -6548,7 +5694,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -6559,11 +5705,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6571,33 +5715,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -6605,40 +5743,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -6646,161 +5777,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -6808,161 +5910,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:41 GMT + - Tue, 24 Mar 2026 05:56:11 GMT expires: - '-1' pragma: @@ -6976,7 +6014,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6B6EBE348D0F4D398F37F46756D3E2B0 Ref B: SYD281080709040 Ref C: 2026-09-11T02:16:41Z' + - 'Ref A: 3512FA170F1C403CB2F3FB534F148289 Ref B: SJC211051204037 Ref C: 2026-03-24T05:56:11Z' status: code: 200 message: OK @@ -6994,27 +6032,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:20.7273503"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4749' + - '4682' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:42 GMT + - Tue, 24 Mar 2026 05:56:12 GMT expires: - '-1' pragma: @@ -7030,7 +6068,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EBAF4B65708140C9B43FF065823FDF7B Ref B: SYD281080712034 Ref C: 2026-09-11T02:16:42Z' + - 'Ref A: 866E0B3AA9474449B8CEB1CC89614392 Ref B: BY1AA1072318036 Ref C: 2026-03-24T05:56:12Z' x-powered-by: - ASP.NET status: @@ -7057,7 +6095,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -7068,19 +6106,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:43 GMT + - Tue, 24 Mar 2026 05:56:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationResults/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=hEiVqoFqdpsgIU8gwY6LY2dsXdvaTjYfIQLYC9LHImHNYt7afjMKr0humUZk59T-Z44HTrpZVQDlhN02OC-zRinHopWBvGr5rGVKSHh0ACRsz3EDKCJ0O-yeitJ6GRqpbGhVUFZRmNz5dlRS2BuxZcxG7Uy2_DuPs_3_Kw0CFP5eo18l2f_bRVLf5On7BjXE63Z51EUXAWC1728TDPqGdEBzJhw5m0KD5_SqTt2cuaD5LZwXPxuZnrb5HgVbtmSELywt2RJjYNaaex4-UloOD174H-8YVc48Zy1iHXf3wezfCGzJJY6PdUszm7MaVSYCuyqbOadd5xBqgDGrMyxe5w&h=5OBkTTllAZu5O1HsPXkWIU-oqYbBLRlcsuG9Ihl_qIA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=l-N9Vi3l9-TX_yOuu0QM4TcCIh9TNah7vnMU7t9wfU4plH-1xT11_xNhfceZ3-7flZBf4VtHOkqQSdbsxdwSESXpK4tKza1TT2D6KBseZI2gua_goueOdXclqPuqDpyfc1xFB94vLgBoxaburE9LsrUjIx4UHAsAx4mf0yNAE83dv32qWFTPwkoO4cM-MD5OU8bqOLWHCNmeRtLFnLFoInTRh8szc4lRcvw6jotcyiZ7yLQVjyET4jl-JlF_xOh_cY5ErFmf1lqTiGoCjlpSE4m5cVqCaZaZLUpaqqFqmH6yVhBwAN7vuBwHmo2cIbnVUEGEJ-aAL-d5oeqcmyidHg&h=pmoREmszgFD1_OGHIqPB5EsqTa58JsD3ZbxXmff0r7g pragma: - no-cache strict-transport-security: @@ -7090,11 +6128,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/ad8fa8c9-2e94-4135-82e2-a85be30da4d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/673adef0-8a4a-4ae7-90fa-459031cbda47 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: E3FD394A1AB04B10A909AC6F7B0B0D27 Ref B: SYD281080712029 Ref C: 2026-09-11T02:16:43Z' + - 'Ref A: 50349BF7FCED4677B7718B2E21CDACFF Ref B: SJC211051205025 Ref C: 2026-03-24T05:56:12Z' x-powered-by: - ASP.NET status: @@ -7114,26 +6152,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:45 GMT + - Tue, 24 Mar 2026 05:56:13 GMT expires: - '-1' pragma: @@ -7147,11 +6185,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/7c5d64ac-49b6-4226-946e-e9d5dd8243bd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f1d73c06-d328-4481-bd02-d6cb554d2ed0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B838172E225C485FB2E7086D46EC5D8E Ref B: SYD281080710031 Ref C: 2026-09-11T02:16:44Z' + - 'Ref A: C85F4A1CBAE749AB95A369BE2FE653A4 Ref B: BY1AA1072315054 Ref C: 2026-03-24T05:56:12Z' x-powered-by: - ASP.NET status: @@ -7171,26 +6209,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:48 GMT + - Tue, 24 Mar 2026 05:56:15 GMT expires: - '-1' pragma: @@ -7204,11 +6242,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/286c34c0-9af8-4fd0-b6b9-623a17ce3abd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ab77b96a-55ff-4d3d-88a7-d4ceb38b6649 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9CCF6247601F4D3D9F65A9AA1BC90DCE Ref B: SYD281080710034 Ref C: 2026-09-11T02:16:48Z' + - 'Ref A: 929C22EE3A894C58BFBEDB39B1C6F948 Ref B: SJC211051203039 Ref C: 2026-03-24T05:56:15Z' x-powered-by: - ASP.NET status: @@ -7228,26 +6266,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:51 GMT + - Tue, 24 Mar 2026 05:56:17 GMT expires: - '-1' pragma: @@ -7261,11 +6299,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/a646beb8-fe45-4d90-a04e-5ab8a1d10630 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/8c7e3e3b-9339-4236-8282-0ac9b47ab4ec x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4DB63B9D2BB441AC922E24D99B3C7A90 Ref B: SYD281080706042 Ref C: 2026-09-11T02:16:51Z' + - 'Ref A: BC38B9AD13DF436DBBD44334B085D9D4 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:18Z' x-powered-by: - ASP.NET status: @@ -7285,26 +6323,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"InProgress","startTime":"2026-09-11T02:16:44.0304181"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:54 GMT + - Tue, 24 Mar 2026 05:56:20 GMT expires: - '-1' pragma: @@ -7318,11 +6356,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e375a43e-55c5-4a3d-a40c-410f9d714cc1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/138620fe-f8a3-42d1-b4f7-cf00708613fa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BD9BFC77CC564FD69D4361D34916D682 Ref B: SYD281080710060 Ref C: 2026-09-11T02:16:54Z' + - 'Ref A: A97A32F8D13148EA9B55A5612807DDA2 Ref B: SJC211051201025 Ref C: 2026-03-24T05:56:20Z' x-powered-by: - ASP.NET status: @@ -7342,26 +6380,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162?api-version=2025-07-01&azureAsyncOperation=true&t=639246898040710867&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=Dtb7Y-b_pNik2RQO1BnLTcF3mm9zJnJXpFnWHuxR7RR5Jbq7QjwgQwP_4KZ_NtLaC_ux9i14y8M54RVDIHBOYRg6v8cgRxAsNnRLZR5Fiz60rovTVNPXO6b2BBhCts4UDEa3vctfGAtyTr0thZK22Vc4GmwIUIf5LnAyrzKLC4IE_Ld2sA6z4IaDINeoRzynQL0BZXNMDaTNi86KIJm2ulc8UxvS0ddtW1uV9LpQdeXWLS-Q8u_sGNv3t1zYfF6I_dTO-iaMdMHZErgwwUuVl03FrqwHvpudOx3bP84OJauUJRhKSjemwBycD2EuiMf7caeuD0P0UKBI7N6B9B6Slg&h=UyEFYPpOag2_h3p18sMgUtc3oEvS1SmFl9bO_uNJZuY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/57478e15-3877-457c-ac49-dbeb4b0ae162","name":"57478e15-3877-457c-ac49-dbeb4b0ae162","status":"Succeeded","startTime":"2026-09-11T02:16:44.0304181"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"Succeeded","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:58 GMT + - Tue, 24 Mar 2026 05:56:22 GMT expires: - '-1' pragma: @@ -7375,11 +6413,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ef723786-f1a9-470a-9f24-b34a712bd29d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5e65ca00-a2e0-43ce-9e54-f06f1a5be6ae x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2BBC2FCF02CE4B1EAE615E046F7A130B Ref B: SYD281080712031 Ref C: 2026-09-11T02:16:57Z' + - 'Ref A: 9276638915DC4EED942414019D1DCF38 Ref B: SJC211051203019 Ref C: 2026-03-24T05:56:23Z' x-powered-by: - ASP.NET status: @@ -7399,27 +6437,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:43.8054567"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4750' + - '4683' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:58 GMT + - Tue, 24 Mar 2026 05:56:23 GMT expires: - '-1' pragma: @@ -7435,7 +6473,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 80ABBB38652341D59B1555CF90953B6C Ref B: SYD281080712062 Ref C: 2026-09-11T02:16:59Z' + - 'Ref A: B57503384A9F4B7BB36952039BC66D51 Ref B: BY1AA1072317040 Ref C: 2026-03-24T05:56:23Z' x-powered-by: - ASP.NET status: @@ -7455,7 +6493,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -7466,11 +6504,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -7478,33 +6514,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -7512,40 +6542,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -7553,11 +6576,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -7565,91 +6585,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -7666,31 +6668,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -7703,11 +6699,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -7715,161 +6709,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:00 GMT + - Tue, 24 Mar 2026 05:56:23 GMT expires: - '-1' pragma: @@ -7883,7 +6813,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 516DAC547D3846B1BE7E354A991FFB99 Ref B: SYD281080709031 Ref C: 2026-09-11T02:17:00Z' + - 'Ref A: 5F16576371564FF4BBEB56A9598B2BCF Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:56:24Z' status: code: 200 message: OK @@ -7901,7 +6831,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -7912,11 +6842,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -7924,33 +6852,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -7958,40 +6880,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -7999,11 +6914,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -8011,91 +6923,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -8112,31 +7006,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -8149,11 +7037,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -8161,161 +7047,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:00 GMT + - Tue, 24 Mar 2026 05:56:24 GMT expires: - '-1' pragma: @@ -8329,7 +7151,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B451123F854D4F339ACD896AB24C545E Ref B: SYD281080707023 Ref C: 2026-09-11T02:17:01Z' + - 'Ref A: B7E7B0AC0D5F4273816CB34096E6AEA0 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:56:24Z' status: code: 200 message: OK @@ -8347,27 +7169,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:43.8054567"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4750' + - '4683' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:01 GMT + - Tue, 24 Mar 2026 05:56:24 GMT expires: - '-1' pragma: @@ -8383,7 +7205,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D0476F8C8EE6455EA56D2550E45AF47E Ref B: SYD281080712036 Ref C: 2026-09-11T02:17:01Z' + - 'Ref A: 052B2DF708074132B5A2338ACBC4FE65 Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:24Z' x-powered-by: - ASP.NET status: @@ -8410,7 +7232,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -8421,19 +7243,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:17:02 GMT + - Tue, 24 Mar 2026 05:56:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationResults/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&t=639246898231669609&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZDowiMmZMds-oKfdCUXMLtSlIymvkQA6AcPoIvryzpPhCml0YG45nSsMr71zHAHHKLER_q6UcDm9_OIFHEiljiY3X-oSzzUNfSm3z2ornRt1nHoe5_o08Q0ZnX7nDBP9N1xVweS0kcdUX69_xkKsycc3k7qrnqfPEbN5hoMe9tNj3O6IjxGRYczc9JyOlSP14BqRsv98zq3Srcu429l8xbgT4u8Gc_Fmem7DFfi4FAyNuC4WKI8mWJ2vbFqcRgyMbG-FA4nKgeKnhP6LB-RORouIo4uI9txNtwrDKPYhM-4Tx45FjajNUQvOt8jQw1tTeEVoR-NQ4KTgy1ZJbPrgfw&h=pNDK0S7idvZ9C68VdR4f4pKNZ2kkAcR6zw7nqzwmnbE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=nGnObUS2fzfEzjaPvemoLxSKDlfTkJCahp05Q2qA-eXnVJZwM8KuzADfuoW1Eu5e3Lb2IjScnIwMBNaBRe6RYlV-6Wx6nHWsyTXoQogkM5-Q3lWQ-Z-v9wtrTrcLjg-qY8VUKdIVHr2aYyvif-opISYgG1UF-_9QLGksw8_eqbG368ZzlVFq--uhh_u9vm-ChgXmxAxqhURZj6Ncl5Bs3KaDa4oPVCzB_te1ibwXFOetcPFm-BNsXFJRXt4jQ-FbGH5E5SyiWuWbOxpqpaixpMi_Jjck9wjSGZ6BVsHNLPAelX1Ta0B8ZoMlh8brrWtwGP-CwQ3TOd_RLy_K5L6qdQ&h=B-ERuNnmQhnJ7wz89GCBR3A7pv7KjBBYxn2GzWq24Wg pragma: - no-cache strict-transport-security: @@ -8443,11 +7265,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/eastus2/c92cf691-c6ce-46f2-b067-87c4a8af7a27 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/644b3668-11d5-4fc1-945f-e2d788b6b71e x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 13B13728AE254D1D83C5B0F6C6C0595A Ref B: SYD281080707054 Ref C: 2026-09-11T02:17:02Z' + - 'Ref A: F124A9D6074E4E8E8B4B390D15943D5E Ref B: BY1AA1072315025 Ref C: 2026-03-24T05:56:24Z' x-powered-by: - ASP.NET status: @@ -8467,26 +7289,83 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:56:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1d741503-7667-4e92-a836-5c35e0ee1a6d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C23740FAE9194EB8B8633D0624232D30 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:56:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"InProgress","startTime":"2026-09-11T02:17:03.1169231"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:04 GMT + - Tue, 24 Mar 2026 05:56:28 GMT expires: - '-1' pragma: @@ -8500,11 +7379,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/89071e4d-f9a8-44e3-8129-66e8664304d8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/3f7dc4ea-9be6-41e5-9542-3b2aded364d8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 09A0BC163CF949B3AE29A385E30CA1B8 Ref B: SYD281080705040 Ref C: 2026-09-11T02:17:04Z' + - 'Ref A: EAE9CD227D3B46EE93FBB094BD519488 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:28Z' x-powered-by: - ASP.NET status: @@ -8524,26 +7403,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"InProgress","startTime":"2026-09-11T02:17:03.1169231"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:07 GMT + - Tue, 24 Mar 2026 05:56:31 GMT expires: - '-1' pragma: @@ -8557,11 +7436,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/2ddf7188-62a3-4b7c-b241-b00c3ace0d6a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/e6428943-ab1b-4af5-8286-1b1601b4b46f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 09C1DD831E774BC6ADD398A43C32338F Ref B: SYD281080712029 Ref C: 2026-09-11T02:17:07Z' + - 'Ref A: A51578B47C7F43E18CD66F04A94E55D7 Ref B: SJC211051201047 Ref C: 2026-03-24T05:56:31Z' x-powered-by: - ASP.NET status: @@ -8581,26 +7460,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"InProgress","startTime":"2026-09-11T02:17:03.1169231"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:10 GMT + - Tue, 24 Mar 2026 05:56:33 GMT expires: - '-1' pragma: @@ -8614,11 +7493,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/363686d6-096c-4f89-9729-77719765d9fa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/58824e6e-f0bf-4615-9342-e424d737ef50 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3029520CDFDE48EB9D38D988155CAFB2 Ref B: SYD281080708036 Ref C: 2026-09-11T02:17:10Z' + - 'Ref A: F025D55194CE4297AB0881E8DBB14934 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:56:34Z' x-powered-by: - ASP.NET status: @@ -8638,18 +7517,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9?api-version=2025-07-01&azureAsyncOperation=true&t=639246898231513454&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=LkA0_ZwcgJ3g5OuR3aP1W00AChXcQGg_3LPNlJbiyQfCwyQYLyDD8Ff85uY_5l1WLYibwGLTFGLpmR1ZNMJpvZ1t8JG5LUwc65jYyUbjt4DfORf0oj9K6pbOVyFpU8pROXw39tQ0Hzr7u-Gy5t9rc8Y6qdwDeAE7z0Sc5S2Ivr0h3N4gBRsaOjnuatjlegl376gX8MYnJYURjHpY2OOuIQuJrqKQG8KaP6wZUzCLHBNG7jkhJ4Kt2RXW9y3BEB7EzXkbbc8v-v8euvOy1enCZ_bQFnnZfBbBTeyZvzHyFsBC-q6UzBdIXmV1uReXtyvhhJCoHHZdw5QNixe6TaFJmQ&h=rSksQddDkWt6R5GJZ8ZjsJOQ0-iMB22khlAruu68pFs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/91480983-8ad5-4f09-a90c-8c10c24abbd9","name":"91480983-8ad5-4f09-a90c-8c10c24abbd9","status":"Succeeded","startTime":"2026-09-11T02:17:03.1169231"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -8657,7 +7536,64 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:13 GMT + - Tue, 24 Mar 2026 05:56:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/e7c8a6fe-b0b0-4f62-9cf3-681088abba32 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4C649878B57F45A5B51C8C1B88BAC0FF Ref B: BY1AA1072320025 Ref C: 2026-03-24T05:56:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"Succeeded","startTime":"2026-03-24T05:56:25.8970205"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '277' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:56:38 GMT expires: - '-1' pragma: @@ -8671,11 +7607,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/30195de4-f2ee-4752-8c79-7900d96aef06 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/470adce1-4b33-445f-a6e6-47ee0472fb82 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 12ACA52DC6FD44288EB39B67BE2E193B Ref B: SYD281080710060 Ref C: 2026-09-11T02:17:14Z' + - 'Ref A: D46AAE94DAF04CCBBD9BDDFCDDE3B288 Ref B: BY1AA1072315062 Ref C: 2026-03-24T05:56:38Z' x-powered-by: - ASP.NET status: @@ -8695,27 +7631,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:37.9447156","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:17:02.916963"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:25.6259606"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4703' + - '4637' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:15 GMT + - Tue, 24 Mar 2026 05:56:39 GMT expires: - '-1' pragma: @@ -8731,7 +7667,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FA0FC7897E8346F59D9270FDD96DDD48 Ref B: SYD281080709042 Ref C: 2026-09-11T02:17:14Z' + - 'Ref A: 73A95C8B6DC442C1B32BF6BCBD52D953 Ref B: SJC211051205045 Ref C: 2026-03-24T05:56:39Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml index 171708b5e4d..5994906ab1c 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,11 +24,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -36,33 +34,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -70,31 +62,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -102,8 +88,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -111,11 +96,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -123,91 +105,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -224,31 +188,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -261,11 +219,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -273,161 +229,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:32 GMT + - Thu, 09 Apr 2026 18:46:34 GMT expires: - '-1' pragma: @@ -441,7 +333,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7ADF8DF67CDE418D9AB90E1ACD5391A4 Ref B: SYD281080707036 Ref C: 2026-09-11T02:13:32Z' + - 'Ref A: 81DF483E783C4D98933C5543A57F49B7 Ref B: BN1AA2051015039 Ref C: 2026-04-09T18:46:35Z' status: code: 200 message: OK @@ -459,27 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:33 GMT + - Thu, 09 Apr 2026 18:46:36 GMT expires: - '-1' pragma: @@ -495,14 +387,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A415DEB81646406D8F938EACD295BE60 Ref B: SYD281080711031 Ref C: 2026-09-11T02:13:33Z' + - 'Ref A: B3844DBEEF01430999E2AF077AAD7CF2 Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:46:37Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -514,29 +406,29 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '90' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1627' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:45 GMT + - Thu, 09 Apr 2026 18:46:49 GMT expires: - '-1' pragma: @@ -548,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6a29ccaf-e6c6-4f8c-805d-a43082611d96 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/98d11168-e94f-45d5-a6bb-a63e6b018f0b x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: C61AF8E346D349F1B93F35B851C1DBB9 Ref B: SYD281080708029 Ref C: 2026-09-11T02:13:34Z' + - 'Ref A: 2C4F85ADDD2A4A8989516354E85B068A Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:46:40Z' status: code: 200 message: OK @@ -572,21 +464,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' headers: cache-control: - no-cache content-length: - - '4432' + - '6965' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:46 GMT + - Thu, 09 Apr 2026 18:46:51 GMT expires: - '-1' pragma: @@ -600,7 +493,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BC20DF1BFB734BF98933887741DBFA33 Ref B: SYD281080707054 Ref C: 2026-09-11T02:13:46Z' + - 'Ref A: 5D0DD95D11064C2183A55E115718AB53 Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:46:51Z' status: code: 200 message: OK @@ -618,23 +511,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1627' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:47 GMT + - Thu, 09 Apr 2026 18:46:54 GMT expires: - '-1' pragma: @@ -648,7 +541,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 153A7FDF36364E0E9905F3F89B0C7A89 Ref B: SYD281080706025 Ref C: 2026-09-11T02:13:47Z' + - 'Ref A: 80A4186B485446ADB2F5D43C48DF40DE Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:46:53Z' status: code: 200 message: OK @@ -666,21 +559,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview response: body: - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acrbdm2ci64i3lpdam37v6qk.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acrouvbstr6isw5ks3lbrkhd.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' headers: cache-control: - no-cache content-length: - - '15555' + - '20786' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:49 GMT + - Thu, 09 Apr 2026 18:46:56 GMT expires: - '-1' pragma: @@ -696,10 +590,11 @@ interactions: - '' - '' - '' + - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E60B16A097F54834B1D21DC7E6F72F0C Ref B: SYD281080709062 Ref C: 2026-09-11T02:13:48Z' + - 'Ref A: C1FE7AD308FC4EB7A7D4C5BFE020CBCD Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:46:56Z' status: code: 200 message: OK @@ -722,9 +617,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-03-01-preview response: body: string: '' @@ -734,18 +629,17 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:13:50 GMT + - Thu, 09 Apr 2026 18:46:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896309622540&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=CIUiUcnUb1f2JgM4OO8fWZOid1afG7mgDPUDPZbTanNoUJ2NMQVpZ7YPdKV3lYzXPm6e8ts6HadOvK0dk6pqPPlofkqfCszLxcDXwNxNLe49ZX5fMQk0bnlojRfs7-JILNDmEX-Uj_78PiY8tsk7xAyKCFM1fMjBwQHVJQa4eiXgE27rQxXAZqtKFNxO2pk0z8_3HddruzCQKrgzFgiraJOC02GE0yyy67cvseRam_c-tRKZ6VhujDk22OEfXqa7jlyOiKgW3Ea1PzfJmDnJDN7SwdLuxsixgs0j06HYYVuGABi2NYiiCRceI_KKllsCe9pOhVdMnXVgAlhQkFUa5g&h=0QUrF4FKVYHIe46tQayZ6uu7L6psmUxdIfARR8-Iwig + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs pragma: - no-cache strict-transport-security: @@ -755,63 +649,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/0ffe5883-4144-4c5a-8f7d-c22edaa5218a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2a36d3ee-e3fe-4e51-ba97-733be268c807 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6CDA41C0CDF94808AD8F3848095EF186 Ref B: SYD281080710040 Ref C: 2026-09-11T02:13:50Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896309622540&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=CIUiUcnUb1f2JgM4OO8fWZOid1afG7mgDPUDPZbTanNoUJ2NMQVpZ7YPdKV3lYzXPm6e8ts6HadOvK0dk6pqPPlofkqfCszLxcDXwNxNLe49ZX5fMQk0bnlojRfs7-JILNDmEX-Uj_78PiY8tsk7xAyKCFM1fMjBwQHVJQa4eiXgE27rQxXAZqtKFNxO2pk0z8_3HddruzCQKrgzFgiraJOC02GE0yyy67cvseRam_c-tRKZ6VhujDk22OEfXqa7jlyOiKgW3Ea1PzfJmDnJDN7SwdLuxsixgs0j06HYYVuGABi2NYiiCRceI_KKllsCe9pOhVdMnXVgAlhQkFUa5g&h=0QUrF4FKVYHIe46tQayZ6uu7L6psmUxdIfARR8-Iwig - response: - body: - string: '{"status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:13:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896319841039&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=UyeTkHMIWTFRFY4tavvIpX3OFvY_GJAmnAFKQ3l6WgLArqjJwRkcuP-KbzYJJszMmhmiIRkm0mb0U44-Y-_MQ4bkf5VmNkRH0fBjQZbkMvTmcb7QBfJYV9GyZzXQ42uBG28gInlwjAlwoYFe8txD8qGlHD2z6dV-G9_QByD_itTq9-nL1k9Ne3fqqIN4rgHzmN0ABKLCQnZnkW6Yo0YDiBqU0BupJvU24n7nrcngMSbK8k6L2pR66PTh93DReAje_3F0VoWnp2YBRzKRznhF-6ZEGYfWX-UW0ecWYQCwl6QMQ4koAWXVkfGuuw13BnLZ5PYpw2OZYm4t1TD9oDR4Tw&h=v4J7t2pdnYh2VcDtyPSuFznZnGXCX4wAR6tKNzNPyhk - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/abb98c65-f850-4758-8986-fdad54988549 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: AD57B792C36E4829B87E15851C517DF6 Ref B: SYD281080705042 Ref C: 2026-09-11T02:13:51Z' + - 'Ref A: 65836825BBD84F259BA9D087A4696890 Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:46:59Z' status: code: 202 message: Accepted @@ -829,9 +673,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6ba814b4-ad86-11f1-9a62-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896319841039&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=UyeTkHMIWTFRFY4tavvIpX3OFvY_GJAmnAFKQ3l6WgLArqjJwRkcuP-KbzYJJszMmhmiIRkm0mb0U44-Y-_MQ4bkf5VmNkRH0fBjQZbkMvTmcb7QBfJYV9GyZzXQ42uBG28gInlwjAlwoYFe8txD8qGlHD2z6dV-G9_QByD_itTq9-nL1k9Ne3fqqIN4rgHzmN0ABKLCQnZnkW6Yo0YDiBqU0BupJvU24n7nrcngMSbK8k6L2pR66PTh93DReAje_3F0VoWnp2YBRzKRznhF-6ZEGYfWX-UW0ecWYQCwl6QMQ4koAWXVkfGuuw13BnLZ5PYpw2OZYm4t1TD9oDR4Tw&h=v4J7t2pdnYh2VcDtyPSuFznZnGXCX4wAR6tKNzNPyhk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs response: body: string: '{"status":"Succeeded"}' @@ -843,7 +687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:03 GMT + - Thu, 09 Apr 2026 18:47:02 GMT expires: - '-1' pragma: @@ -855,11 +699,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/db8b4756-82c9-46ea-93c1-124ec05b2268 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1c4d9862-aa0b-4ddc-89b7-9440dc9968c8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 51F27AA32CE44412BC41EC88583EBC35 Ref B: SYD281080709054 Ref C: 2026-09-11T02:14:02Z' + - 'Ref A: 5C210DB918394B91973684B8EA718635 Ref B: BN1AA2051013025 Ref C: 2026-04-09T18:47:02Z' status: code: 200 message: OK @@ -877,21 +721,22 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' headers: cache-control: - no-cache content-length: - - '5033' + - '6965' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:04 GMT + - Thu, 09 Apr 2026 18:47:04 GMT expires: - '-1' pragma: @@ -905,7 +750,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E58C036CA8794A7694183B779F1C7956 Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:03Z' + - 'Ref A: 969EE93254A04D409B992E7D64DBE1F6 Ref B: BN1AA2051014019 Ref C: 2026-04-09T18:47:05Z' status: code: 200 message: OK @@ -923,23 +768,23 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1627' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:06 GMT + - Thu, 09 Apr 2026 18:47:07 GMT expires: - '-1' pragma: @@ -953,7 +798,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 20DC60F8754F4667BB9E70003F29A5E1 Ref B: SYD281080709042 Ref C: 2026-09-11T02:14:04Z' + - 'Ref A: 96153C972B9A4EE6AA1240D3C76A7F2E Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:47:06Z' status: code: 200 message: OK @@ -973,15 +818,15 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000002","passwords":[{"name":"password","value":"CH5xJ62L2oWH4orARwLtSZ2hn3ULrHHrSDLlfqV10vyDgTffDVAHJQQJ99CIACMsfrFEqg7NAAACAZCRzhLg"},{"name":"password2","value":"CtqH1Z0pA1AjiHv2aGf4mEq7ORTXkFtit40Y3leXgqQraq9FrzGLJQQJ99CIACMsfrFEqg7NAAACAZCRC7ft"}]}' + string: '{"username":"acr000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -989,7 +834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:06 GMT + - Thu, 09 Apr 2026 18:47:09 GMT expires: - '-1' pragma: @@ -1001,13 +846,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/583be1e0-7aa1-4639-8183-e27834d23bfb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/d003e1a0-c5c1-4722-857f-15ca515817b0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 5967C7DB27254F5E9FE4B483D1FBF6DE Ref B: SYD281080708034 Ref C: 2026-09-11T02:14:06Z' + - 'Ref A: 1D7D7F7E39F4420B958C04A12856D9FF Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:47:09Z' status: code: 200 message: OK @@ -1027,7 +872,7 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1038,11 +883,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1050,33 +893,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1084,31 +921,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1116,8 +947,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1125,11 +955,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1137,91 +964,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1238,31 +1047,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1275,11 +1078,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1287,161 +1088,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:07 GMT + - Thu, 09 Apr 2026 18:47:11 GMT expires: - '-1' pragma: @@ -1455,7 +1192,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A6775722080E4683BF6870D68773A5C1 Ref B: SYD281080705029 Ref C: 2026-09-11T02:14:08Z' + - 'Ref A: 8717E93CE85241DD8621CED1BF48EFBB Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:11Z' status: code: 200 message: OK @@ -1475,27 +1212,27 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:08 GMT + - Thu, 09 Apr 2026 18:47:13 GMT expires: - '-1' pragma: @@ -1511,7 +1248,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 92999F809DB841EFAA7565B7CB6C0D6A Ref B: SYD281080707060 Ref C: 2026-09-11T02:14:08Z' + - 'Ref A: EA334DE36513489BB40E1955127D65C6 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:47:13Z' x-powered-by: - ASP.NET status: @@ -1533,7 +1270,7 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1544,11 +1281,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1556,33 +1291,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1590,31 +1319,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1622,8 +1345,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1631,11 +1353,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1643,91 +1362,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1744,31 +1445,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1781,11 +1476,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1793,161 +1486,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:09 GMT + - Thu, 09 Apr 2026 18:47:14 GMT expires: - '-1' pragma: @@ -1961,15 +1590,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C2F3162C191546E088DB6821AD668BE6 Ref B: SYD281080705034 Ref C: 2026-09-11T02:14:09Z' + - 'Ref A: A33AF7EBE16C435D8B369243CC412549 Ref B: BN1AA2051012037 Ref C: 2026-04-09T18:47:15Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000002azurecrio-443-acr000002", "value": - "CH5xJ62L2oWH4orARwLtSZ2hn3ULrHHrSDLlfqV10vyDgTffDVAHJQQJ99CIACMsfrFEqg7NAAACAZCRzhLg"}], + "***"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1989,7 +1618,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1117' + - '1113' Content-Type: - application/json ParameterSetName: @@ -1997,30 +1626,30 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:10.8238256Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:10.8238256Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg cache-control: - no-cache content-length: - - '4071' + - '6762' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:12 GMT + - Thu, 09 Apr 2026 18:47:18 GMT expires: - '-1' pragma: @@ -2034,11 +1663,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/f3113268-6f1b-4e57-86fb-df47fdd820db + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/f9b94549-f461-470a-8227-dd57ca7699da x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 01232BC1B9034B1588810C494B75ED96 Ref B: SYD281080708060 Ref C: 2026-09-11T02:14:10Z' + - 'Ref A: 093094C3F4DE41009F580DD914A369BF Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:16Z' x-powered-by: - ASP.NET status: @@ -2060,85 +1689,26 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe","name":"7c4684aa-34b2-4ae8-b184-02337ebfdafe","status":"InProgress","startTime":"2026-09-11T02:14:11.2061875"}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, - 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '283' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:14:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/def1485d-da85-4905-afba-2c9553481cb8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: F3BB9D9133A14BA4A47BBD91F4A1420F Ref B: SYD281080706040 Ref C: 2026-09-11T02:14:14Z' - 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: - - -g -n --image --environment --registry-server --registry-username --registry-password - --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count - --cron-expression - User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe","name":"7c4684aa-34b2-4ae8-b184-02337ebfdafe","status":"InProgress","startTime":"2026-09-11T02:14:11.2061875"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"InProgress","startTime":"2026-04-09T18:47:17.6055813"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '283' + - '282' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:17 GMT + - Thu, 09 Apr 2026 18:47:20 GMT expires: - '-1' pragma: @@ -2152,11 +1722,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/69ed78d4-3882-454e-afe6-cefc50d95ae0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d5d49e6c-c6e9-498b-b9c3-a63ec8315ba1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7E8D2491A97749A5AB4CF5B0F51891CB Ref B: SYD281080705062 Ref C: 2026-09-11T02:14:17Z' + - 'Ref A: 9AE9F17A837D4A7593DAF12327BDDE84 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:47:20Z' x-powered-by: - ASP.NET status: @@ -2178,26 +1748,26 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe?api-version=2025-07-01&azureAsyncOperation=true&t=639246896535738198&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=f2arutseLUOZCrFLSchuXEF2oKXVzdpB8MkU-mK5zE5xKp_lzXLf0DN6JqKkdqF1N1zpQhzEW_XMtpi7ZVo14gDiuIeGiSQMd534iJlm092lDcXAEnHAHOs4f93hJzUDg9sEGfpdubMHBVYZpCsUgYAH_38GeQCwamEXcgCz3pUjUXtHZNJPN_TJqXqjn3-vFRqQkYf-aXae2Kx2iZ96qpgA1x-a1GZaaskTLFCM7dgGDoSyt9lTjngzRL07IPwnOBMwpP7fz7wljVV0UVXjHDhLZ5diCcGw47jvYX5YaK6y2HXikwM_E1680TvSgqmhIZRnu3DGKtzDsXcy0ISEKw&h=mbR_llAlzDROkh1dYA_eNr8cXn6wrtsFs6LOUo3fZy8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/7c4684aa-34b2-4ae8-b184-02337ebfdafe","name":"7c4684aa-34b2-4ae8-b184-02337ebfdafe","status":"Succeeded","startTime":"2026-09-11T02:14:11.2061875"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"Succeeded","startTime":"2026-04-09T18:47:17.6055813"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:20 GMT + - Thu, 09 Apr 2026 18:47:23 GMT expires: - '-1' pragma: @@ -2211,11 +1781,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/d81945e0-d420-42bb-a910-77a3472a0811 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/88c578ab-d53d-490e-8b5a-1d32ef22dd93 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2EB0E248F5F142AD9C2E2AAC0AADD7BF Ref B: SYD281080705062 Ref C: 2026-09-11T02:14:20Z' + - 'Ref A: 7335F136400F487CA6BADB27B36308E4 Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:24Z' x-powered-by: - ASP.NET status: @@ -2237,28 +1807,28 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:10.8238256","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:10.8238256"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '4068' + - '6759' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:21 GMT + - Thu, 09 Apr 2026 18:47:26 GMT expires: - '-1' pragma: @@ -2274,7 +1844,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 72FA3F56B324496C9313FFA1B8084190 Ref B: SYD281080711025 Ref C: 2026-09-11T02:14:21Z' + - 'Ref A: FFB7195E58DE4B80B3CA6B6CF47D2401 Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:25Z' x-powered-by: - ASP.NET status: @@ -2294,7 +1864,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2305,11 +1875,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2317,33 +1885,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2351,31 +1913,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2383,8 +1939,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2392,11 +1947,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2404,91 +1956,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2505,31 +2039,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2542,11 +2070,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2554,161 +2080,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:22 GMT + - Thu, 09 Apr 2026 18:47:27 GMT expires: - '-1' pragma: @@ -2722,7 +2184,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 158BAB28FDD345A49649F456D4EE8B1F Ref B: SYD281080707023 Ref C: 2026-09-11T02:14:22Z' + - 'Ref A: 966F1477B51A42D4B7DDEE67DB90ADCF Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:47:28Z' status: code: 200 message: OK @@ -2740,28 +2202,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:10.8238256","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:10.8238256"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '4068' + - '6759' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:23 GMT + - Thu, 09 Apr 2026 18:47:29 GMT expires: - '-1' pragma: @@ -2777,7 +2239,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7FA3D53F51DA49F3901C9A70F94BD067 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:23Z' + - 'Ref A: 16CBA3CFCE244C7492EB31B6B5F5D4B9 Ref B: BN1AA2051014031 Ref C: 2026-04-09T18:47:29Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml index 47fc3c735b7..4ca8e0e1aaa 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,11 +24,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -36,33 +34,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -70,31 +62,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -102,8 +88,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -111,11 +96,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -123,91 +105,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -224,31 +188,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -261,11 +219,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -273,161 +229,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:30 GMT + - Thu, 09 Apr 2026 18:39:21 GMT expires: - '-1' pragma: @@ -441,7 +333,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C72BAD6198F14731B0502E323A72D970 Ref B: SYD281080705040 Ref C: 2026-09-11T02:14:30Z' + - 'Ref A: D79E4ABE17ED479DA18AB68266456F42 Ref B: BN1AA2051014035 Ref C: 2026-04-09T18:39:21Z' status: code: 200 message: OK @@ -459,27 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:30 GMT + - Thu, 09 Apr 2026 18:39:21 GMT expires: - '-1' pragma: @@ -495,14 +387,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A033274CD029456D8F95E26DAD9F160D Ref B: SYD281080707054 Ref C: 2026-09-11T02:14:30Z' + - 'Ref A: 100F81752CDD43F783029C74CAC1807E Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:22Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -514,29 +406,29 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '90' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1592' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:42 GMT + - Thu, 09 Apr 2026 18:39:32 GMT expires: - '-1' pragma: @@ -548,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/bad37c7c-8a57-4e52-802d-a152286671e9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/e7859cc0-887c-46bc-8d6b-42554cb1b658 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 10DE184897A54C71BD8C6CEA198EB0B5 Ref B: SYD281080709034 Ref C: 2026-09-11T02:14:31Z' + - 'Ref A: ABB76CC525DC4ECC89A1B310523E84AB Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:39:24Z' status: code: 200 message: OK @@ -572,21 +464,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' headers: cache-control: - no-cache content-length: - - '6235' + - '6363' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:43 GMT + - Thu, 09 Apr 2026 18:39:33 GMT expires: - '-1' pragma: @@ -600,7 +493,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 19340854264644C3BD69A4B7CB07BC6C Ref B: SYD281080707054 Ref C: 2026-09-11T02:14:43Z' + - 'Ref A: 52E5459154AD422EB7322ADCA46053CC Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:34Z' status: code: 200 message: OK @@ -618,23 +511,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1592' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:45 GMT + - Thu, 09 Apr 2026 18:39:36 GMT expires: - '-1' pragma: @@ -648,7 +541,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4782FA0F0523418D9D434902D8B49256 Ref B: SYD281080705040 Ref C: 2026-09-11T02:14:44Z' + - 'Ref A: 055CD56627984DFE806E3C4F204F0F91 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:39:35Z' status: code: 200 message: OK @@ -666,21 +559,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview response: body: - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acrbdm2ci64i3lpdam37v6qk.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp3lfto542omn5.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' headers: cache-control: - no-cache content-length: - - '17289' + - '19083' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:46 GMT + - Thu, 09 Apr 2026 18:39:38 GMT expires: - '-1' pragma: @@ -696,10 +590,11 @@ interactions: - '' - '' - '' + - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7E60A617CBA44E919B9475C7639BB052 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:46Z' + - 'Ref A: A0C1E174972742D7B0110AD636B9F7A0 Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:38Z' status: code: 200 message: OK @@ -722,9 +617,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview response: body: string: '' @@ -734,18 +629,17 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:14:49 GMT + - Thu, 09 Apr 2026 18:39:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896894130178&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JI1pZMZH4F4aoOWRPT82iJl8yf0J5hHpKQGgW3IG1iOqpu3YLl05kkGY4xm9w-fxJFR29so2cLvk3Y62XftzRSTXbWpJ00qOPrtuHmhNT7O41KDIe11Jr0KG0oEIhCwXIzWlW9-9SpwWHZciSafuo6svbH8a6e5pWfbV2cVHWJlwe3h8oH9jYxuA7HFTt8DTP61u94_Nd4BKDr8IFuhWYyyIYeiLcpZ18G-GtQ6qjE238dWYgtJ3_hnspUK9K8zRUJLUdHMCM0Uuo7NLz4Kex3uyubylXofVYUxUTUjkkFp2a2QO2o5np0WrwPyy2c4EIwzzIODpC9z2TQOK9mIX-w&h=nPumL1ZP9tFrVRyX_Ep4dI6xFaAyuIJKDwTZTGZH2-E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs pragma: - no-cache strict-transport-security: @@ -755,13 +649,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/74ab3a5f-aa88-4ec0-a3a8-7646dffda695 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d6ec942e-9589-4198-84e7-eb5d4c31a39c x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3D01BE8DE5A24AE99BE24B33CEF38892 Ref B: SYD281080709031 Ref C: 2026-09-11T02:14:48Z' + - 'Ref A: 208C27AFA6854D4BA96E4E22B660581C Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:39Z' status: code: 202 message: Accepted @@ -779,9 +673,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896894130178&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JI1pZMZH4F4aoOWRPT82iJl8yf0J5hHpKQGgW3IG1iOqpu3YLl05kkGY4xm9w-fxJFR29so2cLvk3Y62XftzRSTXbWpJ00qOPrtuHmhNT7O41KDIe11Jr0KG0oEIhCwXIzWlW9-9SpwWHZciSafuo6svbH8a6e5pWfbV2cVHWJlwe3h8oH9jYxuA7HFTt8DTP61u94_Nd4BKDr8IFuhWYyyIYeiLcpZ18G-GtQ6qjE238dWYgtJ3_hnspUK9K8zRUJLUdHMCM0Uuo7NLz4Kex3uyubylXofVYUxUTUjkkFp2a2QO2o5np0WrwPyy2c4EIwzzIODpC9z2TQOK9mIX-w&h=nPumL1ZP9tFrVRyX_Ep4dI6xFaAyuIJKDwTZTGZH2-E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -793,11 +687,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:49 GMT + - Thu, 09 Apr 2026 18:39:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896907767927&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=EDjT9zYREL0wsBbsFL1quzwtnPOQ19-X2s8QkTwTgf8zfG_ljDh5WcsFcJR4TbmQXONLIcApfwhrIph5pDW8-SizRkyjlVsWrflvXjuct9RPMbN_MUmTEh2e4BAoZpluzQmILwefriMHH0yAy7d4XH8xheCkRv6FDCDzLNK__rASSYah_ryjYKtgG34DwX5_4OBbEJSL-bjNJYHgFsQPqWh6Hf12ZPe6jkHtlIuDuLmRlllq_yymZkRtnyOdk8evirJhoDei_bXXntICFu0pLsSCIivY9V9v3KlhpPoQzw2KwjYk0Ia0tWeGvJW3FwpjV6wG5h0FFJ3eHxf5zUxHRw&h=lXgsjYOYEGseBqv0trt1PTHMoFZalZXiqQBTTCS30ts + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w pragma: - no-cache strict-transport-security: @@ -807,11 +701,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/18ee15d9-e3c3-4c73-80f0-0cebfc3768c8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/55671bb4-e502-4109-b3a4-2d9d8a15f4a8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 467DED2BEB2044C88991079A2B3B9B9F Ref B: SYD281080710060 Ref C: 2026-09-11T02:14:50Z' + - 'Ref A: FE9C3EF657EE4579AF7E2BCBFF379AA3 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:39:41Z' status: code: 202 message: Accepted @@ -829,9 +723,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-8d7acfb8-ad86-11f1-a40f-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896907767927&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=EDjT9zYREL0wsBbsFL1quzwtnPOQ19-X2s8QkTwTgf8zfG_ljDh5WcsFcJR4TbmQXONLIcApfwhrIph5pDW8-SizRkyjlVsWrflvXjuct9RPMbN_MUmTEh2e4BAoZpluzQmILwefriMHH0yAy7d4XH8xheCkRv6FDCDzLNK__rASSYah_ryjYKtgG34DwX5_4OBbEJSL-bjNJYHgFsQPqWh6Hf12ZPe6jkHtlIuDuLmRlllq_yymZkRtnyOdk8evirJhoDei_bXXntICFu0pLsSCIivY9V9v3KlhpPoQzw2KwjYk0Ia0tWeGvJW3FwpjV6wG5h0FFJ3eHxf5zUxHRw&h=lXgsjYOYEGseBqv0trt1PTHMoFZalZXiqQBTTCS30ts + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w response: body: string: '{"status":"Succeeded"}' @@ -843,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:01 GMT + - Thu, 09 Apr 2026 18:39:52 GMT expires: - '-1' pragma: @@ -855,11 +749,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/1e81ddd8-afe0-4ee3-9ef7-fff1ea08ac06 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/bd6cccd9-9a0a-483d-9b5d-e1112d3434d6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D17C729B87244E1093F2B2F2F724383F Ref B: SYD281080707054 Ref C: 2026-09-11T02:15:01Z' + - 'Ref A: 71803075B0394E0696867BAEF523461C Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:52Z' status: code: 200 message: OK @@ -878,7 +772,7 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -889,11 +783,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -901,33 +793,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -935,31 +821,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -967,8 +847,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -976,11 +855,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -988,91 +864,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1089,31 +947,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1126,11 +978,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1138,161 +988,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:03 GMT + - Thu, 09 Apr 2026 18:39:53 GMT expires: - '-1' pragma: @@ -1306,7 +1092,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4ED5AF30AD0A4D4E972BD1D91B37B79A Ref B: SYD281080710034 Ref C: 2026-09-11T02:15:03Z' + - 'Ref A: 86D2A59EF3D04A31B46BF4B61E5D4F11 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:39:54Z' status: code: 200 message: OK @@ -1325,27 +1111,27 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:03 GMT + - Thu, 09 Apr 2026 18:39:54 GMT expires: - '-1' pragma: @@ -1361,7 +1147,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E87A218F89964B0981E69C2204B73836 Ref B: SYD281080705034 Ref C: 2026-09-11T02:15:04Z' + - 'Ref A: 4C59E4AF517E4ACEBFBE7C2896A307BB Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:55Z' x-powered-by: - ASP.NET status: @@ -1382,7 +1168,7 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1393,11 +1179,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1405,33 +1189,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1439,31 +1217,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1471,8 +1243,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1480,11 +1251,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1492,91 +1260,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1593,31 +1343,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1630,11 +1374,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1642,161 +1384,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:04 GMT + - Thu, 09 Apr 2026 18:39:56 GMT expires: - '-1' pragma: @@ -1810,7 +1488,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 583B4072CD3745C5B18672230C8624D0 Ref B: SYD281080709052 Ref C: 2026-09-11T02:15:05Z' + - 'Ref A: AA230AA512F94FCF833078E7FF1AD076 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:39:56Z' status: code: 200 message: OK @@ -1829,21 +1507,22 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' headers: cache-control: - no-cache content-length: - - '6232' + - '6363' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:05 GMT + - Thu, 09 Apr 2026 18:39:57 GMT expires: - '-1' pragma: @@ -1857,7 +1536,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3FAEAAE57075467AB28BCF87C7CB464A Ref B: SYD281080706025 Ref C: 2026-09-11T02:15:05Z' + - 'Ref A: 9AC1E5DF27A84B179AEEA970BD938B7C Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:57Z' status: code: 200 message: OK @@ -1876,23 +1555,23 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1592' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:08 GMT + - Thu, 09 Apr 2026 18:39:59 GMT expires: - '-1' pragma: @@ -1906,7 +1585,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 385A24E415FF4B46A53299FBA2E16C8B Ref B: SYD281080706023 Ref C: 2026-09-11T02:15:06Z' + - 'Ref A: 8E88063BCB744109834A12B9738E1D0B Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:59Z' status: code: 200 message: OK @@ -1927,15 +1606,15 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"4Zgzkj4Ky47yI4Zo1g8EswgGGUkrEYGZ95OC3LZJ25G97CIgxMg1JQQJ99CIACMsfrFEqg7NAAACAZCR7Wlo"},{"name":"password2","value":"DRyYZUya17bbIMyfkRi1IIpy75V3Q9UYvnCX01Q9woW9ZXb5SvoJJQQJ99CIACMsfrFEqg7NAAACAZCRbKk5"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -1943,7 +1622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:09 GMT + - Thu, 09 Apr 2026 18:40:01 GMT expires: - '-1' pragma: @@ -1955,21 +1634,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/c5392382-9dd4-4da8-ada6-c6319850d4ad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3218cb1b-7714-43c3-911e-77df9149fcdd x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E0D34B8BE48E496596B94DAC51E97460 Ref B: SYD281080707052 Ref C: 2026-09-11T02:15:09Z' + - 'Ref A: 700ADF7EE3E34DB49784D78D4BA76AA1 Ref B: BN1AA2051014025 Ref C: 2026-04-09T18:40:01Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "4Zgzkj4Ky47yI4Zo1g8EswgGGUkrEYGZ95OC3LZJ25G97CIgxMg1JQQJ99CIACMsfrFEqg7NAAACAZCR7Wlo"}], + "***"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1989,37 +1668,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1101' + - '1097' Content-Type: - application/json ParameterSetName: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:11.7690834Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:11.7690834Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw cache-control: - no-cache content-length: - - '4019' + - '6710' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:12 GMT + - Thu, 09 Apr 2026 18:40:05 GMT expires: - '-1' pragma: @@ -2033,11 +1712,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/a7090838-839d-4f03-a3bc-7421a020df20 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2b2af31d-3904-49aa-8c31-cbdd5ce263b9 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 7F67906ED55746E3996B36C8BEDCE614 Ref B: SYD281080705023 Ref C: 2026-09-11T02:15:11Z' + - 'Ref A: E0FCBF5CE2E84377A600596BCE208499 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:40:02Z' x-powered-by: - ASP.NET status: @@ -2058,26 +1737,26 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54","name":"3e717b99-06d6-4d4b-aac2-024613bc5d54","status":"InProgress","startTime":"2026-09-11T02:15:12.2109618"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '283' + - '282' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:13 GMT + - Thu, 09 Apr 2026 18:40:06 GMT expires: - '-1' pragma: @@ -2091,11 +1770,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/5c60b598-fd66-4d8c-a8c8-73f0219dc6db + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2f5ee287-de12-4045-a480-6ddd550c16fa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C94DAE94E1814B6FB3D533E455F1488B Ref B: SYD281080708029 Ref C: 2026-09-11T02:15:13Z' + - 'Ref A: 0280B490106341D88CFBEB937445EAE3 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:40:06Z' x-powered-by: - ASP.NET status: @@ -2116,26 +1795,26 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54","name":"3e717b99-06d6-4d4b-aac2-024613bc5d54","status":"InProgress","startTime":"2026-09-11T02:15:12.2109618"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '283' + - '282' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:16 GMT + - Thu, 09 Apr 2026 18:40:09 GMT expires: - '-1' pragma: @@ -2149,11 +1828,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4e728705-1bb3-4161-813d-d6c2c94ec0d0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/cae3d9c2-99d2-443f-a256-0d45a1a811d4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 21D7ED6D2F65490CB9002E6FB0E61BDF Ref B: SYD281080710036 Ref C: 2026-09-11T02:15:16Z' + - 'Ref A: 425F1797C326411098C34645F653B0CD Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:40:10Z' x-powered-by: - ASP.NET status: @@ -2174,26 +1853,26 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54?api-version=2025-07-01&azureAsyncOperation=true&t=639246897125972093&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=0NnKHljABlvLG_2dwuEisuuOnkJnKECocS6nrqkhvXYixVIfcWw5KxwVkRCswIiv_JtaeVtQ4tpYu4fPTLRH6r_tf4QqckHHVXnqd80PFEbfLHdeZfvLlK-CBmLedOAusODf7QKRQJ0pnD1UpaP0QXKijtBoDO1ihRqG0aW1Q32mzyYRhjIMGedzURLAKAniytsfLo1q9AYRI189f0qItbOLAJmUmaucmg8QYPmeit3Zj0BfQrKsdX0fLSqmSkWkmvTefuD3u0woj83fUqd6SFujnlq2F7-5g6v_jOOUa4AjpSExD9z3afAv46gMzRQx-SdeHpGubnSU-UQg9XQGww&h=yZealsipdthcCLZQ_gOmIge7Tqe34afr4jiHITev8mQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/3e717b99-06d6-4d4b-aac2-024613bc5d54","name":"3e717b99-06d6-4d4b-aac2-024613bc5d54","status":"Succeeded","startTime":"2026-09-11T02:15:12.2109618"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"Succeeded","startTime":"2026-04-09T18:40:03.8491944"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '282' + - '281' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:20 GMT + - Thu, 09 Apr 2026 18:40:12 GMT expires: - '-1' pragma: @@ -2207,11 +1886,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/e4c2f8e9-b816-4f59-a6fd-2bcc9a8575eb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7217f9cb-3ece-440a-b441-6a09ebd2c092 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ACA466B3ABEE4337A21ED091DB96913A Ref B: SYD281080710029 Ref C: 2026-09-11T02:15:20Z' + - 'Ref A: 04716B3FF17C4B8781604E4B9184B5A5 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:13Z' x-powered-by: - ASP.NET status: @@ -2232,28 +1911,28 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:11.7690834","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:11.7690834"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '4052' + - '6743' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:22 GMT + - Thu, 09 Apr 2026 18:40:14 GMT expires: - '-1' pragma: @@ -2269,7 +1948,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 55530CF1556B47D7908282D7BC0855A8 Ref B: SYD281080710040 Ref C: 2026-09-11T02:15:21Z' + - 'Ref A: B84F3253837E4C72860E5BC974F43DC7 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:14Z' x-powered-by: - ASP.NET status: @@ -2289,7 +1968,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2300,11 +1979,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2312,33 +1989,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2346,31 +2017,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2378,8 +2043,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2387,11 +2051,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2399,91 +2060,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2500,31 +2143,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2537,11 +2174,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2549,161 +2184,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:23 GMT + - Thu, 09 Apr 2026 18:40:16 GMT expires: - '-1' pragma: @@ -2717,7 +2288,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C762427D48604AE3ACD4805A02C83D1C Ref B: SYD281080708036 Ref C: 2026-09-11T02:15:23Z' + - 'Ref A: 18DEF2BCDF744F248D088A28AE173CD5 Ref B: BN1AA2051015051 Ref C: 2026-04-09T18:40:16Z' status: code: 200 message: OK @@ -2735,28 +2306,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:11.7690834","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:11.7690834"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '4052' + - '6743' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:25 GMT + - Thu, 09 Apr 2026 18:40:17 GMT expires: - '-1' pragma: @@ -2772,7 +2343,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3974BF9331274AF2AECB842E5D14D5FA Ref B: SYD281080710034 Ref C: 2026-09-11T02:15:24Z' + - 'Ref A: 5CE77785D034439397FAC293550F7FEC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:40:17Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml index 64120878b16..73325194a10 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,11 +24,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -36,33 +34,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -70,31 +62,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -102,8 +88,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -111,11 +96,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -123,91 +105,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -224,31 +188,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -261,11 +219,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -273,161 +229,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:32 GMT + - Thu, 09 Apr 2026 18:32:46 GMT expires: - '-1' pragma: @@ -441,7 +333,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 710FAA2033B849E5993C1470A4AE5F26 Ref B: SYD281080705052 Ref C: 2026-09-11T02:13:33Z' + - 'Ref A: 935694BF77FE4F489DA734B06EAD4422 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:32:46Z' status: code: 200 message: OK @@ -459,27 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:33 GMT + - Thu, 09 Apr 2026 18:32:47 GMT expires: - '-1' pragma: @@ -495,14 +387,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2B0CE2B5CA1B4BC688C643C4ABF438D0 Ref B: SYD281080710036 Ref C: 2026-09-11T02:13:33Z' + - 'Ref A: 5DF609807C014522A61BCFAF26C14FB6 Ref B: BN1AA2051015021 Ref C: 2026-04-09T18:32:47Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -514,29 +406,29 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '90' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:47 GMT + - Thu, 09 Apr 2026 18:32:57 GMT expires: - '-1' pragma: @@ -548,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/7b2d1907-c6f7-4f73-ba5f-a78ad09a6e6b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/ab59e23b-3481-45b7-be3c-a155148dd568 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 7BD54ACD39D341BF80C30AB5D2C27BED Ref B: SYD281080709042 Ref C: 2026-09-11T02:13:34Z' + - 'Ref A: 9D22F35D42194E88980BD08345D78EF0 Ref B: BN1AA2051012011 Ref C: 2026-04-09T18:32:49Z' status: code: 200 message: OK @@ -572,21 +464,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' headers: cache-control: - no-cache content-length: - - '5033' + - '6365' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:48 GMT + - Thu, 09 Apr 2026 18:32:59 GMT expires: - '-1' pragma: @@ -600,7 +493,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E0DFC5A788C54856AE0267DC5C924024 Ref B: SYD281080711052 Ref C: 2026-09-11T02:13:48Z' + - 'Ref A: C406F4E866A442E486CBEFE2C002240E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:32:59Z' status: code: 200 message: OK @@ -618,23 +511,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:49 GMT + - Thu, 09 Apr 2026 18:32:59 GMT expires: - '-1' pragma: @@ -648,7 +541,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8AD93AB68C6B41DAA78012932D36E902 Ref B: SYD281080711062 Ref C: 2026-09-11T02:13:49Z' + - 'Ref A: DACC7961348A4026AAD64B1FABA2D290 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:33:00Z' status: code: 200 message: OK @@ -666,21 +559,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview response: body: - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884+00:00"},"properties":{"loginServer":"acrjrhsylrlc3qevqmmgrrcf.azurecr.io","creationDate":"2026-09-11T02:13:38.1350884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:45.379089+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:45.3791309+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' headers: cache-control: - no-cache content-length: - - '15555' + - '19086' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:50 GMT + - Thu, 09 Apr 2026 18:33:02 GMT expires: - '-1' pragma: @@ -696,10 +590,11 @@ interactions: - '' - '' - '' + - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 4466DACCB20C4C88A9A12DA44E1BCE38 Ref B: SYD281080707029 Ref C: 2026-09-11T02:13:50Z' + - 'Ref A: 8FFD0E23271F4E378A7504390687E463 Ref B: BN1AA2051015023 Ref C: 2026-04-09T18:33:01Z' status: code: 200 message: OK @@ -722,9 +617,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview response: body: string: '' @@ -734,18 +629,17 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:13:53 GMT + - Thu, 09 Apr 2026 18:33:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896331939374&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=qSs89QYG0JnZnOIwDM6IDVLYxONXnFAryFTXdRcx9f7gobJMfXsoDrmFlDRk3cZOYJlSWeqgQkrJWtoIfj-JYZSWxMm2CpHLi9RLRfc1qiLsW0kPUHmmKc1re07lm9Z85bsanSMzgTKHF-lk0NN__i9oqApRuwTC8-Sv4hMfBMfZPPp0PBIRqN2qCnIJLbuDZ2FfVKoHLiTDihsHgO8wItj4wdFqnTtMx8YH_O_34JoELxacHrUpD8XS7EwK33SZrZCpi8BDKatEAG_azqzgdjwohbPYR814mTp41xyxWn4ShNWb0JkKrXlsTA50JaZl-JINeJHbABsvwf5gfYIb4g&h=pKIpqexPjtHNwUOezH1jEah274LkdNxXIGsSFBJvhqo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs pragma: - no-cache strict-transport-security: @@ -755,13 +649,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/386f90a4-6dfb-467e-b2bf-af19a66a760b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/c07d67de-0f42-4a8f-9101-4f4996a9c554 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BEFC612A2A98443C9D78023578E314F7 Ref B: SYD281080708025 Ref C: 2026-09-11T02:13:52Z' + - 'Ref A: 1012E8D384A540D7B2B2D30B58232633 Ref B: BN1AA2051015029 Ref C: 2026-04-09T18:33:03Z' status: code: 202 message: Accepted @@ -779,9 +673,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896331939374&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=qSs89QYG0JnZnOIwDM6IDVLYxONXnFAryFTXdRcx9f7gobJMfXsoDrmFlDRk3cZOYJlSWeqgQkrJWtoIfj-JYZSWxMm2CpHLi9RLRfc1qiLsW0kPUHmmKc1re07lm9Z85bsanSMzgTKHF-lk0NN__i9oqApRuwTC8-Sv4hMfBMfZPPp0PBIRqN2qCnIJLbuDZ2FfVKoHLiTDihsHgO8wItj4wdFqnTtMx8YH_O_34JoELxacHrUpD8XS7EwK33SZrZCpi8BDKatEAG_azqzgdjwohbPYR814mTp41xyxWn4ShNWb0JkKrXlsTA50JaZl-JINeJHbABsvwf5gfYIb4g&h=pKIpqexPjtHNwUOezH1jEah274LkdNxXIGsSFBJvhqo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -793,11 +687,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:53 GMT + - Thu, 09 Apr 2026 18:33:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896346286201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=hPaqCJ1BapqMfrkZ9XmFPVBNx-ZhJHaZWuche4cVE46uT5vanwia3ARhagXrAL2Utz3RqlPOXqfb7RMSl7geKIGksbVxFRBEGUDYD_6IILilueYi2QVAPY0KagKfKUPf_tBuo5QNPSqmgPtkISr2dEW3VG7e8uDdAXcuZk0VCfKO5J8HdaeRtZzkm6oiw5u7FVriokT70i3TJdUoV3O0BQanP6P2Ib7FPZxNqoRU4yzUxR7y5JHhiHKtTCA14hLJt3sckx8ePe1BFCKiKoDwT6vtxSjM9L_5vlvoq19bMqrh3SLqbLPctCGwSMg5rcz5c0HlbaqIqV27fjafPS9iVA&h=LJbMP7DSzuz3dxMqJva11CwtCSROKVvHrVxBsRzDdUI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 pragma: - no-cache strict-transport-security: @@ -807,11 +701,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/64dce04d-16e9-4153-b23a-4cde28ae1bdd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/522bd5fc-1bfb-4482-bc19-4ba9adaa6e17 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0C31D7AF18DD4E59B6D4E993FEF86135 Ref B: SYD281080706034 Ref C: 2026-09-11T02:13:53Z' + - 'Ref A: 9462B692FCA9409D9D16339D52E8616B Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:05Z' status: code: 202 message: Accepted @@ -829,9 +723,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-6cb8304f-ad86-11f1-a6bf-3cefa50a58cc?api-version=2026-09-01-preview&t=639246896346286201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=hPaqCJ1BapqMfrkZ9XmFPVBNx-ZhJHaZWuche4cVE46uT5vanwia3ARhagXrAL2Utz3RqlPOXqfb7RMSl7geKIGksbVxFRBEGUDYD_6IILilueYi2QVAPY0KagKfKUPf_tBuo5QNPSqmgPtkISr2dEW3VG7e8uDdAXcuZk0VCfKO5J8HdaeRtZzkm6oiw5u7FVriokT70i3TJdUoV3O0BQanP6P2Ib7FPZxNqoRU4yzUxR7y5JHhiHKtTCA14hLJt3sckx8ePe1BFCKiKoDwT6vtxSjM9L_5vlvoq19bMqrh3SLqbLPctCGwSMg5rcz5c0HlbaqIqV27fjafPS9iVA&h=LJbMP7DSzuz3dxMqJva11CwtCSROKVvHrVxBsRzDdUI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 response: body: string: '{"status":"Succeeded"}' @@ -843,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:05 GMT + - Thu, 09 Apr 2026 18:33:16 GMT expires: - '-1' pragma: @@ -855,11 +749,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/2a70a9bd-f360-48a3-9e1c-7ddd0f9f804a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/a843b716-c68d-4d00-bbf7-8aba702d0ffa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 03ED24F46134476FA2F135D546498CFE Ref B: SYD281080708025 Ref C: 2026-09-11T02:14:05Z' + - 'Ref A: 8894CADC7C5B4832950EBDF9E6A80642 Ref B: BN1AA2051013029 Ref C: 2026-04-09T18:33:16Z' status: code: 200 message: OK @@ -877,21 +771,22 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' headers: cache-control: - no-cache content-length: - - '5033' + - '6365' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:06 GMT + - Thu, 09 Apr 2026 18:33:17 GMT expires: - '-1' pragma: @@ -905,7 +800,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D369F430DB07445C9457D453054029DB Ref B: SYD281080705029 Ref C: 2026-09-11T02:14:06Z' + - 'Ref A: 25013C196C964BD2A036CF7F2CCB5ECC Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:33:17Z' status: code: 200 message: OK @@ -923,23 +818,23 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:13:35.1097849Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271365+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:13:47.3271717+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:08 GMT + - Thu, 09 Apr 2026 18:33:19 GMT expires: - '-1' pragma: @@ -953,7 +848,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DDFAAD5E4087440B9927A113BD75E705 Ref B: SYD281080712031 Ref C: 2026-09-11T02:14:07Z' + - 'Ref A: 940C3E473F1443049CD3EC10C7214075 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:33:19Z' status: code: 200 message: OK @@ -973,15 +868,15 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"},{"name":"password2","value":"DVZkvWV7HIapGzL5FZ4Xi9xlzDC2xJU3XeKzI6AJrtU4jeLr0qsxJQQJ99CIACMsfrFEqg7NAAACAZCRABv6"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -989,7 +884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:09 GMT + - Thu, 09 Apr 2026 18:33:20 GMT expires: - '-1' pragma: @@ -1001,13 +896,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e9ef9e5e-7030-4221-a5ef-9c222a2f7c92 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/db30c45f-f6a3-419a-a04c-8076870826b2 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 0770852510BE441E981683FF61C4A197 Ref B: SYD281080706060 Ref C: 2026-09-11T02:14:08Z' + - 'Ref A: 83E48A07885D4308A191192885072445 Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:33:20Z' status: code: 200 message: OK @@ -1026,7 +921,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1037,11 +932,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1049,33 +942,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1083,31 +970,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1115,8 +996,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1124,11 +1004,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1136,91 +1013,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1237,31 +1096,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1274,11 +1127,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1286,161 +1137,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:10 GMT + - Thu, 09 Apr 2026 18:33:22 GMT expires: - '-1' pragma: @@ -1454,7 +1241,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 05533EB6C7CF4313809F7F37086E389F Ref B: SYD281080709062 Ref C: 2026-09-11T02:14:10Z' + - 'Ref A: FCE26477FA874AE4BD33D82497129109 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:33:22Z' status: code: 200 message: OK @@ -1473,27 +1260,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:10 GMT + - Thu, 09 Apr 2026 18:33:23 GMT expires: - '-1' pragma: @@ -1509,7 +1296,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9944C419FB15457DADD703A9DCDB393E Ref B: SYD281080705062 Ref C: 2026-09-11T02:14:10Z' + - 'Ref A: 3F443B86EF314F78BAE30E2BFD947002 Ref B: BN1AA2051015025 Ref C: 2026-04-09T18:33:23Z' x-powered-by: - ASP.NET status: @@ -1530,7 +1317,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1541,11 +1328,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1553,33 +1338,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1587,31 +1366,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1619,8 +1392,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1628,11 +1400,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1640,91 +1409,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1741,31 +1492,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1778,11 +1523,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1790,161 +1533,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:10 GMT + - Thu, 09 Apr 2026 18:33:24 GMT expires: - '-1' pragma: @@ -1958,15 +1637,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6CD0BE8CBC6E4B78B4CCF35AEF9D00C1 Ref B: SYD281080710060 Ref C: 2026-09-11T02:14:11Z' + - 'Ref A: DFEC64F36CEB4003829B4938A7FA4A3E Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:24Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000003azurecrio-443-acr000003", "value": - "6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"}], + "***"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, @@ -1986,36 +1665,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1196' + - '1192' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:12.8755176Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:12.8755176Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U cache-control: - no-cache content-length: - - '4358' + - '7048' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:12 GMT + - Thu, 09 Apr 2026 18:33:26 GMT expires: - '-1' pragma: @@ -2029,11 +1708,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/67f77e89-e089-4dbd-a214-d2543b405ab6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3871540a-7a46-4dc6-a69b-de9b56d9fac2 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 98EEFE2421F44A3A875A228237256A3D Ref B: SYD281080708040 Ref C: 2026-09-11T02:14:12Z' + - 'Ref A: 12CDD39E935A4B7A8A5B7E8E1B6341D4 Ref B: BN1AA2051014023 Ref C: 2026-04-09T18:33:25Z' x-powered-by: - ASP.NET status: @@ -2054,26 +1733,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:13 GMT + - Thu, 09 Apr 2026 18:33:27 GMT expires: - '-1' pragma: @@ -2087,11 +1766,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/62cab82e-2b76-4576-94a6-f17272aaaa19 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/4c88da92-c7ec-43b5-b317-33e9fde772a5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 49A6BAD4E737463B993CA67B68D8C065 Ref B: SYD281080707029 Ref C: 2026-09-11T02:14:14Z' + - 'Ref A: F9233BAF3569419996A0E1FA8088943F Ref B: BN1AA2051012017 Ref C: 2026-04-09T18:33:28Z' x-powered-by: - ASP.NET status: @@ -2112,26 +1791,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:16 GMT + - Thu, 09 Apr 2026 18:33:31 GMT expires: - '-1' pragma: @@ -2145,11 +1824,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/4c8d5514-b5c7-43bc-b7f8-4214993ebe7a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/060ef7e5-15bb-4fb2-8ec5-8a7adef9f3ea x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD5934BECB574277BB2E6A54089E7C35 Ref B: SYD281080707052 Ref C: 2026-09-11T02:14:17Z' + - 'Ref A: F8B8363DA5BF4923B53875A2B05CC309 Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:33:31Z' x-powered-by: - ASP.NET status: @@ -2170,26 +1849,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:20 GMT + - Thu, 09 Apr 2026 18:33:34 GMT expires: - '-1' pragma: @@ -2203,11 +1882,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/33f41dbe-669f-4df9-9bd7-9123260645b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/7e664e93-3760-4628-ba57-67dc10fc9985 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1AFC8217934542A19417725446E5AB24 Ref B: SYD281080707023 Ref C: 2026-09-11T02:14:20Z' + - 'Ref A: 3B2C9E30C5424A44B6BF3EB1342F5A79 Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:33:34Z' x-powered-by: - ASP.NET status: @@ -2228,26 +1907,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"InProgress","startTime":"2026-09-11T02:14:13.2832086"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:23 GMT + - Thu, 09 Apr 2026 18:33:38 GMT expires: - '-1' pragma: @@ -2261,11 +1940,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1da90169-d8ee-44e9-aeb7-b23e428853c2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e1e7f557-17ee-4d00-869c-9736a043ba07 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2AA4AA8F42B421EA4DE621CCF64D76D Ref B: SYD281080706042 Ref C: 2026-09-11T02:14:23Z' + - 'Ref A: 48BD08A5D6794290A20D875CA56C15A8 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:33:38Z' x-powered-by: - ASP.NET status: @@ -2286,26 +1965,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d?api-version=2025-07-01&azureAsyncOperation=true&t=639246896534380258&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=R-XprByxuSMklegwIRb-Ers8uXpXabLiwq7eS3WMSovHd3LeA_hFX9VVg70jgz4-UcQ0gWwuovueXAzaHlkCyG1-4Dr2DfdLCC-DRhY6SBuS_8hx0WNq6e4_t4qW1DgHLmm5iIhIYO2jA72sTF1V-mDOgoi6yBk83UHzjZphZImF5T0h7wPoNC961tNk77PFZ5hjtfl0zErvEpgNaXZ_V1gy4MrXSJ8ClZNl2sVpZisDaG39LLYX2C5kMytjtSnCHzPPhuT2FmUmV_jnUgtfghIqjsApF-lTeUwUWRDQHzYdrPS7mWfhN7ExLwmjsYHHrIKKTN_4H4pyY6LmcX43Vw&h=q6dKqkGpn2uVQfehHpqQPD5tI2X-cuFVTRk3pewCXJE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","name":"27c2df9e-c1e2-4ea6-b3bc-36b7d3cd2f3d","status":"Succeeded","startTime":"2026-09-11T02:14:13.2832086"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"Succeeded","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:26 GMT + - Thu, 09 Apr 2026 18:33:41 GMT expires: - '-1' pragma: @@ -2319,11 +1998,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/5e9e1b2b-8066-47a2-8a53-bb09e57cdbf0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/f8084cb3-71eb-423f-b1f1-9c4a78b02f73 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D0E202C1186A49EF87855D94EF52241F Ref B: SYD281080712060 Ref C: 2026-09-11T02:14:26Z' + - 'Ref A: C1AEB49CE7A748718236187D0F3F8226 Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:33:41Z' x-powered-by: - ASP.NET status: @@ -2344,27 +2023,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:12.8755176","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:12.8755176"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--wo6jze3","latestReadyRevisionName":"aca000002--wo6jze3","latestRevisionFqdn":"aca000002--wo6jze3.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '4994' + - '7681' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:27 GMT + - Thu, 09 Apr 2026 18:33:42 GMT expires: - '-1' pragma: @@ -2380,7 +2059,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4826C46D34E147F8BDC95CC825D0F916 Ref B: SYD281080708052 Ref C: 2026-09-11T02:14:27Z' + - 'Ref A: A32FE836747A4DD8A801E2CB0C3BF1AD Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:42Z' x-powered-by: - ASP.NET status: @@ -2400,7 +2079,7 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2411,11 +2090,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2423,33 +2100,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2457,31 +2128,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2489,8 +2154,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2498,11 +2162,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2510,91 +2171,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2611,31 +2254,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2648,11 +2285,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2660,161 +2295,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:28 GMT + - Thu, 09 Apr 2026 18:33:44 GMT expires: - '-1' pragma: @@ -2826,9 +2397,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 8BFB091618CC44239FFF1D956B9C4B6B Ref B: SYD281080705029 Ref C: 2026-09-11T02:14:29Z' + - 'Ref A: EC81DEB16E0C4F0CA2EB0A4B6388BDCE Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:33:44Z' status: code: 200 message: OK @@ -2846,27 +2417,27 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:12.8755176","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:12.8755176"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--wo6jze3","latestReadyRevisionName":"aca000002--wo6jze3","latestRevisionFqdn":"aca000002--wo6jze3.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '4994' + - '7681' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:29 GMT + - Thu, 09 Apr 2026 18:33:46 GMT expires: - '-1' pragma: @@ -2882,7 +2453,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 532FB8B231F3414E8B55A950FAA128CE Ref B: SYD281080710060 Ref C: 2026-09-11T02:14:29Z' + - 'Ref A: 3A2F6B8B36B04807A1E7F56A911D5AC3 Ref B: BN1AA2051012029 Ref C: 2026-04-09T18:33:45Z' x-powered-by: - ASP.NET status: @@ -2904,18 +2475,18 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"}]}' + string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"***"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: @@ -2923,7 +2494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:32 GMT + - Thu, 09 Apr 2026 18:33:48 GMT expires: - '-1' pragma: @@ -2937,13 +2508,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/632e62c5-811d-41ad-b388-31d055bab698 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/7d0d9b73-ad40-4e82-bfa3-193e8d0bb5e1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 99D5B33247904993AC6519F65ACA129E Ref B: SYD281080712029 Ref C: 2026-09-11T02:14:31Z' + - 'Ref A: 84D1EA72669F406EA501976FC4886A18 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:47Z' x-powered-by: - ASP.NET status: @@ -2964,7 +2535,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2975,11 +2546,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2987,33 +2556,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3021,31 +2584,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -3053,8 +2610,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3062,11 +2618,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3074,91 +2627,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -3175,31 +2710,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -3212,11 +2741,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3224,161 +2751,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:32 GMT + - Thu, 09 Apr 2026 18:33:49 GMT expires: - '-1' pragma: @@ -3392,7 +2855,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CFD6C3614988404BAB296012F048FE35 Ref B: SYD281080711052 Ref C: 2026-09-11T02:14:33Z' + - 'Ref A: C77679F8F174482EB4F403773474F244 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:49Z' status: code: 200 message: OK @@ -3411,27 +2874,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:33 GMT + - Thu, 09 Apr 2026 18:33:51 GMT expires: - '-1' pragma: @@ -3447,7 +2910,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EC468F802B5B4A6DAEBC00D480255029 Ref B: SYD281080708042 Ref C: 2026-09-11T02:14:34Z' + - 'Ref A: FC9214C9F82348C7A1E82FDD22177055 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:33:51Z' x-powered-by: - ASP.NET status: @@ -3468,7 +2931,7 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3479,11 +2942,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3491,33 +2952,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3525,31 +2980,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -3557,8 +3006,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3566,11 +3014,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3578,91 +3023,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -3679,31 +3106,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -3716,11 +3137,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3728,161 +3147,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:35 GMT + - Thu, 09 Apr 2026 18:33:52 GMT expires: - '-1' pragma: @@ -3896,15 +3251,15 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 85B64B7C667141839D3836752F9D4D09 Ref B: SYD281080706023 Ref C: 2026-09-11T02:14:35Z' + - 'Ref A: 0D074FA4E3DE4D45AB14EB3D470B3796 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:33:52Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "6hSVwKbFp295TKOCWTWpuBbw0eOWxf6NAMDvrC3W1AFTQheLGSDSJQQJ99CIACMsfrFEqg7NAAACAZCRe2YA"}], + "***"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, @@ -3924,36 +3279,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1180' + - '1176' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:36.6940315Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:36.6940315Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s cache-control: - no-cache content-length: - - '4342' + - '7032' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:36 GMT + - Thu, 09 Apr 2026 18:33:55 GMT expires: - '-1' pragma: @@ -3967,11 +3322,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/04bb7418-2ddb-4928-a9b9-132b81866f1f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/0c457244-70bc-4ec7-b3e2-7efb30ec9a8e x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: EC555FC6DBD347D98BDAC69B522AA2E1 Ref B: SYD281080708034 Ref C: 2026-09-11T02:14:36Z' + - 'Ref A: 93BDC2F67E684F32B0098BD941B76E50 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:33:54Z' x-powered-by: - ASP.NET status: @@ -3992,84 +3347,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:14:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/82b2db52-7db4-4ce4-8d3f-a3d53f7d8950 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 4B79252D8FB7434CA2C9927D6FB6057D Ref B: SYD281080706054 Ref C: 2026-09-11T02:14:37Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password - User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:41 GMT + - Thu, 09 Apr 2026 18:33:56 GMT expires: - '-1' pragma: @@ -4083,11 +3380,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6e3bf7d0-58da-4339-bbbd-656ee571cf0b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7eef5cd0-059c-443d-8f9e-51dbc47fb520 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2147A1BBDD6840D885B7FA4212933FC3 Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:41Z' + - 'Ref A: 7523EC4659204296AFD52448CCE7CE85 Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:56Z' x-powered-by: - ASP.NET status: @@ -4108,26 +3405,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:44 GMT + - Thu, 09 Apr 2026 18:33:59 GMT expires: - '-1' pragma: @@ -4141,11 +3438,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/71f27512-ec66-4cb4-95ed-493acf771452 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/4b2d4182-7784-4e1e-993f-d6899c9a7aa7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6AD720D8942D4CFDAA2A2B0E5B241BB6 Ref B: SYD281080708060 Ref C: 2026-09-11T02:14:44Z' + - 'Ref A: 1E1F8F2A0B074C938D8D04BCD262DAB4 Ref B: BN1AA2051014029 Ref C: 2026-04-09T18:34:00Z' x-powered-by: - ASP.NET status: @@ -4166,26 +3463,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"InProgress","startTime":"2026-09-11T02:14:37.0902221"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:47 GMT + - Thu, 09 Apr 2026 18:34:02 GMT expires: - '-1' pragma: @@ -4199,11 +3496,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/ac6db06f-eac2-4778-9a5f-8ec2280aea81 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/8fcb7cf1-0bd9-48f8-b8e2-4ae1ed9475b8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 163E21D5FE0C4566882344C2FE818563 Ref B: SYD281080707042 Ref C: 2026-09-11T02:14:47Z' + - 'Ref A: F36A5CAB75D6496193668CAA2F649E16 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:34:03Z' x-powered-by: - ASP.NET status: @@ -4224,26 +3521,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4?api-version=2025-07-01&azureAsyncOperation=true&t=639246896773658902&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=JRnCGb1-fAKRrl-JIaR-aHkMS95_4a4Ujf1-EHZNQAJoB1Jjv5ckPmwObwjrbnT-qL3ISS9HVW_EYSN127G9e-uKkBfVWZ6bCiV-nVLwV04F7TvYWsuSD9LpqeffIjqrF__YU_YXTkfTbNIEBeDhK-YdvkZ_yOop2WRuDS54Uc2yLFOKDZYppbA-_nwOipXAFsLL_fLlAWA8pK6f7EUIZCQhtwm1-oT95MW5RkO5TGn6fiRw-RVwDH7XhrlkvYfpg48cEuhHTgsrlwaty3BTtYc2DVAsOi5DVpZ13dG5Wo3z46TOUptNSnV6H7B-8_bj0XhMCLm9sR7q_T5U0b0SGA&h=iLnw26mLEZxzeZMJf3N_RlOlPbajugPxWwt2FjjccdI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/fc530c1a-3973-4b09-9cd1-7aa67c0829e4","name":"fc530c1a-3973-4b09-9cd1-7aa67c0829e4","status":"Succeeded","startTime":"2026-09-11T02:14:37.0902221"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"Succeeded","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:51 GMT + - Thu, 09 Apr 2026 18:34:06 GMT expires: - '-1' pragma: @@ -4257,11 +3554,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/4d35385d-6b33-434d-a011-b1ac73dca2d2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/b3517880-1ec7-4b4f-a7e1-43d7650872c1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0415A44CF3DF4C31B504260410074510 Ref B: SYD281080705040 Ref C: 2026-09-11T02:14:50Z' + - 'Ref A: 6BCFFB8675514934A3A49DCFB58418BC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:34:06Z' x-powered-by: - ASP.NET status: @@ -4282,27 +3579,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:36.6940315","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:36.6940315"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000004--nej545i","latestReadyRevisionName":"aca000004--nej545i","latestRevisionFqdn":"aca000004--nej545i.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '4978' + - '7665' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:52 GMT + - Thu, 09 Apr 2026 18:34:08 GMT expires: - '-1' pragma: @@ -4318,7 +3615,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A7040F945819456F94DCABCEDEC18CFA Ref B: SYD281080710054 Ref C: 2026-09-11T02:14:52Z' + - 'Ref A: FF5BDBE74853474AB2E78819619C6AC1 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:34:08Z' x-powered-by: - ASP.NET status: @@ -4338,7 +3635,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -4349,11 +3646,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4361,33 +3656,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4395,31 +3684,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -4427,8 +3710,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -4436,11 +3718,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4448,91 +3727,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -4549,31 +3810,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -4586,11 +3841,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -4598,161 +3851,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:53 GMT + - Thu, 09 Apr 2026 18:34:10 GMT expires: - '-1' pragma: @@ -4766,7 +3955,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 418B5255D9584231BC38F04B701585FF Ref B: SYD281080708040 Ref C: 2026-09-11T02:14:53Z' + - 'Ref A: 9F6386055C2B4F8F850FC71FF364F70E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:34:10Z' status: code: 200 message: OK @@ -4784,27 +3973,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:36.6940315","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:36.6940315"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000004--nej545i","latestReadyRevisionName":"aca000004--nej545i","latestRevisionFqdn":"aca000004--nej545i.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '4978' + - '7665' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:55 GMT + - Thu, 09 Apr 2026 18:34:11 GMT expires: - '-1' pragma: @@ -4820,7 +4009,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 604F82D37CE1411993DBA23275F8CD19 Ref B: SYD281080708036 Ref C: 2026-09-11T02:14:54Z' + - 'Ref A: 0FDF6DDD4AF94FE09B1A06EB21164EF2 Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:34:11Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml index 7fc5d631031..0d965d54a33 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,11 +24,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -36,33 +34,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -70,31 +62,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -102,8 +88,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -111,11 +96,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -123,91 +105,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -224,31 +188,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -261,11 +219,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -273,161 +229,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:01 GMT + - Thu, 09 Apr 2026 18:46:34 GMT expires: - '-1' pragma: @@ -441,7 +333,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 996BDA5485F146B0A78BF0DC4113466E Ref B: SYD281080708052 Ref C: 2026-09-11T02:15:02Z' + - 'Ref A: 57FE089F4FA14C9E9D695FCA0354D052 Ref B: BN1AA2051015051 Ref C: 2026-04-09T18:46:35Z' status: code: 200 message: OK @@ -459,27 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:03 GMT + - Thu, 09 Apr 2026 18:46:38 GMT expires: - '-1' pragma: @@ -495,14 +387,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0C3164954C78433C87CD388F58B503B1 Ref B: SYD281080706025 Ref C: 2026-09-11T02:15:03Z' + - 'Ref A: 888D00F6774C47EABD0E02D63762F285 Ref B: BN1AA2051013035 Ref C: 2026-04-09T18:46:38Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -514,29 +406,29 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '90' Content-Type: - application/json ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1625' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:12 GMT + - Thu, 09 Apr 2026 18:46:48 GMT expires: - '-1' pragma: @@ -548,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/64db2d1f-d755-4696-a4ae-9484d04df4db + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/6413d17f-8624-4780-bebe-6f9fba57cd80 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: FA02F0B92BAF49639E06C3CC13F3BDDE Ref B: SYD281080708034 Ref C: 2026-09-11T02:15:04Z' + - 'Ref A: B1342B9BD3894897A0065372FE9E8394 Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:46:41Z' status: code: 200 message: OK @@ -572,21 +464,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7boyohy6evvjsjeeey4rupmea6fkmzazrxz24auqtg3gdkgnre76owzssnyc6wlb/providers/Microsoft.ContainerRegistry/registries/acrwahclqjvx2wjo4l5kcrar","name":"acrwahclqjvx2wjo4l5kcrar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' headers: cache-control: - no-cache content-length: - - '6831' + - '6965' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:14 GMT + - Thu, 09 Apr 2026 18:46:50 GMT expires: - '-1' pragma: @@ -600,7 +493,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9C1F86D0E78846739E15B21D7C98A009 Ref B: SYD281080711034 Ref C: 2026-09-11T02:15:14Z' + - 'Ref A: 0B1A44E359424FA88CB6120149BE3364 Ref B: BN1AA2051013027 Ref C: 2026-04-09T18:46:51Z' status: code: 200 message: OK @@ -618,23 +511,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1625' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:16 GMT + - Thu, 09 Apr 2026 18:46:53 GMT expires: - '-1' pragma: @@ -648,7 +541,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 68320534070C48B7AEE4834C8AD74A5F Ref B: SYD281080708036 Ref C: 2026-09-11T02:15:15Z' + - 'Ref A: A0FF97172207465BB457B605E7385B11 Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:46:53Z' status: code: 200 message: OK @@ -666,21 +559,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview response: body: - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172+00:00"},"properties":{"loginServer":"clireg3l5cnycvqg6ymf.azurecr.io","creationDate":"2026-09-11T02:14:54.7024172Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:02.4129227+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:02.4147569+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095+00:00"},"properties":{"loginServer":"sourceregistrysamesubam4gtwopgrmwuxtu2j7.azurecr.io","creationDate":"2026-09-10T10:38:54.4465095Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995198+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T10:39:01.9995617+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125+00:00"},"properties":{"loginServer":"sourceregistrysamesubt34udkppkxdfwcrl6pv.azurecr.io","creationDate":"2026-09-10T06:46:26.0472125Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513353+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:46:34.5513771+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025+00:00"},"properties":{"loginServer":"sourceregistrysamesubyrfpxkxe3smcq7j7pic.azurecr.io","creationDate":"2026-09-10T06:38:14.5006025Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:38:21.9089995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:38:21.9090565+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581+00:00"},"properties":{"loginServer":"acrzonediagold3f29570197.azurecr.io","creationDate":"2026-09-10T09:57:17.3282581Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879248+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:57:24.4879636+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212+00:00"},"properties":{"loginServer":"testreg2ldpdbggiutma.azurecr.io","creationDate":"2026-09-10T09:50:07.2133212Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319098+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:14.0319693+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732+00:00"},"properties":{"loginServer":"testrega5vlaumfqu3em.azurecr.io","creationDate":"2026-09-10T09:49:46.7965732Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T09:50:03.9048866+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T09:50:03.9049238+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196+00:00"},"properties":{"loginServer":"magic.azurecr.io","creationDate":"2026-06-22T11:10:31.8052196Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-06-22T11:10:39.5609941+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-06-22T11:10:39.5610332+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281+00:00"},"properties":{"loginServer":"acrmlzxrjet5l5zxtodf6prs.azurecr.io","creationDate":"2026-09-11T02:14:34.1708281Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139094+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:41.3139469+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244+00:00"},"properties":{"loginServer":"containerapp3lfto542omn5.azurecr.io","creationDate":"2026-09-11T02:14:14.6512244Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:14:21.8169781+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:14:21.8170167+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7boyohy6evvjsjeeey4rupmea6fkmzazrxz24auqtg3gdkgnre76owzssnyc6wlb/providers/Microsoft.ContainerRegistry/registries/acrwahclqjvx2wjo4l5kcrar","name":"acrwahclqjvx2wjo4l5kcrar","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acrwahclqjvx2wjo4l5kcrar.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' headers: cache-control: - no-cache content-length: - - '19013' + - '20786' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:18 GMT + - Thu, 09 Apr 2026 18:46:56 GMT expires: - '-1' pragma: @@ -696,10 +590,11 @@ interactions: - '' - '' - '' + - '' x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 76AF13DC811A4261A5B27760EBCE3734 Ref B: SYD281080709060 Ref C: 2026-09-11T02:15:18Z' + - 'Ref A: 73BF73E4BA38425195D4A6F81A3F0093 Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:46:55Z' status: code: 200 message: OK @@ -722,9 +617,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview response: body: string: '' @@ -734,18 +629,17 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:15:20 GMT + - Thu, 09 Apr 2026 18:46:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897209635201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=nBCsxdCxU6Pb5JQZg0fccJvuBa2j7R9a5ngkKQ2CHNUxfx-U-Rir6gJzOqJrCxdMgKKbiAL4rMeFOGO66ReEUwc1li36JA05RlfIfzeG0KYijofnTwbVNdIGFAWQa2VkdUldYh8h1qOCSVahi7hSoJMzaowQ2GwNI5gHloAF0sIu-sBN6JKK54WXy7Z80nQauyETy9jskJ9wwozvd19h1uJJSwRM2YWC4D-FUgjEMs6Z_78asvYxM6olFfsh-p3GJa05CR1HbbM3TqVxie3tfmxJIvQz35isOLy4p5Tz5i2L03EbZQJd9Zri1-MfaUlrJ8qEErwwZGPkWtFy2oIqlg&h=2PalC6vwJ-Ge_GuKPnO0oJa3UBCrpEyRnELmEqinVFo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E pragma: - no-cache strict-transport-security: @@ -755,13 +649,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/b3d3fe38-7fba-4d55-b148-6d52e2c71dcb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/9c384992-493f-4207-b2c0-c439140eb525 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 82E189F2DBDA4F0F9429EFD931BFF468 Ref B: SYD281080710040 Ref C: 2026-09-11T02:15:19Z' + - 'Ref A: FBC36302D64B4AF1A7D9EB758035FF19 Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:46:58Z' status: code: 202 message: Accepted @@ -779,59 +673,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897209635201&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=nBCsxdCxU6Pb5JQZg0fccJvuBa2j7R9a5ngkKQ2CHNUxfx-U-Rir6gJzOqJrCxdMgKKbiAL4rMeFOGO66ReEUwc1li36JA05RlfIfzeG0KYijofnTwbVNdIGFAWQa2VkdUldYh8h1qOCSVahi7hSoJMzaowQ2GwNI5gHloAF0sIu-sBN6JKK54WXy7Z80nQauyETy9jskJ9wwozvd19h1uJJSwRM2YWC4D-FUgjEMs6Z_78asvYxM6olFfsh-p3GJa05CR1HbbM3TqVxie3tfmxJIvQz35isOLy4p5Tz5i2L03EbZQJd9Zri1-MfaUlrJ8qEErwwZGPkWtFy2oIqlg&h=2PalC6vwJ-Ge_GuKPnO0oJa3UBCrpEyRnELmEqinVFo - response: - body: - string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '56' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897222072129&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=M6hAk5LiO8BPZzxYSLUyvJstI-E1l-S3ZyoDEfOSXNfL2HuvivyaGRNXvRFIyh5jwlXvhxPLWi7kgowKajeJOQPorz0dzfhp2QwoqQaIeRBVSCvbhpAjbYQfJp3QdCfd3F5LeARJs7kynuyVwug6U9c_iARTF-RH51AzNgmzytPldfF8WQRGC0MLrNAi0PQlaTrgWCyOV7-Y6NGFBGmn3UjhTvjXlsMa5XatdRMES4EAqKULyVrormvqo_Jo9DF-ZZanApDCgKNGtgnJDo6jf-5wp1RzR0H1dv72sFZTyprPUua4uNv8TVPu_kkYXnA9LS0SqjsxeI41HDxzRLdPVA&h=AxJcQKexXpmF7lZGS2fzIRyeSX_3UqGdRVpwLWNrUPE - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/dccf0f53-6385-4d5b-b00f-813ee4248eda - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: FE35849959264F318050B0E14012B3EA Ref B: SYD281080706060 Ref C: 2026-09-11T02:15:21Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/WESTUS3/operationResults/registries-9fea1754-ad86-11f1-a9f1-3cefa50a58cc?api-version=2026-09-01-preview&t=639246897222072129&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=M6hAk5LiO8BPZzxYSLUyvJstI-E1l-S3ZyoDEfOSXNfL2HuvivyaGRNXvRFIyh5jwlXvhxPLWi7kgowKajeJOQPorz0dzfhp2QwoqQaIeRBVSCvbhpAjbYQfJp3QdCfd3F5LeARJs7kynuyVwug6U9c_iARTF-RH51AzNgmzytPldfF8WQRGC0MLrNAi0PQlaTrgWCyOV7-Y6NGFBGmn3UjhTvjXlsMa5XatdRMES4EAqKULyVrormvqo_Jo9DF-ZZanApDCgKNGtgnJDo6jf-5wp1RzR0H1dv72sFZTyprPUua4uNv8TVPu_kkYXnA9LS0SqjsxeI41HDxzRLdPVA&h=AxJcQKexXpmF7lZGS2fzIRyeSX_3UqGdRVpwLWNrUPE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E response: body: string: '{"status":"Succeeded"}' @@ -843,7 +687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:33 GMT + - Thu, 09 Apr 2026 18:47:01 GMT expires: - '-1' pragma: @@ -855,11 +699,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/53f528b1-0828-416f-9f1d-091597f96ef5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/6b243f9e-1ef5-4244-b4fc-d01ddb8766d2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 428ADCB82A7C477792C07BA72059EC44 Ref B: SYD281080709029 Ref C: 2026-09-11T02:15:32Z' + - 'Ref A: 9C642DC7E5DF469595963BB458787E2B Ref B: BN1AA2051012021 Ref C: 2026-04-09T18:47:02Z' status: code: 200 message: OK @@ -877,7 +721,7 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -888,11 +732,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -900,33 +742,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -934,31 +770,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -966,8 +796,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -975,11 +804,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -987,91 +813,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1088,31 +896,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1125,11 +927,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1137,161 +937,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:34 GMT + - Thu, 09 Apr 2026 18:47:05 GMT expires: - '-1' pragma: @@ -1305,7 +1041,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 884F1633597B44278928EBEB8694FBA1 Ref B: SYD281080709040 Ref C: 2026-09-11T02:15:34Z' + - 'Ref A: C02C31EE76A54497A5525F2197624F97 Ref B: BN1AA2051013049 Ref C: 2026-04-09T18:47:05Z' status: code: 200 message: OK @@ -1323,27 +1059,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '2074' + - '1721' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:35 GMT + - Thu, 09 Apr 2026 18:47:06 GMT expires: - '-1' pragma: @@ -1359,7 +1095,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 39852500825A43678BDE67341EA078B9 Ref B: SYD281080705036 Ref C: 2026-09-11T02:15:35Z' + - 'Ref A: 4F753B5D351642E89C455C031F82FF31 Ref B: BN1AA2051014031 Ref C: 2026-04-09T18:47:07Z' x-powered-by: - ASP.NET status: @@ -1379,7 +1115,7 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1390,11 +1126,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1402,33 +1136,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1436,31 +1164,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -1468,8 +1190,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1477,11 +1198,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1489,91 +1207,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1590,31 +1290,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1627,11 +1321,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1639,161 +1331,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:36 GMT + - Thu, 09 Apr 2026 18:47:07 GMT expires: - '-1' pragma: @@ -1807,7 +1435,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7CDC86C706F741B4B3CA2CFFE81F02FD Ref B: SYD281080711031 Ref C: 2026-09-11T02:15:36Z' + - 'Ref A: EADDA8A2E9D34C3D9533E60708511374 Ref B: BN1AA2051013027 Ref C: 2026-04-09T18:47:08Z' status: code: 200 message: OK @@ -1825,21 +1453,22 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf6mjrsz7snf6pvhgsiffbpwmzuxmuezp5cteenh4shh4ujp3ey2ol3su4dekeoxpz/providers/Microsoft.ContainerRegistry/registries/containerappwe3veae2svp7","name":"containerappwe3veae2svp7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7boyohy6evvjsjeeey4rupmea6fkmzazrxz24auqtg3gdkgnre76owzssnyc6wlb/providers/Microsoft.ContainerRegistry/registries/acrwahclqjvx2wjo4l5kcrar","name":"acrwahclqjvx2wjo4l5kcrar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' headers: cache-control: - no-cache content-length: - - '6831' + - '6965' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:37 GMT + - Thu, 09 Apr 2026 18:47:10 GMT expires: - '-1' pragma: @@ -1853,7 +1482,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C7068B4439424EF39C5D21B0F1043902 Ref B: SYD281080706054 Ref C: 2026-09-11T02:15:37Z' + - 'Ref A: F0A0E77EC4B04C219DD1754DF3851567 Ref B: BN1AA2051012039 Ref C: 2026-04-09T18:47:10Z' status: code: 200 message: OK @@ -1871,23 +1500,23 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:05.197566Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:13.2890959+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:13.2891381+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1625' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:38 GMT + - Thu, 09 Apr 2026 18:47:12 GMT expires: - '-1' pragma: @@ -1901,7 +1530,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AE66BB0C6814499F9966AD7EAB4BAA21 Ref B: SYD281080707052 Ref C: 2026-09-11T02:15:38Z' + - 'Ref A: 62DA3A59ED6E421D83E1B1DB284C2A05 Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:47:12Z' status: code: 200 message: OK @@ -1921,15 +1550,15 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"2E7R9bJFCNbRlVEoyehditP3STiz6R4L0yA2hvAR5JACX6gbhxy6JQQJ99CIACMsfrFEqg7NAAACAZCRv42E"},{"name":"password2","value":"6uENhICU3OvgRMc0ptAZCIjHcm7MwFFdCQ0IoS7GbaZtLXy4KywyJQQJ99CIACMsfrFEqg7NAAACAZCRvVbe"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -1937,7 +1566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:40 GMT + - Thu, 09 Apr 2026 18:47:14 GMT expires: - '-1' pragma: @@ -1949,21 +1578,21 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westeurope/d3ea4de7-2517-4644-aa87-e26070e466a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/1e9666ab-a70e-4bf3-9af2-652d19b1fa19 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 6A73AA9B784B49B1B22AE8552AEFA9FC Ref B: SYD281080710060 Ref C: 2026-09-11T02:15:40Z' + - 'Ref A: 1BD9BEA6FE204FDF8268EBC21B5ADE2C Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:47:14Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "2E7R9bJFCNbRlVEoyehditP3STiz6R4L0yA2hvAR5JACX6gbhxy6JQQJ99CIACMsfrFEqg7NAAACAZCRv42E"}], + "***"}], "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, @@ -1983,35 +1612,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1180' + - '1176' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.9517993Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.9517993Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.4712961Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.4712961Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak cache-control: - no-cache content-length: - - '4342' + - '7032' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:45 GMT + - Thu, 09 Apr 2026 18:47:17 GMT expires: - '-1' pragma: @@ -2025,11 +1654,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/5d26bd85-d938-4d7b-8809-2f518c7c6e19 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/061d0192-b219-4035-9a3e-c1af6cf3a438 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 0CE9EE798E684833BFFC299D9267A79B Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:42Z' + - 'Ref A: A189481DB94A407DB8929E0724A41FAC Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:47:16Z' x-powered-by: - ASP.NET status: @@ -2049,26 +1678,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"InProgress","startTime":"2026-09-11T02:15:45.4680415"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"InProgress","startTime":"2026-04-09T18:47:17.7910038"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:47 GMT + - Thu, 09 Apr 2026 18:47:18 GMT expires: - '-1' pragma: @@ -2082,11 +1711,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/89649145-ed86-4bff-830d-1e6ab8dfaa4d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/16aaeb8c-db11-4833-9394-abfddce3617d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8FBC5905850D47339AA77297B2649A99 Ref B: SYD281080709060 Ref C: 2026-09-11T02:15:47Z' + - 'Ref A: 490FC5D3CE9A4741AEA0929C9F57313E Ref B: BN1AA2051014023 Ref C: 2026-04-09T18:47:19Z' x-powered-by: - ASP.NET status: @@ -2106,26 +1735,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"InProgress","startTime":"2026-09-11T02:15:45.4680415"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"InProgress","startTime":"2026-04-09T18:47:17.7910038"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:49 GMT + - Thu, 09 Apr 2026 18:47:22 GMT expires: - '-1' pragma: @@ -2139,11 +1768,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/1d8c9356-cc4c-4f32-b514-55f0b769e319 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/68c79fd9-e350-4db6-aeb9-c81c058032bb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F30AE5A5BE66438B93E4D70E93D408B2 Ref B: SYD281080708034 Ref C: 2026-09-11T02:15:50Z' + - 'Ref A: CA93D1416D2B49BA81278784CD13F4FB Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:47:23Z' x-powered-by: - ASP.NET status: @@ -2163,26 +1792,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"InProgress","startTime":"2026-09-11T02:15:45.4680415"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"InProgress","startTime":"2026-04-09T18:47:17.7910038"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:53 GMT + - Thu, 09 Apr 2026 18:47:26 GMT expires: - '-1' pragma: @@ -2196,11 +1825,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/418048fe-3bbc-4d05-b172-73f3330b6078 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/0c269764-8aa3-4575-9db6-f37c63f94756 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5801F001DE6847A1B4846C8974EE8D79 Ref B: SYD281080708062 Ref C: 2026-09-11T02:15:53Z' + - 'Ref A: E464FAE3A0AF48B89E67B66245D680EB Ref B: BN1AA2051014019 Ref C: 2026-04-09T18:47:27Z' x-powered-by: - ASP.NET status: @@ -2220,26 +1849,26 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d?api-version=2025-07-01&azureAsyncOperation=true&t=639246897462174359&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=tpuvixhcrw71kEfenimwL2hJbq9uh6fQp6ybzPG2-WaTk_lAPy-La37cr1OVAz9hXJbVitJDDQiCqk5_JT8pWGjmuM4R0BawxwC1mIM_PrdzMIA7QX4IanrByuWJNc5gavWGnVSSkxXLtJVHLyekmo4D5doiMsthTF_gEmFMDOgk7gdqWTAEl0l-zlCYBNc4oEcycOEF-jUuBz5_F0uD1WuhBaHRhc3hHrAYdADdd55qAYVdLvrc3PhwyIkICjU1izVsw1Ma85eISDdLtVAk9EU69sDuce_HLnQy42xKM5A7J5ta8-F_Gtr7RP6yoYB3vgA_4wNrRd7Htsp0rkaN-Q&h=dt1YWaKthWbRYhN4CHwNDSNTVhHlAa3tAG97bYwP27A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d?api-version=2025-07-01&azureAsyncOperation=true&t=639113572380025544&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=CgUkoxS8CKQZ3xvcUM8FGeuRsH4UoqeFtVmP6B0ryd5H3_jgwSIILmX7oswj91tAQTi1hjjHwcBF9byOzdF_5-9BsWm8t8-rUXOiQhkvL8b_Eqqv6pNGbKKfqqUdVJzR_cYoWPx7HB1z-o0mODGZTIgK1_16ckDbMyhkxqe-F0I8UQuPr4MkPWM88D6Tk_YIP3fDkUbD-d4iuUGyK9Un5Qed9RsdDODyi2-VcLo16bS90HapzCCGK5eMaq9znxlDsQlUdil8kxpEjzmvN9uFiANrl6ugs5sq0-yRFI107Ws9t9ZFNaHvjveJYWUZxrl0JVpg41ibvV4oVKL17hWQCA&h=nzXV4ZbCsVNdlVKXzqX7eWMkfmgTWk8AxR4hZpceVak response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappOperationStatuses/00f38c1e-cbf7-461e-bae5-4d1504c4d12d","name":"00f38c1e-cbf7-461e-bae5-4d1504c4d12d","status":"Succeeded","startTime":"2026-09-11T02:15:45.4680415"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/01de8603-72ea-4528-8f67-6ce1b829576d","name":"01de8603-72ea-4528-8f67-6ce1b829576d","status":"Succeeded","startTime":"2026-04-09T18:47:17.7910038"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:57 GMT + - Thu, 09 Apr 2026 18:47:30 GMT expires: - '-1' pragma: @@ -2253,11 +1882,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/30316660-d16c-4d84-992a-4f17c9884266 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/09d3b5e5-ed39-4b67-85cf-ff2baac82ee1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9EADE91C0B0F490CBD6B4854C21ADA1E Ref B: SYD281080705042 Ref C: 2026-09-11T02:15:56Z' + - 'Ref A: CB727FACB3604C56905DFBFD49AE4898 Ref B: BN1AA2051014011 Ref C: 2026-04-09T18:47:30Z' x-powered-by: - ASP.NET status: @@ -2277,27 +1906,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.9517993","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.9517993"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--qdeqynz","latestReadyRevisionName":"aca000002--qdeqynz","latestRevisionFqdn":"aca000002--qdeqynz.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.4712961","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.4712961"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--4vhgnzb","latestReadyRevisionName":"aca000002--4vhgnzb","latestRevisionFqdn":"aca000002--4vhgnzb.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '4978' + - '7665' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:58 GMT + - Thu, 09 Apr 2026 18:47:32 GMT expires: - '-1' pragma: @@ -2313,7 +1942,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 84A5AC6E20054778B3D1FD6418B14BB1 Ref B: SYD281080712060 Ref C: 2026-09-11T02:15:58Z' + - 'Ref A: 183AEA66A33E414FAC457B2D51A58568 Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:47:32Z' x-powered-by: - ASP.NET status: @@ -2333,7 +1962,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2344,11 +1973,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2356,33 +1983,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2390,31 +2011,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West @@ -2422,8 +2037,7 @@ interactions: Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2431,11 +2045,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2443,91 +2054,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2544,31 +2137,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2581,11 +2168,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2593,161 +2178,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39902' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:59 GMT + - Thu, 09 Apr 2026 18:47:35 GMT expires: - '-1' pragma: @@ -2761,7 +2282,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 875C70B25953414CABE42D7CC8B7DE54 Ref B: SYD281080706034 Ref C: 2026-09-11T02:15:59Z' + - 'Ref A: B88907AF46FF4AF989FD37E02737CDF9 Ref B: BN1AA2051014035 Ref C: 2026-04-09T18:47:35Z' status: code: 200 message: OK @@ -2779,27 +2300,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.9517993","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.9517993"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"latestRevisionName":"aca000002--qdeqynz","latestReadyRevisionName":"aca000002--qdeqynz","latestRevisionFqdn":"aca000002--qdeqynz.wittymoss-53fc495d.westus3.azurecontainerapps.io","customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.wittymoss-53fc495d.westus3.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.4712961","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.4712961"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--4vhgnzb","latestReadyRevisionName":"aca000002--4vhgnzb","latestRevisionFqdn":"aca000002--4vhgnzb.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '4978' + - '7665' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:00 GMT + - Thu, 09 Apr 2026 18:47:37 GMT expires: - '-1' pragma: @@ -2815,7 +2336,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5FAE397BD7574F0FAD72B9EAA42B8993 Ref B: SYD281080705062 Ref C: 2026-09-11T02:16:00Z' + - 'Ref A: EDB7A7F8DF85466B9DD62B0DFCC19AF1 Ref B: BN1AA2051014009 Ref C: 2026-04-09T18:47:36Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml index 14d64cdba6a..bc75eefaf54 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -24,11 +24,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -36,33 +34,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -70,40 +62,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -111,161 +96,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -273,161 +229,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:36 GMT + - Tue, 24 Mar 2026 05:58:06 GMT expires: - '-1' pragma: @@ -441,7 +333,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9889FF73128F4887A9005538C6959505 Ref B: SYD281080708025 Ref C: 2026-09-11T02:15:36Z' + - 'Ref A: 83B1E760B79941F5A809ABB7697DCB31 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:58:06Z' status: code: 200 message: OK @@ -459,27 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2074' + - '1726' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:37 GMT + - Tue, 24 Mar 2026 05:58:05 GMT expires: - '-1' pragma: @@ -495,7 +387,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1DF413E8A5F948C79213B808F8EB9A79 Ref B: SYD281080711031 Ref C: 2026-09-11T02:15:37Z' + - 'Ref A: 9FE8A553BACE41579EC8E06F4465CCE9 Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:58:06Z' x-powered-by: - ASP.NET status: @@ -516,7 +408,7 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -527,11 +419,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -539,33 +429,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -573,40 +457,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -614,161 +491,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -776,161 +624,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:38 GMT + - Tue, 24 Mar 2026 05:58:06 GMT expires: - '-1' pragma: @@ -944,7 +728,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7ED21E63909640BB838638D25C37F547 Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:38Z' + - 'Ref A: 4FE57FC526674F44AF549E8D36135AD3 Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:58:06Z' status: code: 200 message: OK @@ -963,27 +747,27 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","name":"env-westus3","type":"Microsoft.App/managedEnvironments","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T01:40:15.5481832","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T01:40:15.5481832"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":{"internal":false,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.Network/virtualNetworks/cli-test-aca-vnet/subnets/aca-infrastructure","dockerBridgeCidr":null,"platformReservedCidr":null,"platformReservedDnsIP":null},"defaultDomain":"wittymoss-53fc495d.westus3.azurecontainerapps.io","staticIp":"4.148.105.150","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/managedEnvironments/env-westus3/eventstream","customDomainConfiguration":{"customDomainVerificationId":"7704BF9C726C40851036C7DF6352B108656A79E277915EEA20DA0F7BA3F67BDA","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":"ME_env-westus3_client.env_rg_westus3_westus3","peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2074' + - '1726' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:39 GMT + - Tue, 24 Mar 2026 05:58:06 GMT expires: - '-1' pragma: @@ -999,7 +783,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A5243E9A0780419AAC989CEA89D1E89A Ref B: SYD281080706023 Ref C: 2026-09-11T02:15:38Z' + - 'Ref A: 6BCAE525F7B4459BBF436D0662204DBE Ref B: SJC211051204033 Ref C: 2026-03-24T05:58:07Z' x-powered-by: - ASP.NET status: @@ -1020,7 +804,7 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1031,11 +815,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1043,33 +825,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1077,40 +853,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1118,11 +887,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1130,91 +896,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1231,31 +979,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -1268,11 +1010,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -1280,161 +1020,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:40 GMT + - Tue, 24 Mar 2026 05:58:07 GMT expires: - '-1' pragma: @@ -1448,13 +1124,13 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8763799C00814C99A4F5E04F96ACDF1B Ref B: SYD281080709031 Ref C: 2026-09-11T02:15:40Z' + - 'Ref A: FAF3C3C2102D4857941D9535F01490B1 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:58:07Z' status: code: 200 message: OK - request: - body: '{"location": "West US 3", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3", + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": null, "triggerType": "manual", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1}, "scheduleTriggerConfig": null, "eventTriggerConfig": null, @@ -1472,36 +1148,35 @@ interactions: Connection: - keep-alive Content-Length: - - '849' + - '845' Content-Type: - application/json ParameterSetName: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.2646305Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061?api-version=2025-07-01&azureAsyncOperation=true&t=639246897463114887&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=d9PATaka5cSlrQpQ0h3EnMQ4src2_XA5JW-jr8ugmOYN9KaQqK_7k1liY7cm_KHh88TAKXw4KDfkdyS0nCM9nnjOizlt2h7VQOqLZGvMonwNfnoEbEavAwSJ9dbgihlollHGFwBtdFpO_5b62WJFlPnDsXJSB3lMaduM0pG1TV5CcgdkYnDwrtcQxEaouz2oHfSKZ8ewaXQnzW544GXTN26m57KyvpPVxoFcsRzYwAORAS8RKcA00GjfPkTIH379cLQWJSLw5UmTAVqtwLOCQQPPjH4u7KaA898aK00HQiIIYOhp43a3Kihd983GWsPvNN-APs1JqqoVGfxTwfADOQ&h=G3n-eU7OnwaHjsJ63nyjx25x-BfSb6gFw8la5uAvNVQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M cache-control: - no-cache content-length: - - '3844' + - '1331' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:45 GMT + - Tue, 24 Mar 2026 05:58:10 GMT expires: - '-1' pragma: @@ -1515,11 +1190,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/3d0ce7df-8d13-4308-b784-1b596c9fcb3f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/35154f62-1978-40ba-822f-e34d95c2ee7d x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 6B0A33BFE63E4AC5AAB633D14D15CF3B Ref B: SYD281080706036 Ref C: 2026-09-11T02:15:40Z' + - 'Ref A: 2A98C9C49BAA4AB08290BB04F4038388 Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:58:07Z' x-powered-by: - ASP.NET status: @@ -1540,26 +1215,25 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061?api-version=2025-07-01&azureAsyncOperation=true&t=639246897463114887&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=d9PATaka5cSlrQpQ0h3EnMQ4src2_XA5JW-jr8ugmOYN9KaQqK_7k1liY7cm_KHh88TAKXw4KDfkdyS0nCM9nnjOizlt2h7VQOqLZGvMonwNfnoEbEavAwSJ9dbgihlollHGFwBtdFpO_5b62WJFlPnDsXJSB3lMaduM0pG1TV5CcgdkYnDwrtcQxEaouz2oHfSKZ8ewaXQnzW544GXTN26m57KyvpPVxoFcsRzYwAORAS8RKcA00GjfPkTIH379cLQWJSLw5UmTAVqtwLOCQQPPjH4u7KaA898aK00HQiIIYOhp43a3Kihd983GWsPvNN-APs1JqqoVGfxTwfADOQ&h=G3n-eU7OnwaHjsJ63nyjx25x-BfSb6gFw8la5uAvNVQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061","name":"efb7c292-3649-4909-87f4-88eccc110061","status":"InProgress","startTime":"2026-09-11T02:15:44.7344553"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '283' + - '282' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:47 GMT + - Tue, 24 Mar 2026 05:58:10 GMT expires: - '-1' pragma: @@ -1573,11 +1247,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/511f9a8d-6894-471d-bd25-875bf92c091e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b7f0bc80-740a-4d8b-925b-4d47bb643dc6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 173DE3D6618A44BF88FE309B990920B2 Ref B: SYD281080712042 Ref C: 2026-09-11T02:15:47Z' + - 'Ref A: A4F9CA8EBA054874A4349F476B4087EE Ref B: BY1AA1072319031 Ref C: 2026-03-24T05:58:11Z' x-powered-by: - ASP.NET status: @@ -1598,18 +1272,17 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061?api-version=2025-07-01&azureAsyncOperation=true&t=639246897463114887&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=d9PATaka5cSlrQpQ0h3EnMQ4src2_XA5JW-jr8ugmOYN9KaQqK_7k1liY7cm_KHh88TAKXw4KDfkdyS0nCM9nnjOizlt2h7VQOqLZGvMonwNfnoEbEavAwSJ9dbgihlollHGFwBtdFpO_5b62WJFlPnDsXJSB3lMaduM0pG1TV5CcgdkYnDwrtcQxEaouz2oHfSKZ8ewaXQnzW544GXTN26m57KyvpPVxoFcsRzYwAORAS8RKcA00GjfPkTIH379cLQWJSLw5UmTAVqtwLOCQQPPjH4u7KaA898aK00HQiIIYOhp43a3Kihd983GWsPvNN-APs1JqqoVGfxTwfADOQ&h=G3n-eU7OnwaHjsJ63nyjx25x-BfSb6gFw8la5uAvNVQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationStatuses/efb7c292-3649-4909-87f4-88eccc110061","name":"efb7c292-3649-4909-87f4-88eccc110061","status":"Succeeded","startTime":"2026-09-11T02:15:44.7344553"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1617,7 +1290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:50 GMT + - Tue, 24 Mar 2026 05:58:13 GMT expires: - '-1' pragma: @@ -1631,11 +1304,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/7780f334-fee8-4068-81e8-896f283240b4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/50c4cc15-57ed-48c1-a844-317737629347 x-ms-ratelimit-remaining-subscription-global-reads: - - '16496' + - '16499' x-msedge-ref: - - 'Ref A: CD29EDB80A0C414E8071FD00D75B7E1E Ref B: SYD281080710034 Ref C: 2026-09-11T02:15:50Z' + - 'Ref A: BE236F084B0B4394A74941946295233E Ref B: SJC211051205027 Ref C: 2026-03-24T05:58:13Z' x-powered-by: - ASP.NET status: @@ -1656,27 +1329,83 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"Succeeded","startTime":"2026-03-24T05:58:09.9196862"}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, + 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:58:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/abf2851f-acad-442c-82f1-40ba686d412c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8EEE2B56E7AD43DA8B3F98C7005A0D63 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:58:16Z' + 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 --parallelism --replica-completion-count --image --cpu --memory + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.2646305"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3863' + - '1350' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:51 GMT + - Tue, 24 Mar 2026 05:58:16 GMT expires: - '-1' pragma: @@ -1692,14 +1421,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9E337C913C1A431EBEEFC1B14D794E99 Ref B: SYD281080707029 Ref C: 2026-09-11T02:15:51Z' + - 'Ref A: FACC70A2E96A4D579BBDC7230B96989D Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:58:16Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus3", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": true}}' headers: Accept: @@ -1711,29 +1440,29 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '90' Content-Type: - application/json ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:53.6281351+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:53.6281351+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:53.6281351Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456601+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:59 GMT + - Tue, 24 Mar 2026 05:58:24 GMT expires: - '-1' pragma: @@ -1745,13 +1474,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/6e4fb1ab-774c-435e-a74c-a2f3b96a3df2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/7f2a7b6a-c21d-4e09-a9ab-b2a9e2d6797c x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: 8FDB062EE97D4EBC9E5D9655E275A2D0 Ref B: SYD281080708034 Ref C: 2026-09-11T02:15:52Z' + - 'Ref A: 8F7996EF5799498F8FDC268A5001D21F Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:17Z' status: code: 200 message: OK @@ -1769,7 +1498,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -1780,11 +1509,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1792,33 +1519,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1826,40 +1547,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -1867,11 +1581,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -1879,91 +1590,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -1980,31 +1673,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2017,11 +1704,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2029,161 +1714,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:00 GMT + - Tue, 24 Mar 2026 05:58:25 GMT expires: - '-1' pragma: @@ -2197,7 +1818,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 07589EB47D434E4689697B6EA28D5571 Ref B: SYD281080708052 Ref C: 2026-09-11T02:16:01Z' + - 'Ref A: 77939CA83F664FB5B7818885C61BAC91 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:58:25Z' status: code: 200 message: OK @@ -2215,27 +1836,26 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:44.2646305"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3863' + - '1350' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:02 GMT + - Tue, 24 Mar 2026 05:58:25 GMT expires: - '-1' pragma: @@ -2251,7 +1871,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC4CCDB40FDE45D189B0148A2C1C212E Ref B: SYD281080709042 Ref C: 2026-09-11T02:16:02Z' + - 'Ref A: 2FFF2425312D41118FC671E78102B179 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:25Z' x-powered-by: - ASP.NET status: @@ -2273,7 +1893,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: @@ -2283,8 +1903,7 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -2292,7 +1911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:04 GMT + - Tue, 24 Mar 2026 05:58:26 GMT expires: - '-1' pragma: @@ -2306,13 +1925,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/fdf3e6d7-0eb3-49f5-865a-f1c30d619bec + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/2f039500-99e3-4fb7-a16a-67997ac0be85 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 67CE9760FADC4D14AC78144984A57662 Ref B: SYD281080706040 Ref C: 2026-09-11T02:16:03Z' + - 'Ref A: C3CBD52FCA3F4672A176CDA3B2E39F51 Ref B: BY1AA1072316029 Ref C: 2026-03-24T05:58:26Z' x-powered-by: - ASP.NET status: @@ -2332,21 +1951,21 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch6gzls5ymijax3ohlo4h7va4txufsjnrbnaud6tflfdgkhke/providers/Microsoft.ContainerRegistry/registries/clireg3l5cnycvqg6ymf","name":"clireg3l5cnycvqg6ymf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf6mjrsz7snf6pvhgsiffbpwmzuxmuezp5cteenh4shh4ujp3ey2ol3su4dekeoxpz/providers/Microsoft.ContainerRegistry/registries/containerappwe3veae2svp7","name":"containerappwe3veae2svp7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:24.3068569Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:24.3068569Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2mfgy7ipb44svaualywuydbzgr2daw5i4sujxmbw5p4or3xctapkzb55ryw24rqee/providers/Microsoft.ContainerRegistry/registries/acrw33ip5dhxrklxnsvq4xbl","name":"acrw33ip5dhxrklxnsvq4xbl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.197566Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.197566Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:53.6281351Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:53.6281351Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134Z"}}]}' headers: cache-control: - no-cache content-length: - - '6831' + - '3356' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:05 GMT + - Tue, 24 Mar 2026 05:58:26 GMT expires: - '-1' pragma: @@ -2360,7 +1979,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5FBC829595114EDAAF79CF44A6EE6E54 Ref B: SYD281080706054 Ref C: 2026-09-11T02:16:05Z' + - 'Ref A: 1735641CAEC74F1C9C8C8F5E35799BEF Ref B: SJC211051201045 Ref C: 2026-03-24T05:58:27Z' status: code: 200 message: OK @@ -2378,23 +1997,23 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:53.6281351+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:53.6281351+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-11T02:15:53.6281351Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456601+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:16:00.5456981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1628' + - '1595' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:07 GMT + - Tue, 24 Mar 2026 05:58:27 GMT expires: - '-1' pragma: @@ -2408,7 +2027,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 73781B5FBFCE4519965C45E68E19432A Ref B: SYD281080705040 Ref C: 2026-09-11T02:16:06Z' + - 'Ref A: 1E7F1F40570441B483D86D0D742ED390 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:58:27Z' status: code: 200 message: OK @@ -2428,15 +2047,15 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"},{"name":"password2","value":"2VacAwj44g9QzR0SJ3BsOJ1PuaGGATyrMdeg6EHRpw7m6OH0hpMlJQQJ99CIACMsfrFEqg7NAAACAZCRUsFx"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -2444,7 +2063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:08 GMT + - Tue, 24 Mar 2026 05:58:27 GMT expires: - '-1' pragma: @@ -2456,19 +2075,19 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/281f4a15-1238-4b0d-8c73-188aca24c6bd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/85885868-5b4b-4a86-8230-725bdf0bbaaa x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2BC59260B90544C4BFD309FF80F7DCFA Ref B: SYD281080706042 Ref C: 2026-09-11T02:16:07Z' + - 'Ref A: E342E2A0B6BB491B812C73E33605B0FB Ref B: SJC211051205011 Ref C: 2026-03-24T05:58:27Z' status: code: 200 message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}], + "value": "***"}], "registries": [{"server": "acr000003.azurecr.io", "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}}}' headers: @@ -2487,7 +2106,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -2497,18 +2116,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:09 GMT + - Tue, 24 Mar 2026 05:58:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897701628938&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZgdXCoKzxbZbxbuYjD_ZvkTeoKrhiCM7O8G_0YGi10lIwryx7ahI4-kEkeowoSOsToLe3n6KERgbJHSalAamCvw2Q8CjzR4dVVMlu19R1aljFAFV2nP3s8X4yIPtrcmdrnqRnLrIMZJECaktr6W_ANgTdgghBeOd0koXMkpB3DtoU8sn34cR2v4TEP4udKdIgL_q1KJ-L7HyLOfWhKw0iEaB4TwT_EVdZSG7BHSK_3xovAK8TCeXM7MpKOJq0mMGh5gM-O-2hRce6FNx0aIAtH1bUepjYUZNs4sBvj5ZnuEuDMdQMxhtU7elkPfTg34dUP8k4T-sLn3I4nJbyjPnjQ&h=iDsZBXhbPeR2uyBPd1QS_P6IjAsKFWoFmy7ZMJp08vA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ pragma: - no-cache strict-transport-security: @@ -2518,11 +2136,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/b6259cf4-69ae-4492-bfec-9e4dcb936239 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/8c5ae4d8-a6e6-4991-b2fd-c9d8e75525d2 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: BB33B60BA92A44188400852236C56E3A Ref B: SYD281080708036 Ref C: 2026-09-11T02:16:09Z' + - 'Ref A: B0D2853C22764F8E93A359A8F5418407 Ref B: SJC211051203037 Ref C: 2026-03-24T05:58:28Z' x-powered-by: - ASP.NET status: @@ -2542,9 +2160,9 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897701628938&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZgdXCoKzxbZbxbuYjD_ZvkTeoKrhiCM7O8G_0YGi10lIwryx7ahI4-kEkeowoSOsToLe3n6KERgbJHSalAamCvw2Q8CjzR4dVVMlu19R1aljFAFV2nP3s8X4yIPtrcmdrnqRnLrIMZJECaktr6W_ANgTdgghBeOd0koXMkpB3DtoU8sn34cR2v4TEP4udKdIgL_q1KJ-L7HyLOfWhKw0iEaB4TwT_EVdZSG7BHSK_3xovAK8TCeXM7MpKOJq0mMGh5gM-O-2hRce6FNx0aIAtH1bUepjYUZNs4sBvj5ZnuEuDMdQMxhtU7elkPfTg34dUP8k4T-sLn3I4nJbyjPnjQ&h=iDsZBXhbPeR2uyBPd1QS_P6IjAsKFWoFmy7ZMJp08vA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ response: body: string: '' @@ -2552,18 +2170,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:10 GMT + - Tue, 24 Mar 2026 05:58:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897711955848&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=KYFTe_4spXZ5RSYDLBZ5GDwi_c-qr-y2n6-b29fby_mXISPJD04vtkiT-pyWBkcb0DL25Ya-D7JHStxN1VMwJwHMjE-SnoNqz1JHIDYOz4yL5UZkkrgTeKo7LLWuB-eHzhLQoTXOL-fTj38pM5GBTP1UB__O56musbxmC4TvSKl3_GgoANw4wtxxcFW2i53V0C0z1PLDoXXLhAlIdQmuImujDbLQZo0J1mGw1AUNvJ-K1oItuc8x2TBSwF1Ax_YdcxpY7VqZddBgIad3iOPQw_8ZeswGv76XZnQhHgtJHx3-z1mGq1NS5L98hso2r9wPyri5hQRFNea6LES9etM-Gg&h=DPQ9KhLCrLvd8CR7afk3WaHL6w1w6EAa-xJ9ydljgQQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287103526622&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=RvVuBikV3PlFywK_KqHykM3IVIG24w9ln4rOEOo-Srs_aJntM0Njdgh9F633eZIPs7BJ_OHxJPmEKJjga7J1-e8F0Pe7yVWfRh2ezq3QzDPfeBwTzAftKCArNv7MkZePkPDlmdO9vFEbW3IdunuX4DFdwCDo0h9ARPQo8lK1A7spp9eX6SFx1orCJZedT1VCP2NrMsf8hH5woLFsELYp3a71aSacSrMmYOim2BB58zpcQJm9O4jyg0UTGDDJgcO-I6brjlgcWaUw8sIwnliFGcmk0ORNqXebAMYU0DvmVyTOoWjHTry-UoOBweHdf2YpgYWbGvsXrvNSgKw4jTyMkQ&h=bewZB2cYDExSd-GQEWDPHsgj8IhMBWMaB88S9_YexIs pragma: - no-cache strict-transport-security: @@ -2573,11 +2190,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/f090c420-1fe6-421b-b75f-21520b696409 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/1e4e98e8-4162-4681-ba7c-23de71c5fd6c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 02E1747694DF4C39AFA936245666A8E1 Ref B: SYD281080712036 Ref C: 2026-09-11T02:16:11Z' + - 'Ref A: 3D21BAAE48E04A5B81B700C74ED3C6C0 Ref B: SJC211051204053 Ref C: 2026-03-24T05:58:29Z' x-powered-by: - ASP.NET status: @@ -2597,27 +2214,26 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/282a652a-9a8e-436e-983f-637c80e6d63a?api-version=2025-07-01&t=639246897701628938&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZgdXCoKzxbZbxbuYjD_ZvkTeoKrhiCM7O8G_0YGi10lIwryx7ahI4-kEkeowoSOsToLe3n6KERgbJHSalAamCvw2Q8CjzR4dVVMlu19R1aljFAFV2nP3s8X4yIPtrcmdrnqRnLrIMZJECaktr6W_ANgTdgghBeOd0koXMkpB3DtoU8sn34cR2v4TEP4udKdIgL_q1KJ-L7HyLOfWhKw0iEaB4TwT_EVdZSG7BHSK_3xovAK8TCeXM7MpKOJq0mMGh5gM-O-2hRce6FNx0aIAtH1bUepjYUZNs4sBvj5ZnuEuDMdQMxhtU7elkPfTg34dUP8k4T-sLn3I4nJbyjPnjQ&h=iDsZBXhbPeR2uyBPd1QS_P6IjAsKFWoFmy7ZMJp08vA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3983' + - '1471' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:26 GMT + - Tue, 24 Mar 2026 05:58:45 GMT expires: - '-1' pragma: @@ -2631,11 +2247,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/2793eba2-1b45-4caf-ad6f-7c02488687e7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d0decb66-fae2-49f2-b24f-2bd196cef1a0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 795DDB7ED9664BA9A3AB3C2BECC09BC1 Ref B: SYD281080709023 Ref C: 2026-09-11T02:16:26Z' + - 'Ref A: 4F7ACFC661674CE78C3215D880097799 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:45Z' x-powered-by: - ASP.NET status: @@ -2655,7 +2271,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -2666,11 +2282,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2678,33 +2292,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2712,40 +2320,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -2753,11 +2354,8 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -2765,91 +2363,73 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, @@ -2866,31 +2446,25 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North @@ -2903,11 +2477,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -2915,161 +2487,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39885' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:27 GMT + - Tue, 24 Mar 2026 05:58:45 GMT expires: - '-1' pragma: @@ -3083,7 +2591,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C7C819B323FA4619ACE231B14F905D7F Ref B: SYD281080706034 Ref C: 2026-09-11T02:16:28Z' + - 'Ref A: 9345A4E3CE3E48C8BDFB65830B2E31A7 Ref B: SJC211051205023 Ref C: 2026-03-24T05:58:46Z' status: code: 200 message: OK @@ -3101,27 +2609,26 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3983' + - '1471' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:28 GMT + - Tue, 24 Mar 2026 05:58:46 GMT expires: - '-1' pragma: @@ -3137,7 +2644,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D347BE9EA81A4ADE89F6F0D08E54A30B Ref B: SYD281080707029 Ref C: 2026-09-11T02:16:28Z' + - 'Ref A: 3F1990142B3743B087D0FAE9F911FDF7 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:46Z' x-powered-by: - ASP.NET status: @@ -3157,7 +2664,7 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3168,11 +2675,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3180,33 +2685,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3214,40 +2713,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3255,161 +2747,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3417,161 +2880,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:30 GMT + - Tue, 24 Mar 2026 05:58:46 GMT expires: - '-1' pragma: @@ -3585,7 +2984,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1C37377B01B0490C853D480C2A4D94ED Ref B: SYD281080709054 Ref C: 2026-09-11T02:16:30Z' + - 'Ref A: 9F5E3DE138D14FF693115EBAFD1CB3E8 Ref B: BY1AA1072316060 Ref C: 2026-03-24T05:58:46Z' status: code: 200 message: OK @@ -3603,27 +3002,26 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3983' + - '1471' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:31 GMT + - Tue, 24 Mar 2026 05:58:47 GMT expires: - '-1' pragma: @@ -3639,7 +3037,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 69414B355D544B789E1E74598CBDE702 Ref B: SYD281080709034 Ref C: 2026-09-11T02:16:30Z' + - 'Ref A: 483DC18DF49C4FDAB2CD4D7D2E29ACD8 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:47Z' x-powered-by: - ASP.NET status: @@ -3659,7 +3057,7 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -3670,11 +3068,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3682,33 +3078,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -3716,40 +3106,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -3757,161 +3140,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -3919,161 +3273,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:32 GMT + - Tue, 24 Mar 2026 05:58:47 GMT expires: - '-1' pragma: @@ -4087,7 +3377,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 488241F6721A4C629F605CA80CDC9EA8 Ref B: SYD281080707031 Ref C: 2026-09-11T02:16:32Z' + - 'Ref A: 29E9F6AC05A341CDA65C83C50F3C1F87 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:48Z' status: code: 200 message: OK @@ -4105,27 +3395,26 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:09.5691407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3983' + - '1471' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:33 GMT + - Tue, 24 Mar 2026 05:58:47 GMT expires: - '-1' pragma: @@ -4141,7 +3430,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E3598C79A02F4C929CDB4E341688B72C Ref B: SYD281080712060 Ref C: 2026-09-11T02:16:33Z' + - 'Ref A: 0AC04F0F1BC3429D8B5C486D253A3ADD Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:48Z' x-powered-by: - ASP.NET status: @@ -4163,18 +3452,17 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -4182,7 +3470,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:34 GMT + - Tue, 24 Mar 2026 05:58:48 GMT expires: - '-1' pragma: @@ -4196,13 +3484,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/3324a25e-6886-409a-8135-addddd3bad5c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/e1c4ad97-9b1e-4f9c-b2b9-0febb4a943d9 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 26E49667F3D84B8686A24BE6E6320E9E Ref B: SYD281080706031 Ref C: 2026-09-11T02:16:34Z' + - 'Ref A: 5793764F5FA04C85ADE202AF0E08DD96 Ref B: SJC211051204017 Ref C: 2026-03-24T05:58:48Z' x-powered-by: - ASP.NET status: @@ -4210,7 +3498,7 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}], + "value": "***"}], "registries": [{"server": "acr000003.azurecr.io", "username": null, "passwordSecretRef": null, "identity": "system"}]}}, "identity": {"type": "SystemAssigned"}}' headers: @@ -4229,7 +3517,7 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -4239,18 +3527,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:38 GMT + - Tue, 24 Mar 2026 05:58:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246897988405550&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=aZf_EJYQXoSC6ZUL2-3lsPdL2g7Akd9a-bKGBg6bcBN6cSpzQxqe3YZaOGY9mGjmFDDAR4upDtncjfAVaaEOrZw8KLcwR2qHDdSEXDLoKfoD75ucf7fb2LSkPWQ6oWyOuY-NX90bXVI5TRWJN-mXJha8pY9D2aiQ9ABBj9eAvPf6K3l4YRseCY1xDANvtnYVfFsxH4H2eOCNYjOjB6Khs3c_vQjuwjD9ElzeosCB9DIAJzvIWDkRTa6OeW0vorYHgqpzHqT3Q7e6KGCSIavP2QZrPHmgTg18NpyAuqXQ7lmFJPz0BcF0cDiJu8ToiPhPR8_vid61CE3rho7_30z1NQ&h=RMgBpdt3hEGpgo8D0Gt3h7ZXSynR-0-vM5E4bFXwn8E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI pragma: - no-cache strict-transport-security: @@ -4260,11 +3547,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/444e9245-da96-49c1-b9e5-bdb1a6c4baa9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/46e78443-9d13-4bbb-9805-0521c3c2d385 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 9AAE18CFADD54DEF9CB409F324DA27B9 Ref B: SYD281080707060 Ref C: 2026-09-11T02:16:36Z' + - 'Ref A: 4F0D76C7EA6A4F52BB3D5628232DF735 Ref B: BY1AA1072315060 Ref C: 2026-03-24T05:58:49Z' x-powered-by: - ASP.NET status: @@ -4284,9 +3571,9 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246897988405550&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=aZf_EJYQXoSC6ZUL2-3lsPdL2g7Akd9a-bKGBg6bcBN6cSpzQxqe3YZaOGY9mGjmFDDAR4upDtncjfAVaaEOrZw8KLcwR2qHDdSEXDLoKfoD75ucf7fb2LSkPWQ6oWyOuY-NX90bXVI5TRWJN-mXJha8pY9D2aiQ9ABBj9eAvPf6K3l4YRseCY1xDANvtnYVfFsxH4H2eOCNYjOjB6Khs3c_vQjuwjD9ElzeosCB9DIAJzvIWDkRTa6OeW0vorYHgqpzHqT3Q7e6KGCSIavP2QZrPHmgTg18NpyAuqXQ7lmFJPz0BcF0cDiJu8ToiPhPR8_vid61CE3rho7_30z1NQ&h=RMgBpdt3hEGpgo8D0Gt3h7ZXSynR-0-vM5E4bFXwn8E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI response: body: string: '' @@ -4294,18 +3581,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:39 GMT + - Tue, 24 Mar 2026 05:58:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246898000898174&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=aBg_CNtoinoj359yFqz7bi3x-iOC0JOKgfJf50MBbvqUsRpyBni8kj6GH2B_tTWbSp_ZlA9ylcO7CdW68NPwDmgrDFKaiEDSXpsDXtqa5NVgO159kO4qjt-N6Nf2YYeN8QRuur_p8ExUZmVLpPW0tSoD-gWgrPyoCo0n6YJj0WhIOJ4f9IbXB4rPQFbrg5_AZOnK2_aMDkWtzf4JZqaAvs2z-rcKf1EDpAUNncWyuinFpMvPdzjS2W8DkaB11kKa1QTxpcT3agGCOK9P767z95kIttXjqz2KQAudjV0awg5SS5o0Ib-D1sFwkmGTpTttwDqrqbzxzzkjUUMurroOqw&h=3yK5CCrpyM9IUF2Ni11ZtPgPQOZ2bY9mWMiU5OG0YhM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287327256198&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=DtETtRBQza5x5JMluIsd2lT-C1jGtqH3MHO4vy__AWGMAXLTuv6a-kJpcoIoEz9WscOUCj0bdM2CzkfBibUkTuzipUxFbgmt6gaRBgjb2-r0kJo0K22iuUGM_Uw6oXJy41MxFTyvbNC6z_hRq82q2f3E1Bd-OZKPI9-sUliiJ-9TT5QfXsJY21k0KPDHrDhgEswUZKrFiFS3Mmzs43Ch0qEeZYXydiLntF9jAkHN01UMddPMPVzh9KQfi0YcusQhV9bCcJGDHqZ3rR3dNW8un91XwEQC7iP5V9Wn01MVqTyw1LjPC1T26JN1HY4na-mLd2Z986NDq2yzaWTtJ0PFSA&h=UvsTp-heqG4otJeuH6EbuT5UgzP7mUKsv-C_tS8Zxss pragma: - no-cache strict-transport-security: @@ -4315,11 +3601,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/d8e4a63a-ab76-4710-a9f0-d57248b872bc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a81dfa03-9ccf-4359-9060-9db59f8b5e27 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 56AC33D3D1244DC683124E72F2EC346C Ref B: SYD281080711031 Ref C: 2026-09-11T02:16:39Z' + - 'Ref A: 40C04B66EE3743DDBDB52DD3B7B64826 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:52Z' x-powered-by: - ASP.NET status: @@ -4339,27 +3625,26 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/d28d4a54-f0ff-49da-994a-1fa9d0c58364?api-version=2025-07-01&t=639246897988405550&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=aZf_EJYQXoSC6ZUL2-3lsPdL2g7Akd9a-bKGBg6bcBN6cSpzQxqe3YZaOGY9mGjmFDDAR4upDtncjfAVaaEOrZw8KLcwR2qHDdSEXDLoKfoD75ucf7fb2LSkPWQ6oWyOuY-NX90bXVI5TRWJN-mXJha8pY9D2aiQ9ABBj9eAvPf6K3l4YRseCY1xDANvtnYVfFsxH4H2eOCNYjOjB6Khs3c_vQjuwjD9ElzeosCB9DIAJzvIWDkRTa6OeW0vorYHgqpzHqT3Q7e6KGCSIavP2QZrPHmgTg18NpyAuqXQ7lmFJPz0BcF0cDiJu8ToiPhPR8_vid61CE3rho7_30z1NQ&h=RMgBpdt3hEGpgo8D0Gt3h7ZXSynR-0-vM5E4bFXwn8E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:38.0905575"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4042' + - '1530' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:55 GMT + - Tue, 24 Mar 2026 05:59:07 GMT expires: - '-1' pragma: @@ -4373,11 +3658,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/425ffff7-5d0b-4c2d-9691-f084b6b08dc4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/412c232f-34c0-4b87-a885-48c8d390731f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F97A56BEF44E4CB5B2DA9FB896EFD9CB Ref B: SYD281080706029 Ref C: 2026-09-11T02:16:55Z' + - 'Ref A: F106AEBB9399466197A234094714D8A0 Ref B: BY1AA1072317025 Ref C: 2026-03-24T05:59:07Z' x-powered-by: - ASP.NET status: @@ -4397,7 +3682,7 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -4408,11 +3693,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4420,33 +3703,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -4454,40 +3731,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -4495,161 +3765,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -4657,161 +3898,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:56 GMT + - Tue, 24 Mar 2026 05:59:07 GMT expires: - '-1' pragma: @@ -4825,7 +4002,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8F5A659189CC4E76B50DBA3645BED45F Ref B: SYD281080708042 Ref C: 2026-09-11T02:16:57Z' + - 'Ref A: 8874373CF6364ED4A6D928E68C222395 Ref B: SJC211051205027 Ref C: 2026-03-24T05:59:08Z' status: code: 200 message: OK @@ -4843,27 +4020,26 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:16:38.0905575"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '4042' + - '1530' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:58 GMT + - Tue, 24 Mar 2026 05:59:08 GMT expires: - '-1' pragma: @@ -4879,7 +4055,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EEC425608D164D92BA1E3CAD1D6C5B19 Ref B: SYD281080709031 Ref C: 2026-09-11T02:16:57Z' + - 'Ref A: 4BBD7BE8037947428F161BE1BC7D42B1 Ref B: BY1AA1072318029 Ref C: 2026-03-24T05:59:08Z' x-powered-by: - ASP.NET status: @@ -4901,18 +4077,17 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -4920,7 +4095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:59 GMT + - Tue, 24 Mar 2026 05:59:09 GMT expires: - '-1' pragma: @@ -4934,13 +4109,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/bb67c103-b359-4f20-badc-a8efe7f94411 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/b06d364c-d8ab-4171-87a5-ced62ff994e5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 493775B4947F41F5A9B002349CEB36B3 Ref B: SYD281080710029 Ref C: 2026-09-11T02:16:59Z' + - 'Ref A: 55DCD26E0B094165992D85DFDA153D77 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:59:09Z' x-powered-by: - ASP.NET status: @@ -4948,7 +4123,7 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"registries": [], "secrets": [{"name": - "acr000003azurecrio-acr000003", "value": "zQLo5e67UjJxoMOe6gfvlF8LSjKTT4h2L2EgDcwm4yIY9rtqD3WWJQQJ99CIACMsfrFEqg7NAAACAZCRNqwK"}]}}}' + "acr000003azurecrio-acr000003", "value": "***"}]}}}' headers: Accept: - '*/*' @@ -4965,7 +4140,7 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -4975,18 +4150,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:17:00 GMT + - Tue, 24 Mar 2026 05:59:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898214608610&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=KVemXHIlwfhit46XrFv5UBX2UVCBZqRucCE6ER6Flcjp99vcxhsN2B065tFxfJdKokv2h8LAwnz-pfqm6HqY1XDphuxW9aBhT1eM2RrexJEzZA_TldUGZ3AMwheZl8BbfZDdnNcs0dGef4CzI1Ynx_TASo1ObTveCXALKP-2kNh_BFPTVSvF6Q5XLQokXkE4VESC37oApwrZWJE9iJPhkbTI_ZapwH40J1P4VegTtR1VCZnaisQtCe5YXlx1xrVn8pIn0oulhCVhUifw2wwY3fUz-bU1qLtgMZR3wgoBL5yS0OgAS2MATP0_-UZBXiva2AGI3Nppad_5bctLDyA3uA&h=ccsNujl8VMmMfQv2-7n251INENUAMv4vQjhHrOU0wUM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM pragma: - no-cache strict-transport-security: @@ -4996,11 +4170,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/northeurope/8d104f3c-5d2f-46de-87a8-09ad5373863f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/c4c74df1-a1ef-4cec-bb76-6ccd5f62469c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 3D92325818FA46E2A8522784996F86FC Ref B: SYD281080711052 Ref C: 2026-09-11T02:17:00Z' + - 'Ref A: 8A8EDB2792AD4D15A19DC21C041680BF Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:59:09Z' x-powered-by: - ASP.NET status: @@ -5020,9 +4194,9 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898214608610&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=KVemXHIlwfhit46XrFv5UBX2UVCBZqRucCE6ER6Flcjp99vcxhsN2B065tFxfJdKokv2h8LAwnz-pfqm6HqY1XDphuxW9aBhT1eM2RrexJEzZA_TldUGZ3AMwheZl8BbfZDdnNcs0dGef4CzI1Ynx_TASo1ObTveCXALKP-2kNh_BFPTVSvF6Q5XLQokXkE4VESC37oApwrZWJE9iJPhkbTI_ZapwH40J1P4VegTtR1VCZnaisQtCe5YXlx1xrVn8pIn0oulhCVhUifw2wwY3fUz-bU1qLtgMZR3wgoBL5yS0OgAS2MATP0_-UZBXiva2AGI3Nppad_5bctLDyA3uA&h=ccsNujl8VMmMfQv2-7n251INENUAMv4vQjhHrOU0wUM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM response: body: string: '' @@ -5030,18 +4204,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:17:02 GMT + - Tue, 24 Mar 2026 05:59:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898227584703&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=NIHIli6Oqk-aUbNJBXq_C2jPZ8yage0YgVIShM-4CBuoCGk0XBntZYIg04MJDyjvu7ZLdkQifrEb0adhjD-Z7z4gbti5esC-LV7h_gaNsq-wbcImMxmVygorx-28MIYeQM7QRLyvBTzK99_8NWkFpqS1s_nn68Z3WVf77EikyaotsBnLelqLWdzd__aUXvK2KTCzfOm0oLpy0Qo6WWTF8cDHHF2u-n6g7qOVw7Ktfya3K6en-f89-9kJsy0n97PqDfboQCgfSlAFwfAJgcoFcmnAwd5OWmKb-XQqTrbNfLy6ioMQetfuQFQab9qd5on5GOZeR6-SpLtNFVFjT7Al7Q&h=9Bm3XlzoHdL2AVd7_UWi-Xj1yYnTCknpo22sKm0vaYM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287511768055&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=pMi2blXJDErgbE126YwivS3ju2BCeO_rSSG-qvMtikc5G1cMzlYVGkmt-MjxDN6YckUyTVz9eiWWjPhHUCLMhT9xraJ61HtyTtezMT85rNo6T4bkpls9LbKJeXxsC60EmWY6pVCu5fmCkZL9n5HVBkTBL2jIa4KDAVMVtJ8FTMbbm2bN6LD-aQ86c4HuFeQUPIL8BWkWHNyA3ng4bCj9C3b9Waur4F0w3xNK3xfcBbYamQOVJkblxUTch1N65-EA0dfpETib59TVqoeHvTx3u8l5oPnOb6Uj7eyRXIGb7PBuTGLmY3of0RWFnO1eRsDugb-9y8igBAr6D-BuSyouUw&h=Y-aaUB7EIEVRRoSQvo2GH0VNCvdZhKrSavPZFDxirVQ pragma: - no-cache strict-transport-security: @@ -5051,11 +4224,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/35e50155-e6d3-4762-b9d1-5d81af827b68 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/4a18ab5f-c2ad-4ba8-afcb-db8ddf36b5e9 x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: B1075CB2EAF948B8A8C995D044E845FC Ref B: SYD281080709060 Ref C: 2026-09-11T02:17:02Z' + - 'Ref A: 3F5722B396484561BC53A0ADD001CC9F Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:59:10Z' x-powered-by: - ASP.NET status: @@ -5075,27 +4248,26 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westus3/containerappsjobOperationResults/19333eda-ba64-4344-a438-f01f147f5fc8?api-version=2025-07-01&t=639246898214608610&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=KVemXHIlwfhit46XrFv5UBX2UVCBZqRucCE6ER6Flcjp99vcxhsN2B065tFxfJdKokv2h8LAwnz-pfqm6HqY1XDphuxW9aBhT1eM2RrexJEzZA_TldUGZ3AMwheZl8BbfZDdnNcs0dGef4CzI1Ynx_TASo1ObTveCXALKP-2kNh_BFPTVSvF6Q5XLQokXkE4VESC37oApwrZWJE9iJPhkbTI_ZapwH40J1P4VegTtR1VCZnaisQtCe5YXlx1xrVn8pIn0oulhCVhUifw2wwY3fUz-bU1qLtgMZR3wgoBL5yS0OgAS2MATP0_-UZBXiva2AGI3Nppad_5bctLDyA3uA&h=ccsNujl8VMmMfQv2-7n251INENUAMv4vQjhHrOU0wUM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:17:00.8826984"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3989' + - '1477' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:18 GMT + - Tue, 24 Mar 2026 05:59:26 GMT expires: - '-1' pragma: @@ -5109,11 +4281,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/3cb0032a-7d7b-4753-b89a-118b0005b64d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/aaada086-24c0-41bf-a483-f07ad8046a33 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7A3FAF6FB9E64E30807F1B5E9816442C Ref B: SYD281080709060 Ref C: 2026-09-11T02:17:18Z' + - 'Ref A: 6502C8A0333E4A0CA10E97706A2AB769 Ref B: BY1AA1072319054 Ref C: 2026-03-24T05:59:26Z' x-powered-by: - ASP.NET status: @@ -5133,7 +4305,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: @@ -5144,11 +4316,9 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5156,33 +4326,27 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada @@ -5190,40 +4354,33 @@ interactions: East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North Central US (Stage)","West US 2","North Europe","East US","East Asia","North Central US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway East","Japan East","Australia East","West Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea Central","South Africa North","South Central US","South India","UAE North","UK South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South","Malaysia West","Indonesia Central","Belgium Central","Chile - Central","Germany North","Jio India Central","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North @@ -5231,161 +4388,132 @@ interactions: East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Jio India - Central","Belgium Central","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","Malaysia West","Indonesia - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West @@ -5393,161 +4521,97 @@ interactions: West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Germany North","New Zealand - North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Germany North","New - Zealand North","Austria East","Mexico Central","UAE Central","Chile Central","Korea - South","Jio India Central","Belgium Central","Japan West","Australia Southeast","France - South","Jio India West","Spain Central","Italy North","Poland Central","Malaysia - West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Jio India West","Korea Central","Malaysia - West","North Europe","Norway East","Poland Central","South Africa North","South - Central US","South India","Spain Central","Switzerland North","Switzerland - West","UAE North","UK West","West Central US","West US 2","West US 3","Jio - India Central","Belgium Central","Chile Central","Germany North","Korea South","New - Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["North - Central US (Stage)","Sweden Central","East Asia","Australia East","North Europe","UK - South","Canada Central","Canada East","Mexico Central","North Central US","West - Central US","Central US","West US 2","Brazil South","France Central","Germany - West Central","Japan East","Japan West","Malaysia West","Indonesia Central","New - Zealand North","Austria East","Chile Central","Korea Central","Norway East","Poland - Central","South Africa North","Southeast Asia","South India","Spain Central","Switzerland - North","West US 3","West US","East US 2","Italy North","Central India","East - US","UAE North","South Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '49711' + - '39103' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:19 GMT + - Tue, 24 Mar 2026 05:59:26 GMT expires: - '-1' pragma: @@ -5561,7 +4625,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6699AAF733CD4EE4B7C31CB03994DBB9 Ref B: SYD281080712036 Ref C: 2026-09-11T02:17:19Z' + - 'Ref A: 9E03BC5C36644528B65F238E361EEF43 Ref B: BY1AA1072318054 Ref C: 2026-03-24T05:59:26Z' status: code: 200 message: OK @@ -5579,27 +4643,26 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.15 (Windows-11-10.0.26100-SP0) AZURECLI/2.90.0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"West - US 3","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:44.2646305","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:17:00.8826984"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_westus3/providers/Microsoft.App/managedEnvironments/env-westus3","workloadProfileName":"Consumption","outboundIpAddresses":["20.125.76.124","20.125.74.58","20.118.180.220","20.125.72.245","4.236.29.28","4.236.28.230","4.236.28.126","4.236.29.23","4.236.28.206","4.236.29.43","20.14.119.70","135.234.107.40","135.234.118.135","20.14.118.252","4.236.1.136","134.33.25.140","20.14.66.96","134.33.8.60","20.171.203.222","20.14.36.89","20.150.255.247","135.234.57.229","4.227.26.117","135.234.57.184","134.33.29.28","134.33.13.26","135.234.57.185","20.106.113.235","20.150.255.246","4.227.35.224","20.171.205.76","20.14.32.62","134.33.12.230","135.234.56.142","20.125.67.33","20.125.69.152","4.227.26.140","4.227.40.234","135.234.57.236","20.25.168.115","134.33.12.156","20.14.0.159","135.234.56.178","135.234.82.154","135.234.57.227","135.234.85.139","135.234.56.143","134.33.10.88","4.227.42.218","4.227.25.94","20.106.119.7","20.125.70.236","135.234.57.237","4.227.26.24","4.227.25.66","135.234.56.179","134.33.9.225","20.14.38.176","4.227.43.159","134.33.30.78","134.33.25.23","20.14.112.189","4.236.31.57","134.33.30.121","20.14.32.63","20.14.36.53","134.33.31.137","20.14.35.60","20.171.203.223","134.33.29.111","4.227.26.72","20.25.168.87","20.150.251.124","4.227.36.172","4.227.30.80","134.33.29.43","4.227.27.148","20.150.251.125","4.227.28.135","20.150.253.71","20.118.146.180","20.118.148.199","20.118.144.32","20.118.146.221","4.227.76.26","4.227.76.45","4.227.76.46","4.227.76.20","4.227.76.51","4.227.76.18","4.227.58.38","134.33.25.222","4.236.8.251","4.236.39.174","20.14.40.97","4.236.61.216","20.125.75.87","20.14.115.60","4.149.49.40","20.118.152.204","20.14.16.172","134.33.15.10","51.57.119.195","20.14.18.201","134.33.15.35","20.14.117.141","20.14.118.111","134.33.15.172","20.14.18.181","20.14.18.216","20.14.119.56","51.57.118.243","20.14.62.62","51.57.117.40","134.33.15.34","135.234.86.10","135.234.82.155","134.33.14.147","20.150.155.57","134.33.15.133","4.227.41.173","20.14.119.233","4.227.34.162","135.234.86.4","134.33.15.11","134.33.14.169","134.33.14.159","134.33.14.54","20.14.68.165","134.33.14.168","20.14.34.15","20.150.152.185","134.33.13.150","4.227.45.34","4.227.35.225","20.14.18.200","20.14.18.180","20.14.62.63","20.150.155.56","135.234.82.151","20.14.114.132","20.106.115.55","20.14.59.52","4.227.44.57","20.118.153.31","20.125.94.115","134.33.13.131","20.14.36.5","20.171.210.30","51.57.119.141","20.125.93.57","134.33.15.19","134.33.14.158","135.234.66.26","20.14.113.82","134.33.14.144","134.33.14.55","51.57.119.193","20.14.119.89","51.57.119.238","4.236.68.178"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://westus3.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"8de9b33f-667a-4c57-bb98-af45843c5ce6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3989' + - '1477' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:17:20 GMT + - Tue, 24 Mar 2026 05:59:27 GMT expires: - '-1' pragma: @@ -5615,7 +4678,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D8753A0EC2624AC289D010E356C01455 Ref B: SYD281080712036 Ref C: 2026-09-11T02:17:20Z' + - 'Ref A: 3CA920F256DE4A6B8C325E2C8BEA6282 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:59:27Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml index cacb942b4f6..112678c4913 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -26,21 +26,10 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -48,9 +37,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -58,9 +46,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -68,9 +55,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -78,9 +64,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -88,9 +73,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -98,63 +82,56 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -162,9 +139,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -172,9 +148,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -182,9 +157,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -192,18 +166,17 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '25101' + - '21796' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:33 GMT + - Fri, 25 Apr 2025 09:46:36 GMT expires: - '-1' pragma: @@ -217,7 +190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59C2A1C5453B445D8E9ED6F67F463109 Ref B: SYD281080705029 Ref C: 2026-09-11T02:13:33Z' + - 'Ref A: 14D668AA37F34CC99A069C2760C81EAE Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' status: code: 200 message: OK @@ -240,23 +213,23 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A13%3A34.5107025Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A46%3A40.4548437Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896147611769&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AGmFYFKZPdS_MiNmqqYiGeoJAVUOxngRR-N3v5BZX4s3AC5Pwz_mpxMYFViCvyFJMjXCuOTdFkwgyZELEPTPD4wuPSTOqfQZuDndr8LwcwuiEtyePsA3rKYpdRfZ17eZ-Ki-hUvmKFFxMeYcqRexsPJ6wIhh0rihkEc8VN3MNVO_5sdzy0fj4NdNrf4yM-w2te0EST3wMOOF8awgF7ezWWNvXCOctAfFQ6qdwJ2CY2L7Vx9LI6De39N-vYLLudA-44IqT5wwK0jJU736WjrI2NexetmlCR3sAQ9HDTbYGQeMUPiiOUtdqfQhB9oQA1CX-SfXqLWAaTmCWPm4RX1umQ&h=FGR8CIbqwJqL8tMPEX3vKYJNj-rxlxzBAlD12weUgU8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 cache-control: - no-cache content-length: - - '1029' + - '854' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:34 GMT + - Fri, 25 Apr 2025 09:46:39 GMT expires: - '-1' pragma: @@ -268,11 +241,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1d733a0e-b3f4-40a8-8326-9d710e6796a4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/612f6a2c-e464-4fcb-9b7c-63e8002da5ea x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' x-msedge-ref: - - 'Ref A: BC5C055E3E4D4AEFAC92BA796F1951DE Ref B: SYD281080705042 Ref C: 2026-09-11T02:13:33Z' + - 'Ref A: 4E6BB32AB61D41C0BC89F502B449B87E Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' status: code: 201 message: Created @@ -290,17 +263,17 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896147611769&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AGmFYFKZPdS_MiNmqqYiGeoJAVUOxngRR-N3v5BZX4s3AC5Pwz_mpxMYFViCvyFJMjXCuOTdFkwgyZELEPTPD4wuPSTOqfQZuDndr8LwcwuiEtyePsA3rKYpdRfZ17eZ-Ki-hUvmKFFxMeYcqRexsPJ6wIhh0rihkEc8VN3MNVO_5sdzy0fj4NdNrf4yM-w2te0EST3wMOOF8awgF7ezWWNvXCOctAfFQ6qdwJ2CY2L7Vx9LI6De39N-vYLLudA-44IqT5wwK0jJU736WjrI2NexetmlCR3sAQ9HDTbYGQeMUPiiOUtdqfQhB9oQA1CX-SfXqLWAaTmCWPm4RX1umQ&h=FGR8CIbqwJqL8tMPEX3vKYJNj-rxlxzBAlD12weUgU8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n - \ \"name\": \"MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896160090314&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=qGiHPAacphSlJQZFtwL9KtcHt8lqixnW53B5zljAfFeuqflbVEPjgQJF5KdrODNGmPQNWvKNIX8Bq0a-j-PTdoLeZEe8HqLynPLJ1SRe1qv38db0qHQ2EjVsDR5mnEq-32jIoWeUt7eOKXFZK2tP2DmRFTo69Tnj8tx0Xo5WyW4Q-i_P9ngTDkhHHfPlLEt-fGT_FD-hqVyBLolrB5fRwXEeLNHFghkebphTqfj8LdzQ1W2S1P0_ppF7X1SU3hgReCr6AvMkRUqouURQfe0vvtTdbD-5UgZJmkkth-f_jU1xTA4QjBop17_nrdbJlEMU68rdRdUyqTZcgyeubzt0zQ&h=HdllVPXSOLb-2SHEMfK4FoxFq3o5il7VkkcIy5mX04s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=2zlUjXyHWtAPTdhqW49DgbFj19nbk9feW1Dh7Dp6svWzzuoAgAnhjKGpiHxdjhjMNt4BhNDdI-XvV5rTn22jw5j0K5IuoXu8W2o5W9K01bbZ2PztIUILTQFh8eUYVorXzzpguoNjPJoYVoE6bIBYUbMybV2a9CWfYl9moAfCV-r4RMtl6vEFR8bZJ0mYHTb_XJmRBbzQmO1ZzKepXj8QKg-NzUXxeJB5dmbOZSLeP9YBGsTp4h3bXpsHdCfnd6bM-_UI3CmuEuQ5FtQkxvZtAZHBLOGhR7ly1rU0yxQJ45kW34TBb6_l3Ifz5bI-G75paduolswbv63azBcPaEdpug&h=McwwVis7Zsva-Yil-eN0EHJzXYcGpCxIbxW_GNcZ_w4 cache-control: - no-cache content-length: @@ -308,11 +281,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:13:35 GMT + - Fri, 25 Apr 2025 09:46:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896160246499&c=MIIHlTCCBn2gAwIBAgIRAPRMjwgFgYEmfefMzTACKKQwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTQwMDUxMjNaFw0yNzAyMDkwNjUxMjNaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwO_WpR6Xr2lz5oFVtaRK8FiZGg7b-PWeL-Dogy0Cr-qJhUgwo0Hqhe5nZmG2OL7c3CV71c0njXVt4nqBxWLM-CYPCPRB5c_xQ3lWFYnJFuP5lpJcW4uZXUHp8eZTQtInUyLcK0jXbihFpBBxuDm-xtr12Nkoqlx6yfZthAf7X6nB-Nuq26aPqupUCz6hZNjOtE7BUQY499BrTsag1LYCTzXxrkHU9figVwTEB45ZBG40HxC45VUtUdNGtwILcvy145pR4VtdCfskQErR2tLvJYujyFBPwEaJbCjjg2I1v7yWN6nrl1enYFSNx4MBskHhL6EQxWUAfo6IVyV85F9MoQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUUdq1KVdmsEox8BScI1WzBgBA700wHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS85MS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzkxL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvOTEvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAKcH3XHRFmCqmjLmxABqawQYyIEqlIbq0Ba_dNN6BRkjWSrxWZutW-VgnQV_hVg5p2AtqFKVXKbf9oTaSl3Skd60_jTB_UiVMwJQXe1Lqe_KvIxdSTigB2URtOmQbyJmVQ78A-PH__nQ3si9J4f4_0C8pfMN42X8eIofyFEcaNxOMslJaba_Ber-fVFYnl3Ble7fQL67IV004LBcHkBvnYh2Xdi1sJpCbVSWb8-URtUiV5cbz1KgImEEzn7YTGQksXJCsSxcrGKLboCmWsn8zaUbhd1gA8M4giY8jHxeVXMvNNISFWZYx4OJ5f-B9TGnvWZEGCnf-LAn1ed9ImLRvcA&s=OMaSzlGt8Ds21iHtWqOEi-_ypdZfNMSM7nvWfnWUk2iag6Wwcyae3CgT6rFFjTDfE9hOuAMUC8Nn4jp40bWVJH2VEMJGgRzkpyk09pXq0YG4AU2dPmnHuXWDyKE1-TuIvDK7QEZw8NhFZDxwAwpp6RVG_W4SqX4-_LJZwh21mp0Sy-fptpvnqQJlsRE2g9qmDJ8XEAossCx0V7y_cEmIDRTOBeez0qHnuyuz3YwqgiKHii_ZtLnbX2p8UTMmp_uv9XlOPPlJjxhZYwMZnsR5U8Ursh00F24lRcCkBUegqCUip_DAU_jOcDg82seAkNYjLkX4aSFwkvfsWVLuoRzOcg&h=JDHrvphEYQRSX45s99sDgTCtIl8Kq5pdoKQergYrj0k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=oAThIfmeJGp6mtK3Lby8ZpBGkH42KUrPX7Lbf-NMjstji4EE75XMiFab7VDChvfyw5pUls5uVg7tXY4QCpwp0MOYd-Yyjp-SNUbT65fDGUGIwBKGOiX925M1CyCgj4hQ0zm5PHGkXSLM6jculZAUc2T4I_JRPRprbHlR3_wGQMNVE8b27Nr0S6M243qCX-c4pu030ZsTTLL8B62Cb4fAxbZUZngDyXD6DImfNroox_XmW0WQDv1ck5nnZW3b1gp27SI8tHBI9V5GlTXaoA2uJw3GIXIffiXhlshlGuBjWMRgNwmE24Ewg1skL7ij6fG1xIFc_5_yUGUl8NZJjqYjpg&h=c4yFJvTp9RvgrTuYZftjBbEp9E6BEHcKeHTEmp79-pA pragma: - no-cache strict-transport-security: @@ -322,11 +295,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/6f1a71e0-9cd6-4519-8017-3e12a40858c6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/bbf057af-330e-47b4-8bd7-bfc1d6d2a347 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2FEE3D38BC344B889A1A8085265C7131 Ref B: SYD281080712031 Ref C: 2026-09-11T02:13:35Z' + - 'Ref A: 3DF9534822984AE1840E2174BF76141D Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:40Z' status: code: 200 message: OK @@ -344,13 +317,13 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=?api-version=2026-07-01&t=639246896147611769&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=AGmFYFKZPdS_MiNmqqYiGeoJAVUOxngRR-N3v5BZX4s3AC5Pwz_mpxMYFViCvyFJMjXCuOTdFkwgyZELEPTPD4wuPSTOqfQZuDndr8LwcwuiEtyePsA3rKYpdRfZ17eZ-Ki-hUvmKFFxMeYcqRexsPJ6wIhh0rihkEc8VN3MNVO_5sdzy0fj4NdNrf4yM-w2te0EST3wMOOF8awgF7ezWWNvXCOctAfFQ6qdwJ2CY2L7Vx9LI6De39N-vYLLudA-44IqT5wwK0jJU736WjrI2NexetmlCR3sAQ9HDTbYGQeMUPiiOUtdqfQhB9oQA1CX-SfXqLWAaTmCWPm4RX1umQ&h=FGR8CIbqwJqL8tMPEX3vKYJNj-rxlxzBAlD12weUgU8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n - \ \"name\": \"MjA0Nzs2ODdhMWYwMi03MWQ4LTQ2YTYtOTIxNS1iNjk4OWU0ODg5YmM=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -360,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:36 GMT + - Fri, 25 Apr 2025 09:47:41 GMT expires: - '-1' pragma: @@ -372,11 +345,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/92b112b9-b15b-4094-b098-90e323bf9ae5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/81c94ae3-b2ff-4707-b911-25038615fc05 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 55EDA61B75EC4C1198670AA7B3B59248 Ref B: SYD281080706042 Ref C: 2026-09-11T02:14:36Z' + - 'Ref A: 7170097FDA494F73AD92F49BDF7463EC Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:41Z' status: code: 200 message: OK @@ -394,21 +367,21 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A35.9858707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1063' + - '1010' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:38 GMT + - Fri, 25 Apr 2025 09:47:42 GMT expires: - '-1' pragma: @@ -422,7 +395,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 30BB2D6310554E998332AA42043562E3 Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:37Z' + - 'Ref A: 035D54B3255E499881922D63869FAB24 Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:42Z' status: code: 200 message: OK @@ -440,7 +413,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -453,21 +426,10 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -475,9 +437,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -485,9 +446,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -495,9 +455,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -505,9 +464,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -515,9 +473,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -525,63 +482,56 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -589,9 +539,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -599,9 +548,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -609,9 +557,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -619,18 +566,17 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '25101' + - '21796' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:39 GMT + - Fri, 25 Apr 2025 09:47:44 GMT expires: - '-1' pragma: @@ -644,7 +590,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DF19B2BBD44C4B61A4637C7E93BF6492 Ref B: SYD281080709036 Ref C: 2026-09-11T02:14:38Z' + - 'Ref A: C8CC86C422754D2E85AACB3BE44C3600 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:44Z' status: code: 200 message: OK @@ -662,21 +608,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A35.9858707Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1063' + - '1010' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:39 GMT + - Fri, 25 Apr 2025 09:47:45 GMT expires: - '-1' pragma: @@ -690,7 +636,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8C68D7BB0BC0497897D05F4D7F691214 Ref B: SYD281080711023 Ref C: 2026-09-11T02:14:39Z' + - 'Ref A: 1BC9E2B39D9245B4AC12CE4512CEB381 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' status: code: 200 message: OK @@ -712,21 +658,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A44.0150819Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1090' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:45 GMT + - Fri, 25 Apr 2025 09:47:48 GMT expires: - '-1' pragma: @@ -738,11 +684,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/e7d14647-0e9f-4fe2-92dd-20bb6c97df61 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/742d6299-3fda-4c5a-8cd6-3219cb597f5d x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' x-msedge-ref: - - 'Ref A: 734219389EAE4160A9F6B62571257B39 Ref B: SYD281080710031 Ref C: 2026-09-11T02:14:40Z' + - 'Ref A: BC2ABC64EC3D4A709A14A9CF271DD72A Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' status: code: 200 message: OK @@ -760,7 +706,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -773,21 +719,10 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -795,9 +730,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -805,9 +739,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -815,9 +748,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -825,9 +757,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -835,9 +766,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -845,63 +775,56 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -909,9 +832,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -919,9 +841,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -929,9 +850,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -939,18 +859,17 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '25101' + - '21796' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:45 GMT + - Fri, 25 Apr 2025 09:47:49 GMT expires: - '-1' pragma: @@ -964,7 +883,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0787E13C5C284B2798544791B5573093 Ref B: SYD281080705034 Ref C: 2026-09-11T02:14:46Z' + - 'Ref A: EAF88A5759614A35B5FE3F9D33A13C64 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' status: code: 200 message: OK @@ -982,21 +901,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A44.0150819Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1090' + - '1036' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:46 GMT + - Fri, 25 Apr 2025 09:47:50 GMT expires: - '-1' pragma: @@ -1010,7 +929,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A5AF0C8CCAE24F22808F5F03AFD2D8FB Ref B: SYD281080712036 Ref C: 2026-09-11T02:14:46Z' + - 'Ref A: 2FF7CDBE9BA54C8D8650ABCD6AF4CBDE Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' status: code: 200 message: OK @@ -1032,21 +951,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A49.7666068Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1073' + - '1019' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:50 GMT + - Fri, 25 Apr 2025 09:47:54 GMT expires: - '-1' pragma: @@ -1058,11 +977,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/7ef9baf3-e7f2-483d-b790-c930aa5df29a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a4a7e56f-0fb1-4688-a6e2-c38e6854950d x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' x-msedge-ref: - - 'Ref A: 4F2390CA50EC4B9F9AE11F0410A140C8 Ref B: SYD281080708062 Ref C: 2026-09-11T02:14:47Z' + - 'Ref A: CC58CC95D28E42E2AC5D7976BB206190 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:51Z' status: code: 200 message: OK @@ -1080,12 +999,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2026-09-11T02:13:28Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2025-04-25T09:46:33Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1094,7 +1013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:51 GMT + - Fri, 25 Apr 2025 09:47:54 GMT expires: - '-1' pragma: @@ -1108,7 +1027,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D947BCAD87E940C68B26A27ACB32D1EA Ref B: SYD281080710036 Ref C: 2026-09-11T02:14:52Z' + - 'Ref A: 82A00F91D7F44BB18BB3525F8E8419E2 Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' status: code: 200 message: OK @@ -1130,7 +1049,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: @@ -1144,7 +1063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:14:52 GMT + - Fri, 25 Apr 2025 09:47:58 GMT expires: - '-1' pragma: @@ -1160,13 +1079,13 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2182460308A3483BB8732111830A66D2 Ref B: SYD281080708052 Ref C: 2026-09-11T02:14:52Z' + - 'Ref A: 34E404966CEF472EA92E9DFD507E2DFD Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' status: code: 200 message: OK - request: body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"adminUserEnabled": - false}}' + false, "anonymousPullEnabled": false}}' headers: Accept: - application/json @@ -1177,29 +1096,31 @@ interactions: Connection: - keep-alive Content-Length: - - '94' + - '125' Content-Type: - application/json ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-11T02:14:54.7024172Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:02.4129227+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:02.4147569+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2025-03-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk cache-control: - no-cache content-length: - - '1661' + - '1499' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:02 GMT + - Fri, 25 Apr 2025 09:48:14 GMT expires: - '-1' pragma: @@ -1211,13 +1132,113 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4f7cc215-c7a5-4425-89a9-5feebb39bab8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f70e4cc0-badd-4f28-882f-df43beffd4c9 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 6C50257E88474AD49F2C9920E8BA7F21 Ref B: SYD281080710025 Ref C: 2026-09-11T02:14:54Z' + - 'Ref A: 4877C4F6775846EB9A76F6C528485FB7 Ref B: SEL221051503047 Ref C: 2025-04-25T09:47:59Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2025-03-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712960276721&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=3zeGk9stkwpg3-ppqYbu6bel9pbacXlOCJg96HPmtutzmgoCKelGq61Pcb1PDMGKJd21_FUyjkbrcoxyoc0tuuxx8QXcHKrJ7KYFIIyoAgRg6T-XGswAUJg4uSyFLBUbJrRkreHiQjhf0iCCvxaYZwrCAj6EMohm6RUjy3-u3DTPux0Egh-k2PmKzIuR2M9QjBmyvxBu8h3eA3MxY79JJD7FRb7m1NxZhLD4zCktaKtxb2xvTOGQBM3LzDKt5Q2NPXNiXVkPLtWmf8PZBLoklw4qSvUH2TvES-K3uslNHVFTFyx1B9LmasD_Lfu3IvZQ_93UxqtAy8FhBu7LIc57Ng&h=A8h3BkyhdqBQJDgyQo0Ku2W95H8ZkbtU_iG0rvI4ao0 + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/8be659ca-2e02-40d4-ab8a-7c10f7296cb3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 670E002249964473B58CBFC8A85BEAA6 Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:15Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + response: + body: + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + headers: + api-supported-versions: + - 2025-03-01-preview + cache-control: + - no-cache + content-length: + - '1500' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 461D93259576462D9DBF8E7E7DCCDB6F Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:16Z' status: code: 200 message: OK @@ -1235,21 +1256,30 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/magic","name":"magic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-06-22T11:10:31.8052196Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-06-22T11:10:31.8052196Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testrega5vlaumfqu3em","name":"testrega5vlaumfqu3em","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:49:46.7965732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:49:46.7965732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/testreg2ldpdbggiutma","name":"testreg2ldpdbggiutma","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:50:07.2133212Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:50:07.2133212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-zone-diag-20260910-194928/providers/Microsoft.ContainerRegistry/registries/acrzonediagold3f29570197","name":"acrzonediagold3f29570197","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T09:57:17.3282581Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T09:57:17.3282581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubyrfpxkxe3smcq7j7pic","name":"sourceregistrysamesubyrfpxkxe3smcq7j7pic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:38:14.5006025Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:38:14.5006025Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubt34udkppkxdfwcrl6pv","name":"sourceregistrysamesubt34udkppkxdfwcrl6pv","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:46:26.0472125Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:46:26.0472125Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubam4gtwopgrmwuxtu2j7","name":"sourceregistrysamesubam4gtwopgrmwuxtu2j7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T10:38:54.4465095Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T10:38:54.4465095Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgori6j3qbsh76bi55fppyvpgse225t6njlfd3ynkwxas5ipxjzqwwvqexnr7u2coni/providers/Microsoft.ContainerRegistry/registries/acrbdm2ci64i3lpdam37v6qk","name":"acrbdm2ci64i3lpdam37v6qk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:35.1097849Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:35.1097849Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2xvakcounr3usdq6lekshzaaw44j4cpg2cucabmy6tbpogidep3pge6nt3g7g3ey/providers/Microsoft.ContainerRegistry/registries/acrjrhsylrlc3qevqmmgrrcf","name":"acrjrhsylrlc3qevqmmgrrcf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:13:38.1350884Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:13:38.1350884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcabmce7qfubvuuhsnfb6hkabqqmm64kitarv4jlhcpbg5cqpl4jvgao5gik6mka52/providers/Microsoft.ContainerRegistry/registries/acrmlzxrjet5l5zxtodf6prs","name":"acrmlzxrjet5l5zxtodf6prs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:34.1708281Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:34.1708281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsddnecmpcbjb25f6bc2buwidbqrcmp7xkwcy2fezmxfkkv75nxav5mwidnbpqtuq/providers/Microsoft.ContainerRegistry/registries/containerapp3lfto542omn5","name":"containerapp3lfto542omn5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:14.6512244Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:14.6512244Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/huanglitestcanary","name":"huanglitestcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg1","name":"huanwucanaryreg1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/agentpoolcanary2","name":"agentpoolcanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg2","name":"huanwucanaryreg2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwueastus2euap01","name":"huanwueastus2euap01","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ctest/providers/Microsoft.ContainerRegistry/registries/cidregistry","name":"cidregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-04-27T17:47:38.6648741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-04-27T17:48:14.204558Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msearch/providers/Microsoft.ContainerRegistry/registries/msearch1","name":"msearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-17T20:22:10.5860463Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-17T20:22:10.5860463Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/ACRSoftDelete","name":"ACRSoftDelete","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-25T14:52:27.3960954Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:52:05.6107964Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/HustroudRealCanary","name":"HustroudRealCanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-18T17:44:09.5117757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-19T15:45:02.6902047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch","name":"johshacrmetadatasearch","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:10:10.212306Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:10:10.212306Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ptcBrownbag","name":"ptcBrownbag","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T15:58:17.8406846Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T15:58:17.8406846Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch1","name":"johshacrmetadatasearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:56:17.811156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:56:17.811156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadataUnitTest","name":"metadataUnitTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-12T17:24:53.9169276Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T21:12:45.4115208Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadatatestregistry","name":"metadatatestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-18T18:27:11.2513411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-18T18:27:11.2513411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/wus2test","name":"wus2test","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-24T23:10:32.9424682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-24T23:10:32.9424682Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ContainerRegistryMetrics","name":"ContainerRegistryMetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"87d7f6ef-5c58-4f3b-af9c-0cf7c6feee31","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-04T16:26:03.6327251Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-30T19:48:51.5345767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wju/providers/Microsoft.ContainerRegistry/registries/wjutasktest","name":"wjutasktest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-17T04:46:48.6292944Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-17T04:46:48.6292944Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arc-demo-backup/providers/Microsoft.ContainerRegistry/registries/arcdemobackupregistry","name":"arcdemobackupregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-25T16:42:21.3555381Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-25T16:45:58.9778337Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cav2-e2e-loadtest/providers/Microsoft.ContainerRegistry/registries/cav2e2e","name":"cav2e2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-28T01:05:19.8384666Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-28T01:05:19.8384666Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/devcabarker","name":"devcabarker","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-10T21:18:26.7436104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-10T21:18:26.7436104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-acr23oct24cp4/providers/Microsoft.ContainerRegistry/registries/acr23oct24cp4","name":"acr23oct24cp4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-23T00:21:35.2239266Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-23T00:21:35.2239266Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-bcdr-testing/providers/Microsoft.ContainerRegistry/registries/acrbcdrcanary","name":"acrbcdrcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T19:03:56.0674605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T19:03:56.0674605Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest21feb25/providers/Microsoft.ContainerRegistry/registries/khallcmktest21feb25cr","name":"khallcmktest21feb25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"a6494d55-348c-4a6b-b0bf-86e66b3b1c34","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest21feb25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest21feb25":{"principalId":"33e30c7c-2af5-47c3-b727-c300612a6bd3","clientId":"d9d9a689-7762-4854-8ab1-5e80c6cbd318"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:30:43.9875765Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:27:28.123178Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeyclitestacr","name":"zoeyclitestacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-01T00:53:21.8364822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-01T00:53:21.8364822Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistry","name":"jumboregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-07T19:33:43.6103413Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-28T18:08:23.8862902Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistryv2","name":"jumboregistryv2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-26T18:27:08.098728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-26T18:46:43.1105234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistrytest/providers/Microsoft.ContainerRegistry/registries/jumboregistrytest","name":"jumboregistrytest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-16T16:26:43.942495Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-21T22:02:05.7559949Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry60tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry60tb","name":"jumboregistry60tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-26T23:36:59.9432804Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-26T23:36:59.9432804Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry40tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry40tb","name":"jumboregistry40tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-15T23:21:22.6561217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-15T23:21:22.6561217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/helmdemo/providers/Microsoft.ContainerRegistry/registries/helmdemo","name":"helmdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/TELEPORTCAPSTEST","name":"TELEPORTCAPSTEST","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-12T23:27:12.0941403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-12T23:28:06.1559209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/teleportmetricstest","name":"teleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-10T00:23:36.0112689Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-30T00:48:30.8799876Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CanaryTesting/providers/Microsoft.ContainerRegistry/registries/Testing2","name":"Testing2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T23:22:51.5381198Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T23:24:37.9845219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resh-rg/providers/Microsoft.ContainerRegistry/registries/allaboutacrmetrics","name":"allaboutacrmetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-03T17:33:34.0668762Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-01T23:30:31.3238267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/dpteleportmetricstest","name":"dpteleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-22T22:25:33.9482191Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-22T22:25:33.9482191Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshtokensandscopemaps/providers/Microsoft.ContainerRegistry/registries/johshtokensandscopemaps","name":"johshtokensandscopemaps","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-07T23:00:35.3714024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-07T23:00:35.3714024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-acr-0425/providers/Microsoft.ContainerRegistry/registries/joshbaunachcr0425","name":"joshbaunachcr0425","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-25T21:22:22.9789133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-25T21:23:46.6667423Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zaihaotest/providers/Microsoft.ContainerRegistry/registries/yzhonpremtest","name":"yzhonpremtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T04:47:53.6558862Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T04:47:53.6558862Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-avtakkar-test/providers/Microsoft.ContainerRegistry/registries/avtakkarcuseuap","name":"avtakkarcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-14T20:31:16.8985248Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T17:27:33.1500508Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jasminetest/providers/Microsoft.ContainerRegistry/registries/jtcuseuap","name":"jtcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-22T02:10:13.641539Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-22T02:10:13.641539Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteventrivy","name":"transteventrivy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-30T21:34:16.8134465Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-30T21:34:16.8134465Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl","name":"transtevendnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-05T23:54:28.5278572Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-05T23:54:28.5278572Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteveneg","name":"transteveneg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-10T03:14:23.9929123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-10T03:14:23.9929123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl3","name":"transtevendnl3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-16T23:41:13.5929237Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-16T23:41:13.5929237Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl4","name":"transtevendnl4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"jioindiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-17T23:09:08.7328512Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-17T23:09:08.7328512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/khallcmksitest/providers/Microsoft.ContainerRegistry/registries/khallcmksitestcr","name":"khallcmksitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"principalId":"ed54f96d-dcec-4858-8961-c187ef371ea1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest":{"principalId":"4ef86bc3-acd0-4d8f-ac7f-0fb89ee9dd9c","clientId":"714c506c-c785-4137-91d1-6b30d94ba869"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-mi-khallcmksitest2":{"principalId":"b8fe8636-2dd5-433a-ac06-9844b015200f","clientId":"e11be5d2-ef82-478f-a47e-3a11e74420db"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:40:25.1585115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-hallcssitest/providers/Microsoft.ContainerRegistry/registries/hallcssitestcr","name":"hallcssitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T02:45:10.4252719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T02:45:10.4252719Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcstest21feb/providers/Microsoft.ContainerRegistry/registries/khallcstest21febcr","name":"khallcstest21febcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcstest21feb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcstest21feb":{"principalId":"55ff7d39-c75c-477c-9ad3-f8498a796069","clientId":"4ad31b06-31e7-4e12-b3d4-1b50dcb308a8"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T14:44:11.7684838Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T14:44:11.7684838Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencopa","name":"transtevencopa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T22:08:27.2769645Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T22:08:27.2769645Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencsscbugbash","name":"transtevencsscbugbash","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-07T00:09:08.1470686Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-07T00:09:08.1470686Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnltest","name":"transtevendnltest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T23:47:19.0980968Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T23:47:19.0980968Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyindexingcheck","name":"esreyindexingcheck","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-03T22:48:02.6111531Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T22:48:02.6111531Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyptc","name":"esreyptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T19:14:18.4005356Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T19:14:18.4005356Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegbatestuksouth/providers/Microsoft.ContainerRegistry/registries/mabelcruksouth","name":"mabelcruksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:24:24.9406258Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:24:24.9406258Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangliregor1/providers/Microsoft.ContainerRegistry/registries/huangliregor1","name":"huangliregor1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-11-12T22:31:43.4444409Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T22:31:43.4444409Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoacr","name":"trisavoacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:41:15.6967317Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T19:15:48.3712479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoscus","name":"trisavoscus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:49:13.3076715Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-14T17:50:36.9332722Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedieus2euap","name":"mabenedieus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-14T18:27:49.7947511Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T18:29:51.7091925Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedicuseuap","name":"mabenedicuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T18:16:40.5262072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T18:16:40.5262072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/artifactcache-loadtesting/providers/Microsoft.ContainerRegistry/registries/ptcloadtesteus2","name":"ptcloadtesteus2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T16:11:07.1449316Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T16:11:38.3226794Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vlintestrgcus/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0923","name":"vlintestregistry0923","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","createdByType":"Application","createdAt":"2024-09-23T05:55:37.3474352Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-23T05:57:23.6489466Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest25/providers/Microsoft.ContainerRegistry/registries/khallcmktest25cr","name":"khallcmktest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"967a4a89-ddf9-44ba-91de-bb7fe045ccf6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest25":{"principalId":"89e91518-6221-4e74-a94b-94c243dddd91","clientId":"66642bf7-8f88-4e81-acd3-c76f67771dc7"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:06:32.7263644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T13:12:54.2277014Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reshrg/providers/Microsoft.ContainerRegistry/registries/reshregistry","name":"reshregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/huanglitest2","name":"huanglitest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T00:35:02.358293Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T00:35:02.358293Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayCR","name":"grayCR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-27T18:48:50.2457782Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry2","name":"huanwuregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry","name":"huanwuregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graycuseuap","name":"graycuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/HuangliRegistry","name":"HuangliRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/toddysm-connected-registry-test/providers/Microsoft.ContainerRegistry/registries/tsmconnectedregistrye2e","name":"tsmconnectedregistrye2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{"Application":"Connected + ACR","Owner":"Toddy Mladenov","OwnerAlias":"memladen"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-12-19T00:19:43.4580083Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-12-19T00:19:43.4580083Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acronpremdemo/providers/Microsoft.ContainerRegistry/registries/acronpremdemo","name":"acronpremdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-07T21:07:11.9486427Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-07T21:07:45.1921076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graytestaudit","name":"graytestaudit","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-14T00:16:03.8901815Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-14T00:16:03.8901815Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acrbuildtest/providers/Microsoft.ContainerRegistry/registries/acrbuildtest","name":"acrbuildtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-07-21T19:06:09.085878Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-07-21T19:07:50.9613994Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/usilwal-jenkins-new/providers/Microsoft.ContainerRegistry/registries/usilwalaks","name":"usilwalaks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-05-12T20:31:55.4138937Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:31:55.4138937Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jenkins-eus-test/providers/Microsoft.ContainerRegistry/registries/jenkinsclusteracr","name":"jenkinsclusteracr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlppepremium","name":"luisdlppepremium","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-21T17:52:12.2228993Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-21T17:57:50.9700404Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpptc","name":"luisdlpptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"norwaywest","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-03T18:08:13.5955085Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T18:16:12.4031384Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ratify/providers/Microsoft.ContainerRegistry/registries/ratifystaging","name":"ratifystaging","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-27T18:59:25.1969543Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-27T19:05:21.9181726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchweu","name":"metadatasearchweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:36:53.0035159Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:12.1766743Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchwcus","name":"metadatasearchwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:37:59.1788133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:19.8798611Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/msrcreproeus","name":"msrcreproeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T23:53:23.5651827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T23:53:23.5651827Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-dev/providers/Microsoft.ContainerRegistry/registries/joshbaunach","name":"joshbaunach","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-22T21:55:17.6013429Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T21:57:42.8457726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/raymsrcrepro","name":"raymsrcrepro","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T00:18:38.559845Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T00:18:38.559845Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mcr/providers/Microsoft.ContainerRegistry/registries/mcreastus","name":"mcreastus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-02T23:50:36.9325308Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-02T23:54:56.5161962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-0314/providers/Microsoft.ContainerRegistry/registries/joshbaunach0314","name":"joshbaunach0314","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-14T17:02:53.5065769Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-14T17:04:59.4400271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxprivate","name":"yxprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-30T22:44:41.632583Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-30T22:44:41.632583Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/demobackup","name":"demobackup","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-02T23:22:15.1018324Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-02T23:22:15.1018324Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxacr","name":"yxacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T03:41:56.7708255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T03:41:56.7708255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05061/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05061","name":"joshbaunacharc05061","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T15:47:01.800294Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T15:48:08.5316016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/acrprivateyx","name":"acrprivateyx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-15T16:33:49.5047405Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-15T16:33:49.5047405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05161/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05161","name":"joshbaunacharc05161","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-16T21:33:46.3576779Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-16T21:34:21.2790753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayuks","name":"grayuks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-29T20:26:53.7511383Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-29T20:26:53.7511383Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/transtevenarc","name":"transtevenarc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:23:04.7415277Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:23:46.0615176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/connectedregistrypatrick","name":"connectedregistrypatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:45:48.7672127Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:45:48.7672127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegba/providers/Microsoft.ContainerRegistry/registries/mecr1","name":"mecr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T20:29:22.379623Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T20:29:22.379623Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gildardog-rg/providers/Microsoft.ContainerRegistry/registries/gildardogdev","name":"gildardogdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T09:17:52.9777011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T20:24:21.2354751Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/brett-test/providers/Microsoft.ContainerRegistry/registries/bbartifactsynctest","name":"bbartifactsynctest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:12.337382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:12.337382Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpcanary","name":"luisdlpcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:47.6991576Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:47.6991576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpuksouth","name":"luisdlpuksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:05:23.628535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:05:23.628535Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpwestcentralus","name":"luisdlpwestcentralus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:19:21.7368016Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:19:21.7368016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testnotation","name":"testnotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T02:38:59.8279972Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-15T02:34:35.9797209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus","name":"yuaneus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-15T23:15:28.9453055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-15T23:20:48.2718399Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus2euapbasic","name":"yuaneus2euapbasic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-14T21:34:01.1464029Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-14T21:34:01.1464029Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxwus","name":"yxwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-16T19:59:48.2279105Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-16T19:59:48.2279105Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivacr","name":"devdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/azurethepolarbear","name":"azurethepolarbear","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vscode-docker-testing/providers/Microsoft.ContainerRegistry/registries/rbacExtensionTest","name":"rbacExtensionTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivgeo","name":"devdivgeo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/theRegistryisnew","name":"theRegistryisnew","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/Tutorials","name":"Tutorials","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RMResourceGroup/providers/Microsoft.ContainerRegistry/registries/Resh94ACR","name":"Resh94ACR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivdemo","name":"devdivdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/hellodevdivacr","name":"hellodevdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupdiffsub/providers/Microsoft.ContainerRegistry/registries/sourceregistrydiffsub","name":"sourceregistrydiffsub","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr3","name":"yxcr3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:12:22.6033775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:13:33.9546255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr2","name":"yxcr2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:00:21.3457265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:03:44.6157205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr1","name":"yxcr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T19:03:08.0825984Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T19:03:08.0825984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmprod","name":"testhelmprod","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-29T12:18:53.659893Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-29T12:19:25.0515213Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem","name":"yxonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-11T20:12:51.5854546Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-11T20:14:55.834411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmpatrick","name":"testhelmpatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-22T04:15:05.0977003Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-22T04:15:27.9518052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem2","name":"yxonprem2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-27T16:55:10.4906423Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-27T16:59:24.3424797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/patricknotation","name":"patricknotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-16T03:02:45.3396713Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-16T03:03:43.5825248Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcanarydebug","name":"yxcanarydebug","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-21T19:46:44.1756124Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-21T19:47:40.638082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxiaks/providers/Microsoft.ContainerRegistry/registries/yxcloudacr","name":"yxcloudacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-11T23:19:36.6342132Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-11T23:20:12.2600301Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akashsinghaltest/providers/Microsoft.ContainerRegistry/registries/aksinghaleus2euap2","name":"aksinghaleus2euap2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T22:16:30.4586467Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T22:16:30.4586467Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubu4buovf5na6xfoygbjw","name":"sourceregistrysamesubu4buovf5na6xfoygbjw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T21:10:31.12671Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T21:10:31.12671Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubpoouc6tklrm3snn73y3","name":"sourceregistrysamesubpoouc6tklrm3snn73y3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T21:41:02.3475275Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T21:41:02.3475275Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubrz25vnt4slxyfq42jx7","name":"sourceregistrysamesubrz25vnt4slxyfq42jx7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T22:18:16.3452947Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T22:18:16.3452947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwzpffqgmi4eydjmwunl","name":"sourceregistrysamesubwzpffqgmi4eydjmwunl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-18T03:01:36.4012867Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-18T03:01:36.4012867Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub7elwwwifzkkgwhvwhtm","name":"sourceregistrysamesub7elwwwifzkkgwhvwhtm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:05:01.3708772Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:05:01.3708772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubimgk2cqqibwocjojtni","name":"sourceregistrysamesubimgk2cqqibwocjojtni","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:07:40.9669138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:07:40.9669138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ContainerRegistry/registries/testregpgo2cjuu4xoc7","name":"testregpgo2cjuu4xoc7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityj7akfitg":{"principalId":"a1635a0f-f142-4e13-860a-623b49bf3ffd","clientId":"48a16b2e-b250-4fdf-8346-2f74431fc852"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T22:14:04.5494966Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T22:14:17.0480984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj64s5relsjotn7yo7bh6373g5ozowjpbeiy3uajccrmdrc7bcly27pijwhvufyizw/providers/Microsoft.ContainerRegistry/registries/cliregvr5phgmvzof4xk","name":"cliregvr5phgmvzof4xk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T17:41:40.1835358Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T17:41:40.1835358Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23oq6kjjqvid2ar2nqaguhubqbivpxl5gy576g5k32rv2adc7l5avwpesnmtsppwr/providers/Microsoft.ContainerRegistry/registries/cliregb5s7iwomh6hgou","name":"cliregb5s7iwomh6hgou","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:01:55.9102859Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:01:55.9102859Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvf342esc4gsdonhsfmsb6csg5wd5wof7324wq7nf43cpnahedku6u6g4gwo4uwwc/providers/Microsoft.ContainerRegistry/registries/cliregjppxob42oo4q76","name":"cliregjppxob42oo4q76","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:08:27.9500802Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:08:27.9500802Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfp7mjlhczmyha3paol5cwfnsr6zl4ntf4altx5idt5ynjrftlzv72o7ajpnwwkc4/providers/Microsoft.ContainerRegistry/registries/clireg6sbq3rat56snyn","name":"clireg6sbq3rat56snyn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:18:11.712155Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:18:11.712155Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmrgxnhoz5ine4rn5wtclzfpar3z7dan3ezpka553y2ym4foivyencskkot2r2iisb/providers/Microsoft.ContainerRegistry/registries/cliregfbyc6jzrrqhf4u","name":"cliregfbyc6jzrrqhf4u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:20:52.0697979Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:20:52.0697979Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2pbkjb5jbqbu7dgnswioxg6wbpcoybf5zt42rbq6kboyiqyb3cuv7o66mpdh4pawf/providers/Microsoft.ContainerRegistry/registries/cliregza6xdcmh6nkfwt","name":"cliregza6xdcmh6nkfwt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T21:17:41.0852412Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T21:17:41.0852412Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubeto7ceq7yhse3daximi","name":"sourceregistrysamesubeto7ceq7yhse3daximi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:09:59.6345906Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:09:59.6345906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubasyyapaolwptdm5bxzt","name":"sourceregistrysamesubasyyapaolwptdm5bxzt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:36:14.1751691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:36:14.1751691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxcuseuap","name":"yxcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:27:18.7712368Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:27:18.7712368Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxwcus","name":"yxwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:56:18.6122687Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:57:10.1574451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxeasia","name":"yxeasia","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:59:53.470104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T19:03:16.8124033Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bowenzhao/providers/Microsoft.ContainerRegistry/registries/bowenzhao","name":"bowenzhao","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T21:17:50.1156024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T21:17:50.1156024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/trisavosea","name":"trisavosea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-07-23T23:04:58.9857265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-31T15:22:24.9667045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry","name":"acrtestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-30T11:08:06.8561219Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-30T11:08:06.8561219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry2","name":"acrtestregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-01T03:44:49.2763798Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-01T03:44:49.2763798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0903","name":"vlintestregistry0903","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T01:46:05.5004661Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T01:45:49.1601549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0904","name":"vlintestregistry0904","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"bbf848e3-4bb9-443b-b1a7-a24a79e5ff18","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/testacrroles/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vlintestid0903":{"principalId":"cb8908d8-39a4-4fd5-b76b-deea09913fc5","clientId":"c0f13b5f-1d2e-4101-85db-611e4fcf4083"}}},"tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T23:09:11.2731004Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-24T07:15:56.200657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0906","name":"vlintestregistry0906","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-06T05:28:31.7848169Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T07:25:14.8733098Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0916","name":"vlintestregistry0916","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-16T01:44:46.6994384Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-16T01:54:29.376342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitftest","name":"huanglitftest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"northeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-30T00:47:40.5055599Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-30T00:47:40.5055599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistryimportpip","name":"vlintestregistryimportpip","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-10T05:02:13.1322952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-10T05:03:17.3507147Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry1013","name":"vlintestregistry1013","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-13T12:52:49.9587621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-13T12:52:49.9587621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/hungligeotest","name":"hungligeotest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-12-27T18:56:20.1164353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-27T18:56:20.1164353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest21","name":"huanglitest21","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T03:38:59.1596146Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T03:38:59.1596146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest22","name":"huanglitest22","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T20:20:57.9051447Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T20:20:57.9051447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglireplica","name":"huanglireplica","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T21:46:48.6716681Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T21:46:48.6716681Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal-e2e-test/providers/Microsoft.ContainerRegistry/registries/portale2e","name":"portale2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-10T20:25:49.0973042Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-10T20:25:49.0973042Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawcus","name":"kichallawcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T12:42:34.4087547Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T12:42:34.4087547Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawildcard","name":"kichallawildcard","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T17:36:47.3784874Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T17:36:47.3784874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichalladoubleencodingtest","name":"kichalladoubleencodingtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-06T16:09:35.4120347Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-06T16:19:56.2477758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallacuseuap","name":"kichallacuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-17T23:28:52.3266154Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-08T21:33:16.4814874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallafrc","name":"kichallafrc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"francecentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T22:43:32.0771918Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T22:43:32.0771918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus","name":"kichallaeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T19:41:19.5824789Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T19:41:46.5594044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aci-task/providers/Microsoft.ContainerRegistry/registries/acitask","name":"acitask","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-09T03:38:26.0691557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-06T17:58:46.7301976Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/p2p-ci-rg/providers/Microsoft.ContainerRegistry/registries/acrp2pci","name":"acrp2pci","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"Purpose":"Distribution + P2P CIs"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-19T18:41:08.5681115Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-19T18:41:08.5681115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglicrtest2","name":"huanglicrtest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-12-06T19:42:43.710084Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-06T19:50:08.5920561Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaitn","name":"kichallaitn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"italynorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-10T17:24:53.902562Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-10T17:24:53.902562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/flux/providers/Microsoft.ContainerRegistry/registries/acrflux","name":"acrflux","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremprivate","name":"acronpremprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-04T21:51:58.13367Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-04T21:51:58.13367Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremdev","name":"acronpremdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-17T22:05:38.0453625Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-17T22:05:38.0453625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremcanary","name":"acronpremcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-11T21:29:53.0130775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-11T21:30:20.5972808Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestregforcmk","name":"kichallatestregforcmk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallauamiforcmktest":{"principalId":"521422a4-c530-4f46-994f-2e4b0a2ab846","clientId":"942a7498-872e-4a67-8cf8-90fbf8021f7a"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-04-19T19:04:32.5561028Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-19T19:04:32.5561028Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweutest","name":"kichallaweutest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T07:42:47.5834707Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-30T07:43:41.0323406Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestreg","name":"kichallatestreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"360ad420-32b0-47bf-bbd8-7274dc6710e8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallatestidentity":{"principalId":"a41656d5-af9f-4a7d-874f-f0ccaf0929f2","clientId":"4a52641b-861d-4aaa-88bd-2fb08c6727c6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-22T17:07:11.6634055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-25T12:34:49.7895985Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/kraterdevteam","name":"kraterdevteam","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-09T19:35:26.9788393Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T23:08:26.6487291Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawus","name":"kichallawus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","identity":{"principalId":"a1f6138e-6251-4089-a46f-208eb9174a03","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-16T14:15:59.9461536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T15:01:00.7215173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isleeus2euap1","name":"isleeus2euap1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-09T19:07:10.0649621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-09T19:07:10.0649621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/eus2euapisletransfer","name":"eus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T18:50:35.6635138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:04:12.3431706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwus","name":"isletestwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T00:45:06.6936677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T00:45:06.6936677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaanonymouspull","name":"kichallaanonymouspull","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-04T13:55:46.4624399Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-04T13:58:11.8521285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweu","name":"kichallaweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-07T14:47:04.246701Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T14:47:04.246701Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwcus","name":"isletestwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T01:01:43.8716644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T01:01:43.8716644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/teus2euapisletransfer","name":"teus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T19:10:32.9106153Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:13:23.3704045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Public-ACR-Dev-Registry/providers/Microsoft.ContainerRegistry/registries/acrdevpublic","name":"acrdevpublic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"TestTag":"Value"},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-29T00:28:37.2116233Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus2euap","name":"kichallaeus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-02T21:52:40.997123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-02T21:52:40.997123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onebranch/providers/Microsoft.ContainerRegistry/registries/acronebranchbuilder","name":"acronebranchbuilder","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-09-30T07:23:25.8315205Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-30T07:23:25.8315205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavoprivatepreview","name":"trisavoprivatepreview","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:45:42.3355435Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T17:47:58.350387Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary","name":"trisavocanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:51:39.1070414Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-12T23:38:27.7956146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavowcus","name":"trisavowcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T00:41:18.2332536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T00:51:13.4704441Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary2","name":"trisavocanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T18:23:18.9004766Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T18:23:18.9004766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavobillingidc","name":"trisavobillingidc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"indonesiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T14:56:45.9703137Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T15:06:00.5196347Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-juliusl/providers/Microsoft.ContainerRegistry/registries/tenet","name":"tenet","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T01:39:08.6459936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T01:39:34.2967984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/buildrpreg/providers/Microsoft.ContainerRegistry/registries/buildrpreg","name":"buildrpreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Managed_Standard","tier":"Managed"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-04235/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc04235","name":"joshbaunacharc04235","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-23T21:18:48.7834726Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-23T21:19:37.7530706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-proxy-wcus/providers/Microsoft.ContainerRegistry/registries/jbproxywcusregistry","name":"jbproxywcusregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-01T18:21:13.6471108Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-01T18:21:13.6471108Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry120tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry120tb","name":"jumboregistry120tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"switzerlandnorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-07T18:26:16.9534532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-07T18:26:16.9534532Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount3","name":"pecount3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:15:13.6752037Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:15:13.6752037Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount4","name":"pecount4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:35:11.0508044Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:35:11.0508044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount5","name":"pecount5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-25T01:27:13.8444571Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-25T01:27:13.8444571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest3/providers/Microsoft.ContainerRegistry/registries/khallcmksitest3cr","name":"khallcmksitest3cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"b6d54134-bac5-4878-b04c-ed0a536d18fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest3":{"principalId":"9bea4ef2-a10b-4080-b491-e36f3ca5ff63","clientId":"111ad366-18a0-4c36-b740-59fdb4f58b50"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:11:07.6255262Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallsitest25/providers/Microsoft.ContainerRegistry/registries/khallsitest25cr","name":"khallsitest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"277350e3-b42a-4d7a-9821-36f25144a961","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T03:27:15.9238974Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:06:14.6299123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest272/providers/Microsoft.ContainerRegistry/registries/khallcmksitest272cr","name":"khallcmksitest272cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"99272fdf-8445-4dbe-8c91-76b3c419dfcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest272/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest272":{"principalId":"7c18c630-3373-4713-a6e5-611899ca7536","clientId":"f37436d0-50cb-402b-b1f6-7b736c2819f9"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T04:25:57.573226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:27:32.858899Z"}}]}' headers: cache-control: - no-cache content-length: - - '6865' + - '109410' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:03 GMT + - Fri, 25 Apr 2025 09:48:17 GMT expires: - '-1' pragma: @@ -1263,7 +1293,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CB5E0353C8C84E0C8637007C2723A33F Ref B: SYD281080712054 Ref C: 2026-09-11T02:15:03Z' + - 'Ref A: B62500EDDFB74B7D8A8FA9D25FC843C6 Ref B: SEL221051801033 Ref C: 2025-04-25T09:48:17Z' status: code: 200 message: OK @@ -1281,23 +1311,23 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:14:54.7024172+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:14:54.7024172+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-11T02:14:54.7024172Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-11T02:15:02.4129227+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-11T02:15:02.4147569+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2025-03-01-preview cache-control: - no-cache content-length: - - '1661' + - '1500' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:04 GMT + - Fri, 25 Apr 2025 09:48:18 GMT expires: - '-1' pragma: @@ -1311,13 +1341,13 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8C17CE1B0FE04D2587DB6F84CBB0CF5D Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:04Z' + - 'Ref A: 3E8790A4F60C4F3BB79BB51F7EFCDCE3 Ref B: SEL221051504021 Ref C: 2025-04-25T09:48:18Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"actions": ["push"], "serviceUri": - "http://www.microsoft.com", "status": "enabled"}}' + body: '{"location": "westus", "properties": {"serviceUri": "http://www.microsoft.com", + "status": "enabled", "actions": ["push"]}}' headers: Accept: - application/json @@ -1334,20 +1364,18 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.578612+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: @@ -1355,7 +1383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:04 GMT + - Fri, 25 Apr 2025 09:48:21 GMT expires: - '-1' pragma: @@ -1367,13 +1395,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/d570f648-492f-426a-9df4-267cd0483e0a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c4f31626-aa93-4ad0-b71d-b245d9548e93 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CC123F3D38734F70A5C9292793136B5B Ref B: SYD281080708060 Ref C: 2026-09-11T02:15:05Z' + - 'Ref A: 48075CB45B7F4F01B5A16423EA4789E6 Ref B: SEL221051805049 Ref C: 2025-04-25T09:48:20Z' status: code: 200 message: OK @@ -1391,12 +1419,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -1406,512 +1434,531 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '56858' + - '57783' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:06 GMT + - Fri, 25 Apr 2025 09:48:22 GMT expires: - '-1' pragma: @@ -1925,7 +1972,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 20DD6126107044E68166B0CBD811492D Ref B: SYD281080712034 Ref C: 2026-09-11T02:15:06Z' + - 'Ref A: 19D3FED0FD7049E4BBC0961332D4854F Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' status: code: 200 message: OK @@ -1943,20 +1990,18 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:05.578612+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: @@ -1964,7 +2009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:06 GMT + - Fri, 25 Apr 2025 09:48:23 GMT expires: - '-1' pragma: @@ -1978,7 +2023,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E821D9354F30432E87E8EE71568C95E3 Ref B: SYD281080712052 Ref C: 2026-09-11T02:15:07Z' + - 'Ref A: 46F13ABBFBF341B5B627265E8E0F1362 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' status: code: 200 message: OK @@ -2000,20 +2045,18 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:08.1934778+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: @@ -2021,7 +2064,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:15:07 GMT + - Fri, 25 Apr 2025 09:48:26 GMT expires: - '-1' pragma: @@ -2033,13 +2076,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2d53f74c-b490-4e87-a264-41b94bb7236e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c636f714-32ae-4c1d-a8eb-6ad4aa109797 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 76FEFF06E5794382AC1AA3AC0E12FFD1 Ref B: SYD281080709029 Ref C: 2026-09-11T02:15:07Z' + - 'Ref A: B2919C3A6C654159A620A162FD3CDB54 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:24Z' status: code: 200 message: OK @@ -2057,12 +2100,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -2072,5015 +2115,900 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '56858' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E729BCC2C1384025AB06226D9010716E Ref B: SYD281080712036 Ref C: 2026-09-11T02:15:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:08.1934778+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: D01B5235FFFB45D6822A61F3D7149BEB Ref B: SYD281080711060 Ref C: 2026-09-11T02:15:09Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '12' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:10.6060325+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 - cache-control: - - no-cache - content-length: - - '634' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/3f8ef7d1-77f0-4220-add5-2db005f79cfe - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: EF793A96A4EC4E9D809176E1DC7BCEA9 Ref B: SYD281080708025 Ref C: 2026-09-11T02:15:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - container create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 6D04A42F7C2A49D1B6551D834E3CA3BF Ref B: SYD281080705052 Ref C: 2026-09-11T02:15:11Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"containers": [{"name": "clicontainer000005", "properties": - {"image": "mcr.microsoft.com/azuredocs/aci-helloworld:latest", "resources": - {"requests": {"memoryInGB": 1.0, "cpu": 1.0}}, "configMap": {"keyValuePairs": - {}}}}], "osType": "Linux"}, "location": "westus", "tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - container create - Connection: - - keep-alive - Content-Length: - - '291' - Content-Type: - - application/json - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Pending\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/ee723bde-1d27-4b32-8b3e-dbc23a0b74d9?api-version=2018-06-01&t=639246897131683595&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gHdYONiLcT4ygBfu9tnewr9yErsazWi4VqplqGGjybrp5PzbAXdjbIK5dJDD8UVAxqdE6pdqx8KMxNCg5mMIMvUZ7ofrZc2TCPC8ASJPAwoDlOSP6JrAslfXFAdY41fbpdox1U5GUXkbXPZVSuBmVuIIfO7-MBVIvln5VxG7x8R88NfQCPHt1cNJYTWX5r5YwH7WslByyD9QGKB5OPkRvxUXLXxB_-yGgbl6dtg2wRGfORejrHZk5dXQI_WjbVcpf7bTAuHNWLKGgCYxP_wjfknK0hx0OI25_jGzoWu1lTnc7NZTbnsP8E9GmCcHPDLr1W6Iyb1nyHuyMfwoE3Sy8w&h=xY5mhf2XJBw_xoTY4ATiukks2N_MJi-YZ7ABgv3hrKY - cache-control: - - no-cache - content-length: - - '1133' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a684127a-dab8-4360-9ad2-5bbb60bd3a46 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-resource-requests-pt1h: - - '298' - x-ms-ratelimit-remaining-subscription-resource-requests-pt5m: - - '99' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 2C09F4B1F26E46C6BA1750C844C785D4 Ref B: SYD281080711060 Ref C: 2026-09-11T02:15:12Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - container create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/ee723bde-1d27-4b32-8b3e-dbc23a0b74d9?api-version=2018-06-01&t=639246897131683595&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gHdYONiLcT4ygBfu9tnewr9yErsazWi4VqplqGGjybrp5PzbAXdjbIK5dJDD8UVAxqdE6pdqx8KMxNCg5mMIMvUZ7ofrZc2TCPC8ASJPAwoDlOSP6JrAslfXFAdY41fbpdox1U5GUXkbXPZVSuBmVuIIfO7-MBVIvln5VxG7x8R88NfQCPHt1cNJYTWX5r5YwH7WslByyD9QGKB5OPkRvxUXLXxB_-yGgbl6dtg2wRGfORejrHZk5dXQI_WjbVcpf7bTAuHNWLKGgCYxP_wjfknK0hx0OI25_jGzoWu1lTnc7NZTbnsP8E9GmCcHPDLr1W6Iyb1nyHuyMfwoE3Sy8w&h=xY5mhf2XJBw_xoTY4ATiukks2N_MJi-YZ7ABgv3hrKY - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"status\": \"Pending\",\r\n \"startTime\": \"2026-09-11T02:15:13.0377667Z\",\r\n - \ \"properties\": {\r\n \"events\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '305' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/95a9d2e3-9117-43fd-af6b-df9149d9276e - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: ADEE4424DCA6487DB2E86E144FA05558 Ref B: SYD281080709023 Ref C: 2026-09-11T02:15:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - container create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/ee723bde-1d27-4b32-8b3e-dbc23a0b74d9?api-version=2018-06-01&t=639246897131683595&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=gHdYONiLcT4ygBfu9tnewr9yErsazWi4VqplqGGjybrp5PzbAXdjbIK5dJDD8UVAxqdE6pdqx8KMxNCg5mMIMvUZ7ofrZc2TCPC8ASJPAwoDlOSP6JrAslfXFAdY41fbpdox1U5GUXkbXPZVSuBmVuIIfO7-MBVIvln5VxG7x8R88NfQCPHt1cNJYTWX5r5YwH7WslByyD9QGKB5OPkRvxUXLXxB_-yGgbl6dtg2wRGfORejrHZk5dXQI_WjbVcpf7bTAuHNWLKGgCYxP_wjfknK0hx0OI25_jGzoWu1lTnc7NZTbnsP8E9GmCcHPDLr1W6Iyb1nyHuyMfwoE3Sy8w&h=xY5mhf2XJBw_xoTY4ATiukks2N_MJi-YZ7ABgv3hrKY - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"status\": \"Succeeded\",\r\n \"startTime\": \"2026-09-11T02:15:13.0377667Z\",\r\n - \ \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": - 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": - \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": - 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": - \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1025' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiacentral2/84b07183-a682-443c-8b16-1185e72c89b8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 1252C91B59F34C17916C59B6A634245F Ref B: SYD281080709031 Ref C: 2026-09-11T02:15:45Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - container create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully - pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": - \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2561' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: EC01F373AA3A41FB91241FD101551266 Ref B: SYD281080705040 Ref C: 2026-09-11T02:15:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Jio India Central","Jio - India West","Korea Central","Korea South","North Central US","North Europe","Norway - East","Norway West","Poland Central","Qatar Central","South Africa North","South - Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland - North","Switzerland West","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"Italy - North","zones":["2","1","3"]},{"location":"Japan East","zones":["2","1","3"]},{"location":"Japan - West","zones":["2","1","3"]},{"location":"Korea Central","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Sweden Central","zones":["2","1","3"]},{"location":"Switzerland - North","zones":["2","1","3"]},{"location":"UAE North","zones":["2","1","3"]},{"location":"UK - South","zones":["2","1","3"]},{"location":"West Europe","zones":["2","1","3"]},{"location":"West - US 2","zones":["2","1","3"]},{"location":"West US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia - Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Jio India Central","Jio - India West","Korea Central","Korea South","North Central US","North Europe","Norway - East","Norway West","Poland Central","Qatar Central","South Africa North","South - Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland - North","Switzerland West","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '24043' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: F80747CB1E7F4A90885B2BF38DB3FCA3 Ref B: SYD281080708060 Ref C: 2026-09-11T02:15:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully - pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": - \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2561' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 72DCDD0541504CA69BE1AFB857A1E08C Ref B: SYD281080705034 Ref C: 2026-09-11T02:15:49Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"cli-test": "test"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully - pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": - \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - cache-control: - - no-cache - content-length: - - '2589' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/81d4966b-8052-48f5-ab47-79365af7b7da - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 54FC16C67BE84D1DA109F9C6BC02438F Ref B: SYD281080705062 Ref C: 2026-09-11T02:15:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Jio India Central","Jio - India West","Korea Central","Korea South","North Central US","North Europe","Norway - East","Norway West","Poland Central","Qatar Central","South Africa North","South - Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland - North","Switzerland West","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"Italy - North","zones":["2","1","3"]},{"location":"Japan East","zones":["2","1","3"]},{"location":"Japan - West","zones":["2","1","3"]},{"location":"Korea Central","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Sweden Central","zones":["2","1","3"]},{"location":"Switzerland - North","zones":["2","1","3"]},{"location":"UAE North","zones":["2","1","3"]},{"location":"UK - South","zones":["2","1","3"]},{"location":"West Europe","zones":["2","1","3"]},{"location":"West - US 2","zones":["2","1","3"]},{"location":"West US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia - Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Jio India Central","Jio - India West","Korea Central","Korea South","North Central US","North Europe","Norway - East","Norway West","Poland Central","Qatar Central","South Africa North","South - Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland - North","Switzerland West","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '24043' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E8269A7A78204BAC9CB45753F2457132 Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully - pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": - \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2589' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 42678EE65145464E88DE8BF36B1E901A Ref B: SYD281080707029 Ref C: 2026-09-11T02:15:51Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '12' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully - pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": - \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" - headers: - azure-asyncnotification: - - Enabled - cache-control: - - no-cache - content-length: - - '2561' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/01279f4d-29db-40a1-a968-aece5f7731fd - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: EAD04AC782304FB3B2DEC0484AE0289C Ref B: SYD281080712031 Ref C: 2026-09-11T02:15:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"},{"applicationId":"e81c7467-0fc3-4866-b814-c973488361cd","roleDefinitionId":"212c936c-5360-4b3b-b2a1-b1eba3849a6f"},{"applicationId":"c505e273-0ba0-47e7-a0bd-f48042b4524d","roleDefinitionId":"a3d1c624-1f2f-41e8-9dc7-53fd55bcd821"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '25101' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 4CE12677475B4819B758CE39FDFF4660 Ref B: SYD281080705060 Ref C: 2026-09-11T02:15:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 - response: - body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A14%3A49.7666068Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '1073' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 9BF85DD60B594E30BBD51A8F3AE12282 Ref B: SYD281080709042 Ref C: 2026-09-11T02:15:54Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"cli-test": "test"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 - response: - body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-11T02%3A15%3A55.6560418Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '1090' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/5af1c548-6eef-4d92-90f5-37a1ee359a35 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' - x-msedge-ref: - - 'Ref A: B652D24C68A54C688D68D1E374270C17 Ref B: SYD281080708040 Ref C: 2026-09-11T02:15:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '56858' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: D5E9EFE35F384FE1856ECB8192D29776 Ref B: SYD281080707029 Ref C: 2026-09-11T02:15:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:10.6060325+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 - cache-control: - - no-cache - content-length: - - '634' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 1E53603CEBA04EBC9CE913F1DA4D8B09 Ref B: SYD281080710023 Ref C: 2026-09-11T02:15:57Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"cli-test": "test"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-11T02:15:05.578612+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-11T02:15:58.5009165+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/0020d791-4b65-4eda-bc9e-6ec907cdefb0 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: B2228968C429499DB8ECE25CBB79184C Ref B: SYD281080705062 Ref C: 2026-09-11T02:15:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Jio India Central","Jio India West","Korea - Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland - West","UAE Central","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Jio India Central","Jio - India West","Korea Central","Korea South","North Central US","North Europe","Norway - East","Norway West","Poland Central","Qatar Central","South Africa North","South - Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland - North","Switzerland West","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"Italy - North","zones":["2","1","3"]},{"location":"Japan East","zones":["2","1","3"]},{"location":"Japan - West","zones":["2","1","3"]},{"location":"Korea Central","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Sweden Central","zones":["2","1","3"]},{"location":"Switzerland - North","zones":["2","1","3"]},{"location":"UAE North","zones":["2","1","3"]},{"location":"UK - South","zones":["2","1","3"]},{"location":"West Europe","zones":["2","1","3"]},{"location":"West - US 2","zones":["2","1","3"]},{"location":"West US 3","zones":["2","1","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia - Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Jio India Central","Jio - India West","Korea Central","Korea South","North Central US","North Europe","Norway - East","Norway West","Poland Central","Qatar Central","South Africa North","South - Africa West","South Central US","Southeast Asia","South India","Sweden Central","Switzerland - North","Switzerland West","UAE North","UK South","UK West","West Central US","West - Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '24043' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 5F2B99A56E0842099201C50F8F82F851 Ref B: SYD281080709023 Ref C: 2026-09-11T02:15:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully - pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": - \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2561' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:15:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: BDC9CB61EFB343C8B8D884D6E2388957 Ref B: SYD281080710054 Ref C: 2026-09-11T02:16:00Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"cli-test": "test"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-11T02:15:28.39Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-11T02:15:17Z\",\r\n \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"name\": \"Pulled\",\r\n \"message\": \"Successfully - pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:17Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:17Z\",\r\n \"name\": - \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-11T02:15:28Z\",\r\n - \ \"lastTimestamp\": \"2026-09-11T02:15:28Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - cache-control: - - no-cache - content-length: - - '2589' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:16:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9c77f1c3-0d77-4bf8-9acf-5f3a772709f6 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: BD8A20DFCCA847CDBDC81498443B1206 Ref B: SYD281080705036 Ref C: 2026-09-11T02:16:00Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "properties": {"idleTimeoutInMinutes": 4, "publicIPAllocationMethod": - "Static"}, "sku": {"name": "Standard"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - Content-Length: - - '132' - Content-Type: - - application/json - ParameterSetName: - - -g -n --location --sku - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 - response: - body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"b7384702-8a68-487f-9ca7-70a5b6f0c834\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9efbc301-2dc6-4134-8ed0-c4a68b7abafc?api-version=2025-07-01&t=639246897636934837&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=PB66cb2tdD2IzxTm42088a9JbJ-xjTeE1d9u-fy7wdD77oaWHIBQcWxPxWh36CdiKau2sfe1lLE140Kz-hgbnD_35iXUvo5fTWgEMtYKOpglsWcZQMOgtK4jLstQPqbtGC3aV9p_1KiXCj5WTaAniw9C3WsRCzRrOisH9Q3Di5zrCVKBmkkk9peMeEGRomTpzEbBBI3rhDkBqi1g02Lwioen3W47YjG-Bz7mBVH3n0tO61JVGwCAcp36dxdHn5Csiit_VcqZ9uXuNoxU9FcDvjH4RsQ-X5dO3Ym84dAH8sB_ms-uvq_IBl10dIS_brtyvmsOWZ5oi5KhDrSCmW_ZLA&h=ZCB7AtOqOKdVC5mQQ75oDAqOi6wNsmpA1qrzfQ7tCYU - cache-control: - - no-cache - content-length: - - '617' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:16:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 10137629-e457-473a-95bb-41608c52d3bd - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/f17a82f7-a531-45f4-b048-6f9657f0c737 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, - etc - x-msedge-ref: - - 'Ref A: 57D0F0463CC742DFAEDC391A152DDEDB Ref B: SYD281080712023 Ref C: 2026-09-11T02:16:03Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --location --sku - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9efbc301-2dc6-4134-8ed0-c4a68b7abafc?api-version=2025-07-01&t=639246897636934837&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=PB66cb2tdD2IzxTm42088a9JbJ-xjTeE1d9u-fy7wdD77oaWHIBQcWxPxWh36CdiKau2sfe1lLE140Kz-hgbnD_35iXUvo5fTWgEMtYKOpglsWcZQMOgtK4jLstQPqbtGC3aV9p_1KiXCj5WTaAniw9C3WsRCzRrOisH9Q3Di5zrCVKBmkkk9peMeEGRomTpzEbBBI3rhDkBqi1g02Lwioen3W47YjG-Bz7mBVH3n0tO61JVGwCAcp36dxdHn5Csiit_VcqZ9uXuNoxU9FcDvjH4RsQ-X5dO3Ym84dAH8sB_ms-uvq_IBl10dIS_brtyvmsOWZ5oi5KhDrSCmW_ZLA&h=ZCB7AtOqOKdVC5mQQ75oDAqOi6wNsmpA1qrzfQ7tCYU - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:16:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f3cdddc8-3f7e-4c0a-9bde-7330f727f28d - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/90f1f7a8-c18a-4b12-adfe-5d8fffb2d5e2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc - x-msedge-ref: - - 'Ref A: 026E7B18A7504E2D8D16F518AD573048 Ref B: SYD281080705062 Ref C: 2026-09-11T02:16:04Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --location --sku - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 - response: - body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"3c495642-23b3-4e50-a0c5-b64bbc0789a6\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","ipAddress":"52.159.226.221","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' - headers: - cache-control: - - no-cache - content-length: - - '647' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 11 Sep 2026 02:16:04 GMT - etag: - - W/"3c495642-23b3-4e50-a0c5-b64bbc0789a6" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7bb20e26-eb08-45bc-852f-70326e23821c - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.5, etc - x-msedge-ref: - - 'Ref A: 6D6B018F3B744AA7AC5341D999420539 Ref B: SYD281080707040 Ref C: 2026-09-11T02:16:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West - Central US","East US 2","West Europe","North Europe","Australia East","UK - South","South Central US","East US","North Central US","West US 2","West US - 3","Southeast Asia","Central India","Canada Central","Central US","France - Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West - Central US","East US","UK South","East US 2","West Europe","North Europe","Australia - East","South Central US","North Central US","West US 2","West US 3","Southeast - Asia","Central India","Canada Central","Central US","France Central","Japan - East","Germany West Central","South Africa North","Korea Central","Sweden - Central","East Asia","Switzerland North","Brazil South","West US","Norway - East","UAE North","Australia Southeast","Canada East","Japan West","Italy - North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","France South","Norway West","Switzerland - West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","West - US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Brazil South","Australia - East","Australia Southeast","Central India","South India","West India","Canada - Central","Canada East","West Central US","West US 2","UK West","UK South","France - Central","Australia Central","Japan West","Japan East","Korea Central","Korea - South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","India - South Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","Denmark - East","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, - SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile - Central","New Zealand North","Indonesia Central","Malaysia West","Austria - East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile - Central","New Zealand North","Indonesia Central","Malaysia West","Austria - East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile - Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia - West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","France Central","South - Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany - West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE - North","Brazil South","Israel Central","North Central US","Australia Central","Australia - Central 2","Australia Southeast","South India","Canada East","France South","Germany - North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico - Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile - Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia - West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East - US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar - Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy - North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland - West","Japan West","France South","South Africa West","West India","Canada - East","South India","Germany West Central","Norway East","Norway West","South - Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","India South Central","Southeast - Asia","North Central US","South Central US","Central US","East US 2","Japan - East","Japan West","Brazil South","Australia East","Australia Southeast","Central - India","South India","West India","Canada Central","Canada East","West Central - US","West US 2","UK West","UK South","Korea Central","Korea South","France - Central","Australia Central","South Africa North","UAE North","Switzerland - North","Germany West Central","Norway East","West US 3","Jio India West","Sweden - Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Indonesia Central","New Zealand North","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '57783' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3BA7968730D54E139BAF248B79986F92 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + cache-control: + - no-cache + content-length: + - '651' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' + x-msedge-ref: + - 'Ref A: 6BB8F1BC212849A193650B4FD7C54864 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '12' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + cache-control: + - no-cache + content-length: + - '634' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/86b1f1a7-744f-4063-a40c-95ffde13b9b8 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: F830282644B04E7697E3E16ED6784C1D Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3652B8F2AB534718A28633654EB09B8B Ref B: SEL221051504019 Ref C: 2025-04-25T09:48:33Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"containers": [{"name": "clicontainer000005", "properties": + {"image": "mcr.microsoft.com/azuredocs/aci-helloworld:latest", "resources": + {"requests": {"memoryInGB": 1.0, "cpu": 1.0}}, "configMap": {"keyValuePairs": + {}}}}], "osType": "Linux"}, "location": "westus", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + Content-Length: + - '291' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview + response: + body: + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Pending","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Pending"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/23c3fe37-465a-4c45-8001-ce3dd8f12477 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-resource-requests-pt1h: + - '299' + x-ms-ratelimit-remaining-subscription-resource-requests-pt5m: + - '99' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 4373DEFAE86D4699AE011C5ABD67E90D Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:34Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Pending","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '272' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/427b8852-a55c-4a3a-be04-314fd70ff957 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9E787B2AC9BF4A7681AD8FDC1F746649 Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Succeeded","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/aa93ee33-a065-47b3-8db3-21de8f26eb91 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E4CF150C26244D2F917F088B500043EC Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:08Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --cpu --memory --os-type + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview + response: + body: + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '247084' + - '1630' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:07 GMT + - Fri, 25 Apr 2025 09:49:10 GMT expires: - '-1' pragma: @@ -7094,7 +3022,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 447EEECFFFE144D58D2E75E30A247CC2 Ref B: SYD281080707023 Ref C: 2026-09-11T02:16:06Z' + - 'Ref A: 08BE454737704657ACBB4C3AA44D9961 Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:09Z' status: code: 200 message: OK @@ -7112,23 +3040,187 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"3c495642-23b3-4e50-a0c5-b64bbc0789a6\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","ipAddress":"52.159.226.221","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia SouthEast","Brazil + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West India","West + US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland + North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + Central","Australia Central 2","Australia East","Australia SouthEast","Brazil + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West India","West + US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '647' + - '20484' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:08 GMT - etag: - - W/"3c495642-23b3-4e50-a0c5-b64bbc0789a6" + - Fri, 25 Apr 2025 09:49:10 GMT expires: - '-1' pragma: @@ -7139,17 +3231,62 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 7e9f967b-af7a-40e2-b414-d4e054c04d65 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' - x-ms-throttle-levels: - - operationRatePct=0.2, operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 1D28FE6FBB764C86B2B1DD6B6D8DBA5E Ref B: SYD281080707025 Ref C: 2026-09-11T02:16:08Z' + - 'Ref A: 752F3D7E9C464AE09587186291C10384 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + response: + body: + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + headers: + cache-control: + - no-cache + content-length: + - '1630' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' + x-msedge-ref: + - 'Ref A: EB1B12573658482F92F19459CA97C562 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' status: code: 200 - message: '' + message: OK - request: body: '{"tags": {"cli-test": "test"}}' headers: @@ -7168,23 +3305,26 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"a10fb510-5013-4011-ad02-334babc53e01\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"aef90a11-6af9-4855-bc77-178d2a4de057","ipAddress":"52.159.226.221","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '674' + - '1647' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:09 GMT + - Fri, 25 Apr 2025 09:49:15 GMT expires: - '-1' pragma: @@ -7195,19 +3335,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - b48ba217-3320-4ea5-be40-3a4cf2c0fb56 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/a46e0d57-dac5-4812-86fc-0875d3b47109 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/cc19406b-a30b-4784-930c-56b95c74994b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, - etc x-msedge-ref: - - 'Ref A: 51E0B0A9BD8E41858899F79F026CB970 Ref B: SYD281080706031 Ref C: 2026-09-11T02:16:09Z' + - 'Ref A: 65230ACFF1764D6181C187ADF287E22C Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:12Z' status: code: 200 message: OK @@ -7219,13 +3354,333 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource delete + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia SouthEast","Brazil + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West India","West + US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland + North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + Central","Australia Central 2","Australia East","Australia SouthEast","Brazil + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West India","West + US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '20484' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3BF9C48DA96640FE8148356EAABF495C Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + response: + body: + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + headers: + cache-control: + - no-cache + content-length: + - '1647' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3B45777410CF4ABEBC4723907EA4431A Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '12' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + response: + body: + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + headers: + azure-asyncnotification: + - Enabled + cache-control: + - no-cache + content-length: + - '1630' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5d7e56d9-d9ad-4799-853e-dbc32c8320dc + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: F9ED74D7A6FA415FB0E3902DEF13BC0E Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:18Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag Connection: - keep-alive ParameterSetName: - - --id --no-wait + - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -7238,21 +3693,10 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7260,9 +3704,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7270,9 +3713,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7280,9 +3722,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7290,9 +3731,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7300,9 +3740,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7310,63 +3749,56 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Malaysia - West","Indonesia Central","Denmark East","Austria East","Belgium Central","Israel - Central","India South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7374,9 +3806,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7384,9 +3815,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7394,9 +3824,8 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South @@ -7404,18 +3833,17 @@ interactions: US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","Chile Central","New Zealand North","Mexico - Central","Israel Central","Italy North","Malaysia West","Indonesia Central","Denmark - East","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '25101' + - '21796' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:09 GMT + - Fri, 25 Apr 2025 09:49:21 GMT expires: - '-1' pragma: @@ -7427,9 +3855,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 33F5D1E7ABD24786A38267A7E9EDC1D2 Ref B: SYD281080706060 Ref C: 2026-09-11T02:16:10Z' + - 'Ref A: 6E2B667A30CC42C6AA2DA70BECD43749 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' status: code: 200 message: OK @@ -7441,33 +3869,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource delete + - resource tag Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --id --no-wait + - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=?api-version=2026-07-01&t=639246897712839190&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=V6sIzDgMAo5Z6kVP4fzcDdN8NbCoWPIH4Mjmi4MGWeIaGKnco0g7RxBEHyi9r-xwC013-3NMOTyCNnQIMCeO8QrrSpwW4YspSZuOPXQfqvEAs8gqchyKqMz7ZS88flIM9zx6qHER_QrwwyWg3g9JQDLuDFPRQJjn5_Nk1mG8_e5H_swc4LvpHk6gpiWQF_jFM6-vBIFIzCHBeVJToeP-I7J7x5BeqT8FKafsbzoX6Pd7oOjwQDBLR6VavVoNhSrEEl431Vn3kG_0hlVBMq-R7rn8I9QFXIo9d2RtladhEfKIFTuvIrVct6aZMjzZ4z5t-Xs9sDSNmD2YCvTyEQPvhw&h=rSPexFdj_WM_-ewaSRY9s4NbDX9PsCRH_0JLT1w9Aqc cache-control: - no-cache content-length: - - '0' + - '1019' + content-type: + - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:10 GMT + - Fri, 25 Apr 2025 09:49:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=?api-version=2026-07-01&t=639246897712839190&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RGkQQ5RLsCfyAAErFqrG3Kjzc9LKCu-b5QqRluqyXiY56GwfMdLViX6LYn4KjNMVcXtIiZbjFgqahwVrwqeESepiHgqXpKHqHo4yRfC1rFHs4CMA2VTnQYIcUsYgWsvrt4yTx9x7xRoUBjqM--BBAcLCG1mRPSY59iZ1G3xaH_6onjgil20xmWSosWEIoE5CBA81wDszAk12t-oeJuj4ZJsGB_TQT6xkVsLi21MdaDpvoP_wcFSUppDuq_c5zfbL-RQmsxJLEc1ZrKAHudxgIVQ5-O-Tw4TCkrxl6ZB4U_CvK9h2YuCX0p2JnrH1rjb4GiqRfG0gXBOi7AR14EUS1Q&h=aY_L82OULnTp7sZKd35IuLxiNUnMNMxVbvzMqxetHdw pragma: - no-cache strict-transport-security: @@ -7476,46 +3900,46 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/9d1ae26f-c38e-4cdb-908e-1dcc78c99ecb - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 367477F1C6E744E89122A45619A4E1B2 Ref B: SYD281080706034 Ref C: 2026-09-11T02:16:10Z' + - 'Ref A: 98045C885A9640E4B9DC1A418767E6A8 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"tags": {"cli-test": "test"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - resource delete + - resource tag Connection: - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json ParameterSetName: - - --id --no-wait + - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=?api-version=2026-07-01&t=639246897712839190&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=V6sIzDgMAo5Z6kVP4fzcDdN8NbCoWPIH4Mjmi4MGWeIaGKnco0g7RxBEHyi9r-xwC013-3NMOTyCNnQIMCeO8QrrSpwW4YspSZuOPXQfqvEAs8gqchyKqMz7ZS88flIM9zx6qHER_QrwwyWg3g9JQDLuDFPRQJjn5_Nk1mG8_e5H_swc4LvpHk6gpiWQF_jFM6-vBIFIzCHBeVJToeP-I7J7x5BeqT8FKafsbzoX6Pd7oOjwQDBLR6VavVoNhSrEEl431Vn3kG_0hlVBMq-R7rn8I9QFXIo9d2RtladhEfKIFTuvIrVct6aZMjzZ4z5t-Xs9sDSNmD2YCvTyEQPvhw&h=rSPexFdj_WM_-ewaSRY9s4NbDX9PsCRH_0JLT1w9Aqc + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=\",\r\n - \ \"name\": \"MTAyMztjZDE1M2UyYS1mNDI0LTRmNzctODA1NS02NTZiZDM2MTRiNjg=\",\r\n - \ \"status\": \"Succeeded\"\r\n}" + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A49%3A25.1684641Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '344' + - '1037' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:11 GMT + - Fri, 25 Apr 2025 09:49:25 GMT expires: - '-1' pragma: @@ -7527,11 +3951,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/2148b9ee-f6a0-4f99-bf10-85c1e81efbeb - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/90b56c94-6ddf-406f-a0b0-91f773dc9f8a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' x-msedge-ref: - - 'Ref A: 49C314A8D22243A1A19ECBC5CB700609 Ref B: SYD281080709029 Ref C: 2026-09-11T02:16:12Z' + - 'Ref A: 9E45D7C5D3CF4B64A54730CD8CE8F088 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:23Z' status: code: 200 message: OK @@ -7543,18 +3967,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - resource delete + - resource tag Connection: - keep-alive ParameterSetName: - - --id + - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -7564,337 +3988,3078 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '57783' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D761F10D79B94D87B8B7C5863648E955 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + cache-control: + - no-cache + content-length: + - '634' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3AB4ABBB4ED7492183EB485CABC899DC Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {"cli-test": "test"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:49:29.1704021+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + cache-control: + - no-cache + content-length: + - '651' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5dcd2977-c8db-491d-9230-d66b69dd7e62 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 1329C9663FA242BCB33C1A137BBDA4F9 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:27Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia SouthEast","Brazil + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West India","West + US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland + North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + Central","Australia Central 2","Australia East","Australia SouthEast","Brazil + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West India","West + US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '20484' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 03B4F8EEFC8A4E77A67E60AC58D6C42C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + response: + body: + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + headers: + cache-control: + - no-cache + content-length: + - '1630' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0624971856614FA29A2D9EA60511719C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {"cli-test": "test"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + response: + body: + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + headers: + azure-asyncnotification: + - Enabled + cache-control: + - no-cache + content-length: + - '1647' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/0db39ab4-d695-4d3c-a150-efc6a5e76dfd + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: EE86E7EC44774195B776B69A8F96A135 Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:32Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"idleTimeoutInMinutes": 4, "publicIPAllocationMethod": + "Static"}, "sku": {"name": "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '132' + Content-Type: + - application/json + ParameterSetName: + - -g -n --location --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 + response: + body: + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"6545fe77-172c-4914-bfba-b41c1f3b7b37\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY + cache-control: + - no-cache + content-length: + - '617' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 76a2d317-a418-4652-b3e4-0944e1b77834 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a8bff673-eaf6-466e-9e24-89b834eec07e + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: C09ADFEE414C412DAAC85C9805D01719 Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:37Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 518a0273-7ccb-416e-af57-6efdf4e72289 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/6b13d0b7-b2f7-4abc-aba1-436ca7bd1766 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3A55F322EDD6448AA1139A8371FD530E Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 + response: + body: + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + headers: + cache-control: + - no-cache + content-length: + - '645' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:41 GMT + etag: + - W/"763cb332-0037-4875-9944-f0082f733ca0" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0be6840f-a5ef-49ea-b861-112445ceee4a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F9D514ABF06D4C8CAC78B0253AC8378C Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + Central US","East US 2","West Europe","North Europe","Australia East","UK + South","South Central US","East US","North Central US","West US 2","West US + 3","Southeast Asia","Central India","Canada Central","Central US","France + Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","South + Africa North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE + North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","UAE + North","South Africa North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","UAE North","South Africa North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Brazil South","Australia + East","Australia Southeast","Central India","South India","West India","Canada + Central","Canada East","West Central US","West US 2","UK West","UK South","France + Central","Australia Central","Japan West","Japan East","Korea Central","Korea + South","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","Jio India West","Jio India Central","North Central US","West + US","West Europe","UAE Central","Germany North","East US","West India","East + US 2","Australia Central","Australia Central 2","South Africa West","Brazil + South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland + West","East Asia","South Africa North","UK South","South India","Australia + Southeast","France South","West US 2","Sweden Central","Japan West","Norway + East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea + Central","Southeast Asia","South Central US","Norway West","Australia East","Japan + East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West + Central US","Jio India West","Jio India Central","North Central US","West + US","West Europe","UAE Central","Germany North","East US","West India","East + US 2","Australia Central","Australia Central 2","South Africa West","Brazil + South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland + West","East Asia","South Africa North","UK South","South India","Australia + Southeast","France South","West US 2","Sweden Central","Japan West","Norway + East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea + Central","Southeast Asia","South Central US","Norway West","Australia East","Japan + East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","France Central","South + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","France Central","South + Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany + West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE + North","Brazil South","Israel Central","North Central US","Australia Central","Australia + Central 2","Australia Southeast","South India","Canada East","France South","Germany + North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico + Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East + US 2","West US 2","East US","West Europe","UK South","North Europe","Central + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE + Central","Germany North","Central India","Korea South","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK + West","West US","East US","North Europe","West Europe","West Central US","South + Central US","Australia East","Australia Central","Australia Southeast","UK + South","East US 2","West US 2","North Central US","Canada Central","France + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar + Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany + North","Central India","Korea South","Switzerland North","Switzerland West","Japan + West","France South","South Africa West","West India","Canada East","South + India","Germany West Central","Norway East","Norway West","South Africa North","East + Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West + US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","South Central US","Australia East","Australia + Central","Australia Southeast","UK South","East US 2","West US 2","North Central + US","Canada Central","France Central","West Central US","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central + US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE + Central","Germany North","Central India","Korea South","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK + West","West US","East US","North Europe","West Europe","West Central US","South + Central US","Australia East","Australia Central","Australia Southeast","UK + South","East US 2","West US 2","North Central US","Canada Central","France + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio + India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany + North","Central India","Korea South","Switzerland North","Switzerland West","Japan + West","France South","South Africa West","West India","Canada East","South + India","Germany West Central","Norway East","Norway West","South Africa North","East + Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West + US","East US","North Europe","West Europe","West Central US","South Central + US","Australia East","Australia Central","Australia Southeast","UK South","East + US 2","West US 2","North Central US","Canada Central","France Central","Central + US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia + Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","South Central US STG","Brazil Southeast","Jio India Central","Sweden + South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East + US 2 EUAP","global","Central US","East US","East US 2","North Central US","South + Central US","West US","North Europe","West Europe","East Asia","Southeast + Asia","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","West US 2","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '217264' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' + x-msedge-ref: + - 'Ref A: 7026C7B1779748A6806FB51A6735A481 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:42Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + response: + body: + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + headers: + cache-control: + - no-cache + content-length: + - '645' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:44 GMT + etag: + - W/"763cb332-0037-4875-9944-f0082f733ca0" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2015d3da-5f14-4223-8194-aca015a9c884 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 680DA6436B36488D91A528650C8051A2 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {"cli-test": "test"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + response: + body: + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"1a7cc129-5b0a-42e9-98ac-13a7aa041ed7\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + headers: + azure-asyncnotification: + - Enabled + cache-control: + - no-cache + content-length: + - '672' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e33a0c35-50e5-46b3-ac80-6ff76236bcd7 + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f3a82332-6400-4084-99d6-0012920eb33a + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 5A6C1882C1094A3697FBFF86D9E3991F Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"},{"applicationId":"e81c7467-0fc3-4866-b814-c973488361cd","roleDefinitionId":"212c936c-5360-4b3b-b2a1-b1eba3849a6f"},{"applicationId":"c505e273-0ba0-47e7-a0bd-f48042b4524d","roleDefinitionId":"a3d1c624-1f2f-41e8-9dc7-53fd55bcd821"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '21796' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F9F0D5481907418381FDFE77AEB430D5 Ref B: SEL221051804033 Ref C: 2025-04-25T09:49:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 25 Apr 2025 09:49:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/b36d76ad-341b-482b-b28d-720890097964 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' + x-msedge-ref: + - 'Ref A: FFE2EC7123264F3FA0D42878EF4BA9E2 Ref B: SEL221051504021 Ref C: 2025-04-25T09:49:51Z' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -7904,172 +7069,531 @@ interactions: Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central","Jio India West","Jio - India Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","Indonesia Central","New Zealand - North","Chile Central","Malaysia West","Belgium Central","Denmark East","Austria - East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '56858' + - '57783' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:12 GMT + - Fri, 25 Apr 2025 09:49:55 GMT expires: - '-1' pragma: @@ -8083,7 +7607,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4102259ABD7B42D386543F66806456AB Ref B: SYD281080707023 Ref C: 2026-09-11T02:16:12Z' + - 'Ref A: 3A13299400CB4680859362EF68DC9DED Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' status: code: 200 message: OK @@ -8103,9 +7627,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: string: '' @@ -8114,15 +7638,13 @@ interactions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:13 GMT + - Fri, 25 Apr 2025 09:49:59 GMT expires: - '-1' pragma: @@ -8134,13 +7656,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/4bc4c36e-2a8d-4467-a8e0-b93caeb0e51e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/1a53184b-df43-41f4-9fb7-297f87d9f21c x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 8D048E08FFEE44E9B3DBD94A4E95026D Ref B: SYD281080711060 Ref C: 2026-09-11T02:16:13Z' + - 'Ref A: ECF92E4BB06E40A6A6BCBE536FD795D7 Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' status: code: 200 message: OK @@ -8158,12 +7680,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8172,11 +7694,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8185,11 +7704,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8198,11 +7714,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8211,11 +7724,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8224,11 +7734,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8236,11 +7743,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8248,11 +7752,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8260,11 +7761,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -8272,11 +7770,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8285,11 +7780,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8298,11 +7790,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8311,11 +7800,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -8323,11 +7809,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","Switzerland West","France - South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8336,35 +7819,14 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","Jio India Central","Jio India West","India South - Central","Austria East","Chile Central","Belgium Central","Korea South","Poland - Central","Brazil Southeast","South Africa West","France South","Norway West","Switzerland - West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","West - US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8373,8 +7835,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8384,8 +7847,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8395,8 +7859,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8406,88 +7871,27 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8496,8 +7900,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8507,8 +7912,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8517,8 +7923,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8527,8 +7934,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8537,8 +7945,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8547,8 +7956,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8557,8 +7967,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8567,8 +7978,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8578,8 +7990,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8588,8 +8001,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8599,8 +8013,9 @@ interactions: Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE + North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8610,8 +8025,9 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8621,8 +8037,9 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8632,8 +8049,9 @@ interactions: North","South Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8643,8 +8061,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8654,8 +8073,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8664,19 +8084,9 @@ interactions: Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8686,8 +8096,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -8697,28 +8108,27 @@ interactions: South","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8727,8 +8137,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -8737,8 +8148,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8748,18 +8160,20 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","India - South Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","Denmark - East","Chile Central","Malaysia West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8769,28 +8183,27 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8800,21 +8213,21 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","Jio India West","Jio India Central","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil @@ -8824,9 +8237,9 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile - Central","New Zealand North","Indonesia Central","Malaysia West","Austria - East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","Jio India West","Jio India Central","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East @@ -8837,9 +8250,9 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Chile - Central","New Zealand North","Indonesia Central","Malaysia West","Austria - East","Denmark East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -8849,21 +8262,41 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -8873,9 +8306,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -8885,9 +8317,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -8896,9 +8327,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile - Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia - West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -8908,26 +8338,13 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Jio India Central","Chile - Central","Austria East","West US 3","Denmark East","Belgium Central","Malaysia - West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -8937,16 +8354,26 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada @@ -8957,8 +8384,8 @@ interactions: Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan @@ -8969,10 +8396,9 @@ interactions: US","North Europe","West Europe","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central + US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada @@ -8983,8 +8409,8 @@ interactions: Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany @@ -8996,9 +8422,8 @@ interactions: US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France Central","Central US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West @@ -9010,19 +8435,10 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","India South Central","Southeast - Asia","North Central US","South Central US","Central US","East US 2","Japan - East","Japan West","Brazil South","Australia East","Australia Southeast","Central - India","South India","West India","Canada Central","Canada East","West Central - US","West US 2","UK West","UK South","Korea Central","Korea South","France - Central","Australia Central","South Africa North","UAE North","Switzerland - North","Germany West Central","Norway East","West US 3","Jio India West","Sweden - Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9031,8 +8447,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9041,39 +8458,27 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9083,28 +8488,27 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9114,8 +8518,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9124,28 +8529,27 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9155,8 +8559,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9166,8 +8571,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9177,8 +8583,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9188,8 +8595,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9198,8 +8606,9 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -9209,8 +8618,9 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9220,8 +8630,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9231,8 +8642,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9242,8 +8654,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9253,8 +8666,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9264,8 +8678,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9275,39 +8690,27 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","1","3"]},{"location":"Austria East","zones":["2","1","3"]},{"location":"Belgium - Central","zones":["2","1","3"]},{"location":"Brazil South","zones":["2","1","3"]},{"location":"Canada - Central","zones":["2","1","3"]},{"location":"Central India","zones":["2","1","3"]},{"location":"Central - US","zones":["2","1","3"]},{"location":"Chile Central","zones":["2","1","3"]},{"location":"Denmark - East","zones":["2","1","3"]},{"location":"East Asia","zones":["2","1","3"]},{"location":"East - US","zones":["2","1","3"]},{"location":"East US 2","zones":["2","1","3"]},{"location":"France - Central","zones":["2","1","3"]},{"location":"Germany West Central","zones":["2","1","3"]},{"location":"India - South Central","zones":["2","1","3"]},{"location":"Indonesia Central","zones":["2","1","3"]},{"location":"Israel - Central","zones":["2","1","3"]},{"location":"Italy North","zones":["2","1","3"]},{"location":"Japan - East","zones":["2","1","3"]},{"location":"Japan West","zones":["2","1","3"]},{"location":"Korea - Central","zones":["2","1","3"]},{"location":"Malaysia West","zones":["2","1","3"]},{"location":"Mexico - Central","zones":["2","1","3"]},{"location":"New Zealand North","zones":["2","1","3"]},{"location":"North - Europe","zones":["2","1","3"]},{"location":"Norway East","zones":["2","1","3"]},{"location":"Poland - Central","zones":["2","1","3"]},{"location":"Qatar Central","zones":["2","1","3"]},{"location":"South - Africa North","zones":["2","1","3"]},{"location":"South Central US","zones":["2","1","3"]},{"location":"Southeast - Asia","zones":["2","1","3"]},{"location":"Spain Central","zones":["2","1","3"]},{"location":"Sweden - Central","zones":["2","1","3"]},{"location":"Switzerland North","zones":["2","1","3"]},{"location":"UAE - North","zones":["2","1","3"]},{"location":"UK South","zones":["2","1","3"]},{"location":"West - Europe","zones":["2","1","3"]},{"location":"West US 2","zones":["2","1","3"]},{"location":"West - US 3","zones":["2","1","3"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9317,19 +8720,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Indonesia Central","New Zealand North","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9339,19 +8732,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9361,8 +8744,10 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","South Central US STG","Brazil Southeast","Jio India Central","Sweden + South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9372,9 +8757,10 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9383,8 +8769,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9393,8 +8780,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9403,8 +8791,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9413,8 +8802,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9423,8 +8813,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9433,8 +8824,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9443,8 +8835,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9453,8 +8846,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9463,8 +8857,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9473,8 +8868,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9483,8 +8879,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9493,8 +8890,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9503,8 +8901,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9513,8 +8912,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9523,8 +8923,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9533,8 +8934,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9543,8 +8945,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9553,8 +8956,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9563,8 +8967,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9573,8 +8978,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9583,8 +8989,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9593,8 +9000,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9603,8 +9011,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9613,8 +9022,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9623,8 +9033,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9634,8 +9045,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9645,8 +9057,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9655,8 +9068,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -9666,8 +9080,9 @@ interactions: Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9677,8 +9092,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9687,8 +9103,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9698,28 +9115,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9728,8 +9126,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9738,8 +9137,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9748,8 +9148,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9758,52 +9159,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9812,9 +9170,9 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -9823,20 +9181,44 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East + US 2 EUAP","global","Central US","East US","East US 2","North Central US","South + Central US","West US","North Europe","West Europe","East Asia","Southeast + Asia","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","West US 2","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '247084' + - '217264' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:16 GMT + - Fri, 25 Apr 2025 09:50:02 GMT expires: - '-1' pragma: @@ -9850,7 +9232,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 745B4A5B219F49C8B3242D276B282F91 Ref B: SYD281080711060 Ref C: 2026-09-11T02:16:14Z' + - 'Ref A: C04F98C8B5434EC981F532EC402C0BB3 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:00Z' status: code: 200 message: OK @@ -9870,9 +9252,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 response: body: string: '' @@ -9880,17 +9262,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc0dc97e-8bc6-48eb-b2f5-caa7d869d187?api-version=2026-03-01&t=639246897781861641&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=e1DxGRpyJ9bgX1cQ5YPFI0El2TS32iSO1nQi4KAVFQlxF78E7RTD4Z2WhjTFGmvfilafrQBNm3mwJNWqgHrGisxqDChx6pBwRToCenk5BhFTVvOfOCJRJ8sy6K_1491FAYJk2olykmQfkjdmOAE35vHWOwImOGXWlYdeWtatyYYp7TghUeKwpuDlkCxgeS0sqe8Bxa74nqp8pywWdeNmItfWE-rIclpm179IVFbebbAkCEZISTI2apwPpNfSLY_rBm2yJ-JZfcq6wga9hcTwM8M2vs7JnxWlLmicI-AHcOV5Aq7ltdOm094_qmQMI299h9-WRNXGFa82Xbl0h8Bfzw&h=OIFSw5W2oJ-IIYnY8Zu5VHqeefM1MCYVu8vbZQInix0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E cache-control: - no-cache content-length: - '0' date: - - Fri, 11 Sep 2026 02:16:17 GMT + - Fri, 25 Apr 2025 09:50:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/dc0dc97e-8bc6-48eb-b2f5-caa7d869d187?api-version=2026-03-01&t=639246897781861641&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=r4jW7YVWb4VC_teU20v1qtNu0idQ34WzJJ_eTT2n7qxbLygsg41FRkdq_Vg_kVQe-z0FmTj2eV5VapG_L5gPuZKT7O8YvaTmzpf6S0HbLXbhM7hMYy2VknQ7XtXxqizfjZ2qH3QT3EN-9iklCSl3LwX4gRSKE2jD-QDrjh7F8WIXbQlnzCZfzMS16H0FD3DOxbt-dn73NOJ7JaI8rQNbX3oJ60jmqKrW48Cu8CbS_NpSrDOJlvfPUOKW3kc9OZH-1PA_jiVsNG67zLpXefKBpvfrbR9zjI0FYti5Any90KB1UcVwFgy3pmZdIrsiX19rn0XfhSWICl-aCa60-Kk3fw&h=Y2yUZYN6uRcbz5Ep_Izhr0LyVdaL2C7TVY7Usn5dr7A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062372959&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=ryZ0HaYqajQCYVen-6FUFbXNpw3olloaqo4pixCIC8lMDbbprZxw73VbeHtcMctgdVtSE4Z6ly0BesuQ1gkblQJGiuqRtJlGS_lrKboosaAHF6adyQ4UH3WKQWDMTPLPKsX0-Yxy7UdBUJzObQJPDoGg5PuqvUtKt92k-I5fqU2u7GB1VAvz2rHPnwPW4_PVel6tqznKpsbY6TYUzrvTPIuWRMFUQ_87LmA44kqKjFS_ohwB_KijQMCOBkPkXF7v3aYDeexZxmRg18peXkVyvaBILn9N1-txnxzxx2aDHFWWnl1wpnlGZobLPTgbh62oUTC4fGXLOPo-uWDiUAXSew&h=yO8x9w5WPlTS0cgHJIJGChoGYwRxs8TEIIMGfueuBbY pragma: - no-cache strict-transport-security: @@ -9900,18 +9282,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a1df350-c7ad-4ef1-a86d-0bb903907dea + - b9f9f9c2-7b86-40c8-8fcf-bcf043d55843 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/1871c8f6-b9d8-41e5-99c3-5d54b253d547 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/501b84f0-6c16-4fbb-9836-08d592a8a1ee x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.3, - etc x-msedge-ref: - - 'Ref A: BA940F10CD064C09B560EEF8076F9C5C Ref B: SYD281080709034 Ref C: 2026-09-11T02:16:17Z' + - 'Ref A: 772976AE407940DC9ED54814F78A1B23 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:04Z' status: code: 202 message: Accepted @@ -9929,9 +9308,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dc0dc97e-8bc6-48eb-b2f5-caa7d869d187?api-version=2026-03-01&t=639246897781861641&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=e1DxGRpyJ9bgX1cQ5YPFI0El2TS32iSO1nQi4KAVFQlxF78E7RTD4Z2WhjTFGmvfilafrQBNm3mwJNWqgHrGisxqDChx6pBwRToCenk5BhFTVvOfOCJRJ8sy6K_1491FAYJk2olykmQfkjdmOAE35vHWOwImOGXWlYdeWtatyYYp7TghUeKwpuDlkCxgeS0sqe8Bxa74nqp8pywWdeNmItfWE-rIclpm179IVFbebbAkCEZISTI2apwPpNfSLY_rBm2yJ-JZfcq6wga9hcTwM8M2vs7JnxWlLmicI-AHcOV5Aq7ltdOm094_qmQMI299h9-WRNXGFa82Xbl0h8Bfzw&h=OIFSw5W2oJ-IIYnY8Zu5VHqeefM1MCYVu8vbZQInix0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E response: body: string: '{"status":"Succeeded"}' @@ -9943,7 +9322,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2026 02:16:19 GMT + - Fri, 25 Apr 2025 09:50:05 GMT expires: - '-1' pragma: @@ -9955,15 +9334,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a3ae7fe-6ed0-4237-8f72-001c54d7dd44 + - 9fb10464-98bd-4864-b76b-161ff5a3247d x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/c1e9871a-1aa8-4eb2-ad63-6a28f3c73d21 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/788679c1-b1e4-4748-b17d-99d1ff51dfe9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: D44E3CA6905D403F9B2D93EDE9E29479 Ref B: SYD281080709042 Ref C: 2026-09-11T02:16:19Z' + - 'Ref A: 4C7B77964DE94F729CC2A4B8BF54CE72 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:06Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index a408fdbc6ea..31021450529 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -491,7 +491,7 @@ def test_tag_update_by_patch(self, resource_group, resource_group_location): self.kwargs['public_ip_id'] = public_ip['publicIp']['id'] self.cmd('resource tag --ids {public_ip_id} --tags {tag}', checks=self.check('tags', {'cli-test': 'test'})) - self.cmd('resource delete --id {vault_id} --no-wait', checks=self.is_empty()) + self.cmd('resource delete --id {vault_id}', checks=self.is_empty()) self.cmd('resource delete --id {webhook_id}', checks=self.is_empty()) self.cmd('resource delete --id {public_ip_id}', checks=self.is_empty()) From 1bc7755be1147e96895cf89d782226f0dd1f2f3a Mon Sep 17 00:00:00 2001 From: Azure CLI Team Date: Sat, 12 Sep 2026 07:25:40 +0000 Subject: [PATCH 08/19] Rerun tests from instance 1. See test_results_None_latest_1.serial.xml for details --- .../test_private_endpoint_connection_acr.yaml | 753 +++++++++--------- .../test_private_link_resource_acr.yaml | 199 +---- 2 files changed, 394 insertions(+), 558 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml index d653c110a77..f09d18b4d53 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet create Connection: @@ -13,12 +13,13 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:10 GMT + - Sat, 12 Sep 2026 07:22:57 GMT expires: - '-1' pragma: @@ -41,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C7FBCE6C4E64426EA5E09B01240D2D1B Ref B: SG2AA1070304036 Ref C: 2026-04-24T02:58:11Z' + - 'Ref A: 410A462A38644DFC857EFC67832ACDBD Ref B: BN1AA2051012051 Ref C: 2026-09-12T07:22:57Z' status: code: 200 message: OK @@ -53,7 +54,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet create Connection: @@ -65,25 +66,26 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003?api-version=2025-07-01 response: body: - string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"0baf34c0-afa8-4078-be81-63a020fd1001\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"c63d89ff-040e-47a7-af5a-7d99c6f2c68e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"0baf34c0-afa8-4078-be81-63a020fd1001\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"472f25bb-ac14-45b6-813b-12668ce5da0c\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"0de24103-3dbe-4218-a1a4-03734e215843","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"472f25bb-ac14-45b6-813b-12668ce5da0c\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/9b504664-4739-4c44-94c3-61ff6f5cdc50?api-version=2025-07-01&t=639125962921915759&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=LTMRMopK4mE307_rjZb9biGTPMmKXzfds8qjMEnz2MZsIIdz1U8eLgIYqjp2LG30uVn3QVGb_ebpfTspZ2cxYkHcLRMNxMoeq9D_ngJSvFzfYsotjheMovzxSVgmueaK0k3d01CDgP3uFXqSFC6er-t-f1N4PbkiacvUtSktw0sv2F_C43wBjwklhQov_eRox8Jd1-naAqsiykXHvibGgW_JINboFIcK--CmuGY8SHRxEVs00qTOUYsK7784NkZljQBc1GTvgxK8rFIrAx30jJKc6EmPk22Fdc-Vd6fYf1CBQrx1YjH4rLUQMYQQB2Bmqod3XqEgLp-IOg9S0Ah64Q&h=43bCUCCBpk0oWC63Q_Mm4ALHZQr-337qIzInw00mki4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/5cf1822b-7767-4f26-9cf9-0a915c19806e?api-version=2025-07-01&t=639247945792098703&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=R9RB7Dv0FhUyGwPuClFsBJTk13VTYczkBuBMJcbTMMaQ7UXwQiVAXRZh4hkC4rWALt1l5MRuj6lCitL_cG5JwIt_stCK9Np_BOkLc0BwwhKMQbiXIj_174yy_RUd0Vj-mME3FgDXuhxQ_vww7z0BFL6uEL8xfXZe4_999Du4wil6nannOwpW4Dgpyycdnoyn8q-S8MrBHxl7lvjroyNSVICliK7jjgFq-AC7js5fwaMWDZ38s5qhOvT7upL_ryzb_ksbKp07lornkLgmeXEJiklNM5a3e9Z2TIV7K6LGwcFNWtRs4mo9oBRYyeh_2U53ZSHmqHhZ1RSMp0dvIPaVQA&h=XmjJuYe4vX732YvJpFOOny7Df8y3IhRGauOWtpXqREU cache-control: - no-cache content-length: - - '1043' + - '1073' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:11 GMT + - Sat, 12 Sep 2026 07:22:58 GMT expires: - '-1' pragma: @@ -95,15 +97,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6954abd5-7418-4603-87de-fdd6cd436ada + - cb4856e1-81a3-4baa-80ac-445b79b5aadc x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/deb97207-f308-438e-9c44-2ddc9230dc36 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/2ac514f9-49cb-4ad1-a53b-f2ec1db697cb x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, etc x-msedge-ref: - - 'Ref A: EC9133E733C046A18313945E993A8CD2 Ref B: SG2AA1070302052 Ref C: 2026-04-24T02:58:11Z' + - 'Ref A: 8F2D1BC20173455C9FC13C0AA8F903A4 Ref B: BN1AA2051014027 Ref C: 2026-09-12T07:22:58Z' status: code: 201 message: Created @@ -113,7 +117,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet create Connection: @@ -121,9 +125,10 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/9b504664-4739-4c44-94c3-61ff6f5cdc50?api-version=2025-07-01&t=639125962921915759&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=LTMRMopK4mE307_rjZb9biGTPMmKXzfds8qjMEnz2MZsIIdz1U8eLgIYqjp2LG30uVn3QVGb_ebpfTspZ2cxYkHcLRMNxMoeq9D_ngJSvFzfYsotjheMovzxSVgmueaK0k3d01CDgP3uFXqSFC6er-t-f1N4PbkiacvUtSktw0sv2F_C43wBjwklhQov_eRox8Jd1-naAqsiykXHvibGgW_JINboFIcK--CmuGY8SHRxEVs00qTOUYsK7784NkZljQBc1GTvgxK8rFIrAx30jJKc6EmPk22Fdc-Vd6fYf1CBQrx1YjH4rLUQMYQQB2Bmqod3XqEgLp-IOg9S0Ah64Q&h=43bCUCCBpk0oWC63Q_Mm4ALHZQr-337qIzInw00mki4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/5cf1822b-7767-4f26-9cf9-0a915c19806e?api-version=2025-07-01&t=639247945792098703&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=R9RB7Dv0FhUyGwPuClFsBJTk13VTYczkBuBMJcbTMMaQ7UXwQiVAXRZh4hkC4rWALt1l5MRuj6lCitL_cG5JwIt_stCK9Np_BOkLc0BwwhKMQbiXIj_174yy_RUd0Vj-mME3FgDXuhxQ_vww7z0BFL6uEL8xfXZe4_999Du4wil6nannOwpW4Dgpyycdnoyn8q-S8MrBHxl7lvjroyNSVICliK7jjgFq-AC7js5fwaMWDZ38s5qhOvT7upL_ryzb_ksbKp07lornkLgmeXEJiklNM5a3e9Z2TIV7K6LGwcFNWtRs4mo9oBRYyeh_2U53ZSHmqHhZ1RSMp0dvIPaVQA&h=XmjJuYe4vX732YvJpFOOny7Df8y3IhRGauOWtpXqREU response: body: string: '{"status":"InProgress"}' @@ -135,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:13 GMT + - Sat, 12 Sep 2026 07:22:59 GMT expires: - '-1' pragma: @@ -147,13 +152,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee435adf-94f4-40a5-aeb5-c42db0fbc1df + - f6d27f04-6b3c-47f5-9dae-1a5ebd7cb812 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/8871f666-27f8-4ec1-96da-b3a10a6c6121 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/56fe61f0-f5f0-4386-96e1-8090779be11e x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 0E7EE4E5DE0644D88B75D10F549A2608 Ref B: SG2AA1040515036 Ref C: 2026-04-24T02:58:12Z' + - 'Ref A: F9D197076E6C4B769AA08E37A065FC9E Ref B: BN1AA2051013021 Ref C: 2026-09-12T07:22:59Z' status: code: 200 message: OK @@ -163,7 +170,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet create Connection: @@ -171,9 +178,10 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/9b504664-4739-4c44-94c3-61ff6f5cdc50?api-version=2025-07-01&t=639125962921915759&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=LTMRMopK4mE307_rjZb9biGTPMmKXzfds8qjMEnz2MZsIIdz1U8eLgIYqjp2LG30uVn3QVGb_ebpfTspZ2cxYkHcLRMNxMoeq9D_ngJSvFzfYsotjheMovzxSVgmueaK0k3d01CDgP3uFXqSFC6er-t-f1N4PbkiacvUtSktw0sv2F_C43wBjwklhQov_eRox8Jd1-naAqsiykXHvibGgW_JINboFIcK--CmuGY8SHRxEVs00qTOUYsK7784NkZljQBc1GTvgxK8rFIrAx30jJKc6EmPk22Fdc-Vd6fYf1CBQrx1YjH4rLUQMYQQB2Bmqod3XqEgLp-IOg9S0Ah64Q&h=43bCUCCBpk0oWC63Q_Mm4ALHZQr-337qIzInw00mki4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/5cf1822b-7767-4f26-9cf9-0a915c19806e?api-version=2025-07-01&t=639247945792098703&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=R9RB7Dv0FhUyGwPuClFsBJTk13VTYczkBuBMJcbTMMaQ7UXwQiVAXRZh4hkC4rWALt1l5MRuj6lCitL_cG5JwIt_stCK9Np_BOkLc0BwwhKMQbiXIj_174yy_RUd0Vj-mME3FgDXuhxQ_vww7z0BFL6uEL8xfXZe4_999Du4wil6nannOwpW4Dgpyycdnoyn8q-S8MrBHxl7lvjroyNSVICliK7jjgFq-AC7js5fwaMWDZ38s5qhOvT7upL_ryzb_ksbKp07lornkLgmeXEJiklNM5a3e9Z2TIV7K6LGwcFNWtRs4mo9oBRYyeh_2U53ZSHmqHhZ1RSMp0dvIPaVQA&h=XmjJuYe4vX732YvJpFOOny7Df8y3IhRGauOWtpXqREU response: body: string: '{"status":"Succeeded"}' @@ -185,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:23 GMT + - Sat, 12 Sep 2026 07:23:09 GMT expires: - '-1' pragma: @@ -197,13 +205,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e6686fd-2e88-43e2-879e-a01432fdcbec + - ba99c0ae-5017-4998-b532-62753349a276 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/malaysiasouth/76a35f2a-282c-44e1-b616-65eb4864b6e2 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a081bbe3-407f-4b37-8cc1-10cc31518b0b x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 053F0D6C86194041A21576AD9E0AEFD4 Ref B: SG2AA1070304025 Ref C: 2026-04-24T02:58:23Z' + - 'Ref A: 49967CC1EC334E3B88B93EAC4EC8ADCF Ref B: BN1AA2051012051 Ref C: 2026-09-12T07:23:10Z' status: code: 200 message: OK @@ -213,7 +223,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet create Connection: @@ -221,21 +231,22 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003?api-version=2025-07-01 response: body: - string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"044a3ea6-d213-490e-85e1-26bd69a9402e\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"c63d89ff-040e-47a7-af5a-7d99c6f2c68e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"044a3ea6-d213-490e-85e1-26bd69a9402e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"edef7302-6ec9-4263-81d0-5817d2a95e5f\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"0de24103-3dbe-4218-a1a4-03734e215843","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"edef7302-6ec9-4263-81d0-5817d2a95e5f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1045' + - '1075' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:24 GMT + - Sat, 12 Sep 2026 07:23:10 GMT expires: - '-1' pragma: @@ -247,11 +258,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cdf6ddb3-0dbe-432f-a8a3-5ce73e1c7c60 + - 0bd67a3c-2b8a-4eee-ae7b-1ddef2866146 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationRatePct=0.2, operationConcurrencyPct=2.0, etc x-msedge-ref: - - 'Ref A: CDC42138505B4A14A1C180E834FF67FA Ref B: SG2AA1070301062 Ref C: 2026-04-24T02:58:24Z' + - 'Ref A: 17E0AD237BF24820B72CE07C7D20FF10 Ref B: BN1AA2051014039 Ref C: 2026-09-12T07:23:10Z' status: code: 200 message: OK @@ -261,7 +274,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet subnet update Connection: @@ -269,23 +282,24 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"044a3ea6-d213-490e-85e1-26bd69a9402e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"edef7302-6ec9-4263-81d0-5817d2a95e5f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '489' + - '519' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:25 GMT + - Sat, 12 Sep 2026 07:23:11 GMT etag: - - W/"044a3ea6-d213-490e-85e1-26bd69a9402e" + - W/"edef7302-6ec9-4263-81d0-5817d2a95e5f" expires: - '-1' pragma: @@ -297,56 +311,59 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4002e20a-9017-442d-8252-e91f4acba1e9 + - 4c3c241f-05f4-4b85-b626-38c4dcdafef5 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/ddc1d12a-34d9-466b-a092-2f170e2a0ef8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/bc7699f7-da96-4396-86da-1185b2549f52 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 657015A5B0934E1FAA576C58734984A4 Ref B: SG2AA1040520042 Ref C: 2026-04-24T02:58:25Z' + - 'Ref A: DFA61B6E7C27471287AE75995A724E20 Ref B: BN1AA2051014019 Ref C: 2026-09-12T07:23:11Z' status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004", - "name": "testsubnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": - [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": + "name": "testsubnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": + false, "delegations": [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet subnet update Connection: - keep-alive Content-Length: - - '419' + - '451' Content-Type: - application/json ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"e8c534db-bb2c-4b04-a2c1-2a691566156c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"5f5e5705-8242-40ff-a318-51bc9ddb653e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/75d8dc29-959b-400e-8c7b-f37a30ca5b9d?api-version=2024-07-01&t=639125963078968935&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=nlHH0C17SJM5TeQ2fD2v_tWcvGeCfIjk4WIzrjUUSZyLZ_wAxBihhOslegJs9_TwK-7xaMeqL_oNYV3XaAOfYd-Mj_nIaVzoQFcEjelMpT7P7bjFudaPVSS1ce63YIqSCPC8cMd0lqcP0ZvQxNmzsANKFlZWC3iXPOsQvo1CV6LMkxjh0exMAjL7LkpgdWJzCV-8rZI2ImLHaVJdfz2_a_TITTTnUjAzFR8Cd4tGLJs8RJxV0xm31e9S-TJITHXy7zA15cUBVquLBjJ5Ph8RkqSMZYvRxKdUaKO6oy_Mxq5-I4FAVWLn2Q32DDt6aS0YF_kyx8fpK_ckf7UgmziiXw&h=V2hGvprxTOKsVAVgcWXmMW_HXwVw-OCWEpHXKzk-izc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/77cb8983-a988-4802-853b-f79a6f9e1a92?api-version=2024-07-01&t=639247945929063646&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=h5rdmNTQt81KhOz5wepGxmMr9eeuyrEARUSmxYzE0E9sYeFXKRXNcfbQHJSeUXScdi8QKEUon1XnU-u_FovNpvF2rZ1ToH3D5lFY9dTHpbtjBNdhdtrQIogLW1hkOu5CRZJzjldsL5QwqNKkKNvKRlcq87LfuUDDlDwxvoTL_XaRx0mVfza1FEx5T7pmtf-tgnu3rhFLk7KzCpJ6Ho4-iI7fWMpnk-EMZ_0PAnV0IAuoI8DcDQvxI-_RoBdC00McH2V4h7qdPCrKumy6ek9MhFaCTkCq4Z85P1YaXcjxBAz7fIWLS4VGFfDkD2aXsjhfXEu77oFnrrz3WlXPutHbsQ&h=y2bUlLydOHKqb8zYH25m_eNBrIdr0p9wrT3qH1jBOp8 cache-control: - no-cache content-length: - - '489' + - '519' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:27 GMT + - Sat, 12 Sep 2026 07:23:12 GMT expires: - '-1' pragma: @@ -358,15 +375,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a87cd952-9c1f-4886-96d0-aa2d1b9b2a36 + - e957f2b4-f762-4ddb-8321-61d23d9df744 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/ed54b0ee-7525-47a7-a320-4ccf3b19c38b + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/c7c4ee30-8db0-49c1-9962-f09fc6395dff x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: 6BF288D536BC4A398DBE82432DD5FC17 Ref B: SG2AA1040518054 Ref C: 2026-04-24T02:58:26Z' + - 'Ref A: 0429E2E6276744D1A676C7D3BF333037 Ref B: BN1AA2051012049 Ref C: 2026-09-12T07:23:12Z' status: code: 200 message: OK @@ -376,7 +396,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet subnet update Connection: @@ -384,9 +404,10 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/75d8dc29-959b-400e-8c7b-f37a30ca5b9d?api-version=2024-07-01&t=639125963078968935&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=nlHH0C17SJM5TeQ2fD2v_tWcvGeCfIjk4WIzrjUUSZyLZ_wAxBihhOslegJs9_TwK-7xaMeqL_oNYV3XaAOfYd-Mj_nIaVzoQFcEjelMpT7P7bjFudaPVSS1ce63YIqSCPC8cMd0lqcP0ZvQxNmzsANKFlZWC3iXPOsQvo1CV6LMkxjh0exMAjL7LkpgdWJzCV-8rZI2ImLHaVJdfz2_a_TITTTnUjAzFR8Cd4tGLJs8RJxV0xm31e9S-TJITHXy7zA15cUBVquLBjJ5Ph8RkqSMZYvRxKdUaKO6oy_Mxq5-I4FAVWLn2Q32DDt6aS0YF_kyx8fpK_ckf7UgmziiXw&h=V2hGvprxTOKsVAVgcWXmMW_HXwVw-OCWEpHXKzk-izc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/77cb8983-a988-4802-853b-f79a6f9e1a92?api-version=2024-07-01&t=639247945929063646&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=h5rdmNTQt81KhOz5wepGxmMr9eeuyrEARUSmxYzE0E9sYeFXKRXNcfbQHJSeUXScdi8QKEUon1XnU-u_FovNpvF2rZ1ToH3D5lFY9dTHpbtjBNdhdtrQIogLW1hkOu5CRZJzjldsL5QwqNKkKNvKRlcq87LfuUDDlDwxvoTL_XaRx0mVfza1FEx5T7pmtf-tgnu3rhFLk7KzCpJ6Ho4-iI7fWMpnk-EMZ_0PAnV0IAuoI8DcDQvxI-_RoBdC00McH2V4h7qdPCrKumy6ek9MhFaCTkCq4Z85P1YaXcjxBAz7fIWLS4VGFfDkD2aXsjhfXEu77oFnrrz3WlXPutHbsQ&h=y2bUlLydOHKqb8zYH25m_eNBrIdr0p9wrT3qH1jBOp8 response: body: string: '{"status":"Succeeded"}' @@ -398,7 +419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:28 GMT + - Sat, 12 Sep 2026 07:23:12 GMT expires: - '-1' pragma: @@ -410,13 +431,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab92b3a3-cb6f-4f71-82e4-432f7fae0e5c + - ce224a5b-7844-4087-9902-2133b800c953 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/0bccd1c9-9e10-44a5-9087-35e69540d5ff + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ad8308b7-3d69-49e9-acf8-41a803c05203 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 74485E16F54F4DCABD41F346516F7F48 Ref B: SG2AA1070302042 Ref C: 2026-04-24T02:58:28Z' + - 'Ref A: D5D901FDBEF64464A339E6204099B0B6 Ref B: BN1AA2051013023 Ref C: 2026-09-12T07:23:13Z' status: code: 200 message: OK @@ -426,7 +449,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network vnet subnet update Connection: @@ -434,23 +457,24 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"e8c534db-bb2c-4b04-a2c1-2a691566156c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"5f5e5705-8242-40ff-a318-51bc9ddb653e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '489' + - '519' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:29 GMT + - Sat, 12 Sep 2026 07:23:13 GMT etag: - - W/"e8c534db-bb2c-4b04-a2c1-2a691566156c" + - W/"5f5e5705-8242-40ff-a318-51bc9ddb653e" expires: - '-1' pragma: @@ -462,13 +486,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2fc0318-99bc-434b-a377-eefdac0d3fdf + - 939623cc-4e29-4653-87d7-083e5538c3b2 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/6b642276-9590-4ac5-82a4-6005575a14e6 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/afd55743-943d-4871-8e78-cbb060749b47 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 22CBA4764084480682D501325E43D03D Ref B: SG2AA1070303036 Ref C: 2026-04-24T02:58:29Z' + - 'Ref A: CE93118E6B3645CAA26BCA9798963E77 Ref B: BN1AA2051012009 Ref C: 2026-09-12T07:23:13Z' status: code: 200 message: OK @@ -478,7 +504,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -486,12 +512,13 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -500,7 +527,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:30 GMT + - Sat, 12 Sep 2026 07:23:14 GMT expires: - '-1' pragma: @@ -514,48 +541,47 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7F93D78AC26C49458A800602A4BC6AB0 Ref B: SG2AA1070304031 Ref C: 2026-04-24T02:58:30Z' + - 'Ref A: FA66083A4F9144DCBB2978CCABE094CE Ref B: BN1AA2051014027 Ref C: 2026-09-12T07:23:14Z' status: code: 200 message: OK - request: body: '{"location": "centralus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": - false, "anonymousPullEnabled": false}}' + false}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: - keep-alive Content-Length: - - '127' + - '96' Content-Type: - application/json ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:58:32.7963077+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:58:32.7963077+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-24T02:58:32.7963077Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-24T02:58:39.8421426+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:23:15.0106219+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:23:15.0106219+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-12T07:23:15.0106219Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:23:22.094768+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:23:22.0950592+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - '2025-04-01' - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-790881ce-3f89-11f1-8688-7ced8db4dd25?api-version=2025-04-01&t=639125963210150727&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=EdwVOO3VbHfT-ml9eQ8AItEJBtS3gNjTmX2HPDmCuwTRMpQbMNdyz0DvMvf5e3EzmLLre4CwMfseySVzpEeCQHuF0TNJCOAoo5MVLj58LBm5nAhyVEdmY-hh-m65Lv6mqRimfWxJJ_XWlAplUQ8qHwi1tqHEJAkBEsRfSTu8GDTihRnx08oBjOX5G5ivxy_GQlsht2mIpnDZVGDRhC86lLpGabDA3SKSkRfvWUBi6rWeyfDR7YZOIYtCEBfFkXEyJ7z4TGCHC3f6YGCqmaD3pCWncllD6XcnEZmohvuMtgzpS-yCo3CtlcA3rEZpHpkKRhEtwg6r1jxCUOz4o5yItA&h=C7jMCQnRGtTBZC2fjL-lhweQpQKQabTr7-zc1m7gL9U + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1304' + - '1781' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:40 GMT + - Sat, 12 Sep 2026 07:23:22 GMT expires: - '-1' pragma: @@ -567,113 +593,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/eea31283-b400-43b9-b367-bd11e99089b8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/fac08eb1-9f39-4b91-bbf3-a9057cb404d9 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 39D702B6C0A341C4831D268773330725 Ref B: SG2AA1040512025 Ref C: 2026-04-24T02:58:30Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-790881ce-3f89-11f1-8688-7ced8db4dd25?api-version=2025-04-01&t=639125963210150727&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=EdwVOO3VbHfT-ml9eQ8AItEJBtS3gNjTmX2HPDmCuwTRMpQbMNdyz0DvMvf5e3EzmLLre4CwMfseySVzpEeCQHuF0TNJCOAoo5MVLj58LBm5nAhyVEdmY-hh-m65Lv6mqRimfWxJJ_XWlAplUQ8qHwi1tqHEJAkBEsRfSTu8GDTihRnx08oBjOX5G5ivxy_GQlsht2mIpnDZVGDRhC86lLpGabDA3SKSkRfvWUBi6rWeyfDR7YZOIYtCEBfFkXEyJ7z4TGCHC3f6YGCqmaD3pCWncllD6XcnEZmohvuMtgzpS-yCo3CtlcA3rEZpHpkKRhEtwg6r1jxCUOz4o5yItA&h=C7jMCQnRGtTBZC2fjL-lhweQpQKQabTr7-zc1m7gL9U - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - '2025-04-01' - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-790881ce-3f89-11f1-8688-7ced8db4dd25?api-version=2025-04-01&t=639125963217023943&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=YUKrY34OyiKqhUC68KsEhPfzE8DRQD8jfc6huV2KUYVCx4PRmK-G19-2NBsjxrrLr_3L5BFlUuNeZ1BImYqpw4d_N1s4S5HtxzYNk5-HD-cJJjICoUpfg_CDgPpKKX46RBVCDK9KfhfsjupRoi3EuFw3ZTPB9K3m_PY_uwQiEOZUcY5p7adOaXn_UPWg5-BUP4vnJRPyNK2zSmS2y2qOjIJcoyOAU7G_wxfJyC1vAF_gDL2XxiPyM2TSOJfo8KWiuXeNpwcJDeP31-nqLWUWlTWOXRJ7wwyC5kOZsu2Op0DZjeg1n8WpC8jJQNKJvD0jGjQygUisd1iR_R6xImQKPg&h=A8owN3qzQgK6OGTfP3bkWunIsIgCpRmvMF2u5b91i0k - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 24 Apr 2026 02:58:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/ea6bd1a1-b1da-49a3-a97f-a37b7fd13ac0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DE6CDDB070D842A89281644BF8356867 Ref B: SG2AA1040513031 Ref C: 2026-04-24T02:58:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:58:32.7963077+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:58:32.7963077+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-24T02:58:32.7963077Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-24T02:58:39.8421426+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' - headers: - api-supported-versions: - - '2025-04-01' - cache-control: - - no-cache - content-length: - - '1305' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 24 Apr 2026 02:58:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4A6715809E34403BBC2087D6401266FA Ref B: SG2AA1070306036 Ref C: 2026-04-24T02:58:41Z' + - 'Ref A: 60907429577D49159C09F74C2DDD7192 Ref B: BN1AA2051013039 Ref C: 2026-09-12T07:23:14Z' status: code: 200 message: OK @@ -683,7 +609,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -692,12 +618,13 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -706,7 +633,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:42 GMT + - Sat, 12 Sep 2026 07:23:21 GMT expires: - '-1' pragma: @@ -720,7 +647,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 03552DD46E3F4DC3B14C79E830FFC77A Ref B: SG2AA1040518042 Ref C: 2026-04-24T02:58:42Z' + - 'Ref A: C4DD7E6ECE66448EB17F7019CCE5B4CD Ref B: BN1AA2051015017 Ref C: 2026-09-12T07:23:22Z' status: code: 200 message: OK @@ -733,7 +660,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -746,18 +673,19 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"6789a980-117b-4bf5-90e7-9454a27e00fc\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"1885062d-b88a-436f-9777-c3e4d2ff31b9","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"6789a980-117b-4bf5-90e7-9454a27e00fc\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting - Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.60bb890d-7289-4e3c-910c-65302aca19a0"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"e322b7e6-5536-458d-b3b5-801b6c8ec992\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"26de0faf-5d84-429e-8238-82e827eafb5e","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"e322b7e6-5536-458d-b3b5-801b6c8ec992\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.1ffdf25d-a0f5-4b3e-815e-44b1b9e98584"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk cache-control: - no-cache content-length: @@ -765,7 +693,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:44 GMT + - Sat, 12 Sep 2026 07:23:22 GMT expires: - '-1' pragma: @@ -777,15 +705,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b50236f4-5c74-4243-91ad-b220e8129ead + - 91232c85-dbfb-4ea3-a9d0-df613a752fa4 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/ab2187a5-f252-4692-a609-84c79c8debb7 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/0fdc66ca-0c29-42ba-98f3-feb83a7f409e x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 85D93C7944CC4CB6AB347AC17C01831A Ref B: SG2AA1070303023 Ref C: 2026-04-24T02:58:43Z' + - 'Ref A: 60AFE07555484311A913A0E01DD47285 Ref B: BN1AA2051014047 Ref C: 2026-09-12T07:23:22Z' status: code: 201 message: Created @@ -795,7 +726,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -804,9 +735,10 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk response: body: string: '{"status":"InProgress"}' @@ -818,7 +750,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:44 GMT + - Sat, 12 Sep 2026 07:23:23 GMT expires: - '-1' pragma: @@ -830,13 +762,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c5d42cb-2be2-4b8d-8cec-25186946dfe3 + - e80ab5e8-be40-4665-ad68-68b3e37da41e x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/0e0bda79-30cd-4ce3-9d89-bd445e3f7436 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/24dec167-6b3e-4bbb-8971-a8ac93ef3b8d x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: FCA1143C20924345B62B9A18970BECF8 Ref B: SG2AA1070301054 Ref C: 2026-04-24T02:58:44Z' + - 'Ref A: 154D8C63AFA0415290DE4B56DF982B08 Ref B: BN1AA2051015035 Ref C: 2026-09-12T07:23:23Z' status: code: 200 message: OK @@ -846,7 +780,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -855,9 +789,10 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk response: body: string: '{"status":"InProgress"}' @@ -869,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:58:55 GMT + - Sat, 12 Sep 2026 07:23:34 GMT expires: - '-1' pragma: @@ -881,13 +816,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16890bc5-e2c1-411e-b471-9eba03d2f387 + - 68a6fda6-eb2c-4141-b02b-39d41f4c48bd x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/92d020b4-7fb6-4fdc-b539-2030f9b5f7ba + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/95367ccf-6301-47df-8508-5df1814b2781 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 142CA50139314922950AE35C38375934 Ref B: SG2AA1040519062 Ref C: 2026-04-24T02:58:55Z' + - 'Ref A: 4A03E36C2CE74697BD4446DA93A68E3C Ref B: BN1AA2051012053 Ref C: 2026-09-12T07:23:34Z' status: code: 200 message: OK @@ -897,7 +834,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -906,9 +843,10 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk response: body: string: '{"status":"Succeeded"}' @@ -920,7 +858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:15 GMT + - Sat, 12 Sep 2026 07:23:55 GMT expires: - '-1' pragma: @@ -932,13 +870,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 81178aef-3876-4336-8d95-fe4bd2078507 + - d8e39f66-c2d8-45d2-b30b-9ecdaf39a8bf x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/17875b40-42f6-4b9e-832f-19c576616204 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/23d42940-8072-4e61-a879-c9bf71aaf00c x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: B58285C12BED4F01B48E486F174786E6 Ref B: SG2AA1070303031 Ref C: 2026-04-24T02:59:16Z' + - 'Ref A: 6B2E8E199C944B5F83E3E1B0852562EF Ref B: BN1AA2051012019 Ref C: 2026-09-12T07:23:55Z' status: code: 200 message: OK @@ -948,7 +888,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -957,12 +897,13 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"abb19e0d-4c72-4efc-8577-06f96dcc832f\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"1885062d-b88a-436f-9777-c3e4d2ff31b9","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"abb19e0d-4c72-4efc-8577-06f96dcc832f\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.60bb890d-7289-4e3c-910c-65302aca19a0"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"c7c5f806-7fca-4fda-8361-171ecdeb5c32\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"26de0faf-5d84-429e-8238-82e827eafb5e","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"c7c5f806-7fca-4fda-8361-171ecdeb5c32\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.1ffdf25d-a0f5-4b3e-815e-44b1b9e98584"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: cache-control: - no-cache @@ -971,9 +912,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:16 GMT + - Sat, 12 Sep 2026 07:23:55 GMT etag: - - W/"abb19e0d-4c72-4efc-8577-06f96dcc832f" + - W/"c7c5f806-7fca-4fda-8361-171ecdeb5c32" expires: - '-1' pragma: @@ -985,11 +926,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 07d2b7de-ae8a-4bbf-8080-f32f6bac61b5 + - e8e89de1-8776-4a60-8957-371502e5375c x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: E1C621FB9EE94ECE975369A331C79852 Ref B: SG2AA1040513034 Ref C: 2026-04-24T02:59:16Z' + - 'Ref A: A237292FFD124CAE853FE79B889B16C7 Ref B: BN1AA2051014019 Ref C: 2026-09-12T07:23:56Z' status: code: 200 message: OK @@ -999,7 +942,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection list Connection: @@ -1007,19 +950,21 @@ interactions: ParameterSetName: - -g --name --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1027,7 +972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:17 GMT + - Sat, 12 Sep 2026 07:23:56 GMT expires: - '-1' pragma: @@ -1039,11 +984,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/89ffd465-33f9-4294-8eec-6da5c418816b + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/5b9bc652-635d-421c-90b9-89ee436a315a x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E2E295294CF74C029B1A4EB195FF2757 Ref B: SG2AA1040513062 Ref C: 2026-04-24T02:59:17Z' + - 'Ref A: 99E2BA6F6FDD45E5AC915671FAC3CC04 Ref B: BN1AA2051013019 Ref C: 2026-09-12T07:23:56Z' status: code: 200 message: OK @@ -1053,7 +998,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection approve Connection: @@ -1061,19 +1006,21 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1081,7 +1028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:18 GMT + - Sat, 12 Sep 2026 07:23:57 GMT expires: - '-1' pragma: @@ -1093,18 +1040,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/023d738c-7c65-4410-b916-1a4dc31bc6f2 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/8538d5a3-2b03-4034-96c0-57a898a3ca57 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F1E6B26080344749874AF65B20530FE2 Ref B: SG2AA1070303034 Ref C: 2026-04-24T02:59:18Z' + - 'Ref A: 88CA097E231E4B0FBAE07DF6C8B95BB9 Ref B: BN1AA2051015011 Ref C: 2026-09-12T07:23:57Z' status: code: 200 message: OK - request: body: '{"type": "Microsoft.ContainerRegistry/registries/privateEndpointConnections", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d", - "name": "testreg000002.526438cee8124264b99a084f8287f37d", "properties": {"privateEndpoint": + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152", + "name": "testreg000002.3fa96cea7b404db893f437ac636e7152", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"}, "privateLinkServiceConnectionState": {"status": "Approved", "description": "somedescription"}, "provisioningState": "Succeeded"}}' @@ -1112,7 +1059,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection approve Connection: @@ -1124,29 +1071,31 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:59:19.6621655+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:59:19.6621655+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:23:57.7340273+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:23:57.7340273+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d/operationStatuses/privateendpointconnections-ea7d1002-5251-458e-aade-b38c9a1a2102?api-version=2019-12-01-preview&t=639125963598027932&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=Fr0w6_sqC81h7apblZP7KI4Nk2Ln-Vw184Li2APdotSMJuJ-fXKF3pEfmu0zwFSQxECV3Z-XFRefttjdvW4CJ0KOMD3_WCf2sXRg-xIn2MkconCinV_3U0ytEVPS_78xhVtPc8OQ0FhtDj2GgX7DcqIBfGpvcMmrnqAh4itQNHvpcifzlrzWKQYDRHRf19ro72k-GV-5XOARC51HGDSXYSma78Bfwo9WmgVF6yx2SOdxW5IwwmEREr97GGz29VH-5tsC-Vbpv3F025InYVKc8jGxfpnDzuA5ab3UYa7b2wGCqNRPdyAiWcMSOygVDJsW-oinLgvtmyG11fou4r_cwg&h=V6W94ggmpLB9ynEgAJqCl4RA_1_uYmx5mdHvGoWuvqw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152/operationStatuses/privateendpointconnections-840083eb-887f-49f0-800f-4db5a71b55ee?api-version=2019-12-01-preview&t=639247946379371482&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=SBl8G98hlq4jI_PnSKR_k7h7Rm-bkR9qA3hxfFY3DsXus0VXQ6wWzVYz_fbRDnRNoLpxU_cymFYqh1KeZEJQM0CbqpFJMMCmPyElGboXUe0M0KL7z7Ad_XwjrLfWVSzpgi9hPOlXpmWaSib5obcpo-iqQBdQira9MH9hN4wiGpgkrqEgvNLpCJGnRreQRZyvdGlxzgy4_aVuggdrBmJ-N3yCOaW0NzWPzhGvRxrdQv84WocJY_QAYyOUx-9DVTex-V4ikXIPSF0Lf2i3O3fM26aYOR_EULVs3y70-TfGdvU1IU87oKdrscg_bcjlyR8VI_lZnKuzqbfiQzQpB5XrBA&h=G-01nEjdKvcpeEq8qNcyEHM_WAaAbVjzQly09oSGlHI cache-control: - no-cache content-length: - - '873' + - '927' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:19 GMT + - Sat, 12 Sep 2026 07:23:57 GMT expires: - '-1' pragma: @@ -1158,13 +1107,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/58de09eb-548e-40ea-9928-2ce05a084ad0 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/b30df5f1-13ff-4253-a884-f3bd099f2205 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 9376873F85E04D6BADE8D983941E65D1 Ref B: SG2AA1040515031 Ref C: 2026-04-24T02:59:19Z' + - 'Ref A: B16D5D38763441B2A25376984C6B6EA9 Ref B: BN1AA2051013039 Ref C: 2026-09-12T07:23:57Z' status: code: 201 message: Created @@ -1174,7 +1123,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection approve Connection: @@ -1182,19 +1131,21 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1202,7 +1153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:29 GMT + - Sat, 12 Sep 2026 07:24:07 GMT expires: - '-1' pragma: @@ -1214,11 +1165,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/378d02e8-351c-4997-94ea-033f1e6780c8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/b9ab1fa5-1e82-4047-853b-4d205f29cd38 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: EFCE9BDC950147A99920930B7B9F57EF Ref B: SG2AA1070304034 Ref C: 2026-04-24T02:59:29Z' + - 'Ref A: A25210C1170D4D99A40FE5A0DC8753BD Ref B: BN1AA2051015053 Ref C: 2026-09-12T07:24:08Z' status: code: 200 message: OK @@ -1228,7 +1179,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -1237,12 +1188,13 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1251,7 +1203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:30 GMT + - Sat, 12 Sep 2026 07:24:07 GMT expires: - '-1' pragma: @@ -1265,7 +1217,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 58EF3C9D2A504FE2A6FDE5F721386676 Ref B: SG2AA1070302040 Ref C: 2026-04-24T02:59:30Z' + - 'Ref A: 9BE17CA754E04F989D927C64E5D0581F Ref B: BN1AA2051012033 Ref C: 2026-09-12T07:24:08Z' status: code: 200 message: OK @@ -1278,7 +1230,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -1291,18 +1243,19 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"bfa8f244-5dfc-43eb-8f41-faf4cadd1721\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"9bf9893f-7565-4a2b-930d-d21d0c8a7a6c","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"bfa8f244-5dfc-43eb-8f41-faf4cadd1721\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting - Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.2079c907-6bc4-494d-96f6-eb43792a7b4e"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"8869d256-4795-4dea-9a92-78fe1c81d0d4\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"3ab6fa7d-b935-43e8-9014-ddc7dbcba357","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"8869d256-4795-4dea-9a92-78fe1c81d0d4\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.17281aa1-d6c5-4c59-ac87-10373fb13ddf"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU cache-control: - no-cache content-length: @@ -1310,7 +1263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:31 GMT + - Sat, 12 Sep 2026 07:24:08 GMT expires: - '-1' pragma: @@ -1322,15 +1275,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 112c589d-2efc-4ebe-bfe2-0c2303b197ef + - a3b9daaa-1022-4b16-813d-47c83fbe2ee9 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/57c915b2-fce7-4d73-a249-90a53fa77148 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/d3a40683-1a3f-460e-a0cc-5da02f279bb9 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 2D731449763E4A4CAA43892FC72DF31E Ref B: SG2AA1070302034 Ref C: 2026-04-24T02:59:31Z' + - 'Ref A: 26EF4367220D434586482CAD22100A6A Ref B: BN1AA2051013051 Ref C: 2026-09-12T07:24:08Z' status: code: 201 message: Created @@ -1340,7 +1296,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -1349,9 +1305,10 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU response: body: string: '{"status":"InProgress"}' @@ -1363,7 +1320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:32 GMT + - Sat, 12 Sep 2026 07:24:10 GMT expires: - '-1' pragma: @@ -1375,13 +1332,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4499e74-18b3-4e5f-8e6c-d7ce776ad4cd + - 8688eccf-2db5-44e8-bf81-493e18f78ddd x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/b7deae38-99e6-4364-8a96-297f0802e542 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4b6dc171-03c9-4463-8c61-7ed9b00c7bc7 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 7AE3BE95152842CBB8BA9675BA2AA94C Ref B: SG2AA1040520042 Ref C: 2026-04-24T02:59:32Z' + - 'Ref A: 6CF32255F4C343D0A331D140C8BC9674 Ref B: BN1AA2051015033 Ref C: 2026-09-12T07:24:10Z' status: code: 200 message: OK @@ -1391,7 +1350,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -1400,9 +1359,10 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU response: body: string: '{"status":"InProgress"}' @@ -1414,7 +1374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 02:59:43 GMT + - Sat, 12 Sep 2026 07:24:20 GMT expires: - '-1' pragma: @@ -1426,13 +1386,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 446fffe9-acdf-4170-825c-1bde24a50da3 + - 35d22e1b-55e2-4497-b7a0-486d77d3fa91 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/e25485c5-f78d-4eef-8231-cdb95878313b + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b34cd8d8-1f92-462a-8b84-44a34eb59c27 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 4AF9A2C790334861BFA02D676F142FF7 Ref B: SG2AA1070301054 Ref C: 2026-04-24T02:59:43Z' + - 'Ref A: 7DF3FA71754F4F31954C50B69EAEEEB9 Ref B: BN1AA2051015035 Ref C: 2026-09-12T07:24:20Z' status: code: 200 message: OK @@ -1442,7 +1405,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -1451,9 +1414,10 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU response: body: string: '{"status":"Succeeded"}' @@ -1465,7 +1429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:03 GMT + - Sat, 12 Sep 2026 07:24:41 GMT expires: - '-1' pragma: @@ -1477,23 +1441,25 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 692fa5b5-7e52-4460-8f5d-11e9eb50ec56 + - e36715e6-afe4-49a9-8cb9-f5219e5944d5 x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/8468022a-898a-4927-bfb5-c6d778e085b2 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f9d3c57c-08d8-44f0-b369-0a7671dea22a x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc x-msedge-ref: - - 'Ref A: FFD4A10DEB804271905FAD8B9448EF68 Ref B: SG2AA1040519023 Ref C: 2026-04-24T03:00:03Z' + - 'Ref A: 90822F1043B74D818A13DC37480C7CB5 Ref B: BN1AA2051013045 Ref C: 2026-09-12T07:24:41Z' status: code: 200 - message: OK + message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint create Connection: @@ -1502,12 +1468,13 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"75ba1164-5b7f-44bd-9cee-408dfbf6f3ad\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"9bf9893f-7565-4a2b-930d-d21d0c8a7a6c","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"75ba1164-5b7f-44bd-9cee-408dfbf6f3ad\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.2079c907-6bc4-494d-96f6-eb43792a7b4e"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"f9468a26-3492-40da-bbe4-2b282ab2a182\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"3ab6fa7d-b935-43e8-9014-ddc7dbcba357","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"f9468a26-3492-40da-bbe4-2b282ab2a182\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.17281aa1-d6c5-4c59-ac87-10373fb13ddf"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: cache-control: - no-cache @@ -1516,9 +1483,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:04 GMT + - Sat, 12 Sep 2026 07:24:42 GMT etag: - - W/"75ba1164-5b7f-44bd-9cee-408dfbf6f3ad" + - W/"f9468a26-3492-40da-bbe4-2b282ab2a182" expires: - '-1' pragma: @@ -1530,11 +1497,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7eda869e-552a-4fa5-a14e-54eb977b7004 + - 3c14b131-0ec9-4d47-ba57-83030bffb6f7 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc x-msedge-ref: - - 'Ref A: DD63B8EBA2DB4524B6A70F09905534CF Ref B: SG2AA1040518034 Ref C: 2026-04-24T03:00:04Z' + - 'Ref A: CB11539F4DE041F1BA9A38C706BB283A Ref B: BN1AA2051014045 Ref C: 2026-09-12T07:24:42Z' status: code: 200 message: OK @@ -1544,7 +1513,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection list Connection: @@ -1552,19 +1521,21 @@ interactions: ParameterSetName: - -g --name --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1572,7 +1543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:05 GMT + - Sat, 12 Sep 2026 07:24:42 GMT expires: - '-1' pragma: @@ -1584,11 +1555,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/28e41ec9-2420-42f5-8d8c-f98bc757c329 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/53f7cdc7-ab06-4156-be91-756f2dec8fbf x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DFFED08FDC8B4EA6AB6FD0668D4AF38A Ref B: SG2AA1070305042 Ref C: 2026-04-24T03:00:05Z' + - 'Ref A: 1EF9FD043B5142D0BF90D20004AA12B7 Ref B: BN1AA2051014049 Ref C: 2026-09-12T07:24:42Z' status: code: 200 message: OK @@ -1598,7 +1569,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection reject Connection: @@ -1606,19 +1577,21 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1626,7 +1599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:05 GMT + - Sat, 12 Sep 2026 07:24:43 GMT expires: - '-1' pragma: @@ -1638,18 +1611,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/fb490051-8eac-4796-8da1-47f041e3ca22 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/5f79912b-c96f-4530-90dd-68d5f46eabb6 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1B2AA43FCB1F4717BA271B35551BE056 Ref B: SG2AA1070303042 Ref C: 2026-04-24T03:00:06Z' + - 'Ref A: CCB6540A01F844C6ACF49FFBCFE5D180 Ref B: BN1AA2051014031 Ref C: 2026-09-12T07:24:43Z' status: code: 200 message: OK - request: body: '{"type": "Microsoft.ContainerRegistry/registries/privateEndpointConnections", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566", - "name": "testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566", "properties": {"privateEndpoint": + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b", + "name": "testreg000002.7345782e68ed40399dc40124a8b6a23b", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"}, "privateLinkServiceConnectionState": {"status": "Rejected", "description": "somedescription"}, "provisioningState": "Succeeded"}}' @@ -1657,7 +1630,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection reject Connection: @@ -1669,29 +1642,31 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T03:00:07.6091208+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T03:00:07.6091208+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:24:43.9089231+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:24:43.9089231+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566/operationStatuses/privateendpointconnections-cc28d072-f0ba-46b4-9716-f95c91be0523?api-version=2019-12-01-preview&t=639125964077653654&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=g0vVvjcD0QJjiTg7sHGz5pmctHZ-Gz4pYmRROEZecHvwwGmIcX3dBdJfEoG9zrgpNjvkY4jEWAr-vbc2LGnpPylt_ZlEu26CGpxcyDRd64wIKCpiMbnY-nq5rCkYrIqqHOCJlLYGlAfWMqVWjg322fkmazj7HCv6MjUYStT6ydwi9BYZ7eTWSKDe_XpS283OTjELzTj_MijQ8yilRP4YI7pDmzqk1bhh-01Hf2TAYS-aN0ThEYhvPIPUUwl1K5npQ3fOxdZqpS2z_nRtVg916snxMESZMFa3ba-L6is8JNja_F2wW69JExEwJ1n-suTMv8C6d0odfgHp_Qa6vQ_WKg&h=SaG9xDLqGxemSjXfhFMtpBRjzDhJHKq6epVwh3P_xwA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b/operationStatuses/privateendpointconnections-fd4a90d0-40bb-4ae7-a56c-ce1986be24bd?api-version=2019-12-01-preview&t=639247946841590015&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=mwJ_l85AEJfHZdCWeouVlcP9pBRoTvPcFvTuYpu0ZVgGVy8zujKjZ7HLO7E-UJEvvm6fARaw3fXPvtlamAjNCKYbdS6hQx-_7w_-t0JaBHzXj6uz9h2QDzLEJchHqAj-881k0B8cxAcr8K9BUXSz2igLfAupjoqafVkZu0lF-raYQblNcMB8JOnZ6igKGjbuYiVIMNQk3LOI1UmvSDi4yg7qZIx_iOTV5opYN_4dlnlNLdZ8WgiDdt-dfCEA7PWI55IpLC30IxKKi_3854HZFkYh3sTnWItIWYsvUtKAkf_EJ3rdy_hsx8U7SwigRgzVXQAZVzUmexl2WLdVKAWXLg&h=nEtA0d6ORcTITwFd_n0CfzdlgvW8Q1pBcaG9fWsf5GU cache-control: - no-cache content-length: - - '873' + - '927' content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:06 GMT + - Sat, 12 Sep 2026 07:24:43 GMT expires: - '-1' pragma: @@ -1703,13 +1678,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/b8164c1d-2b3e-4442-a24a-6514774ceb80 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/2447e62b-9260-46c2-9240-c58d01420fcd x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 0E0D654A1EB947628AD0DEE1DABBCB6C Ref B: SG2AA1070303042 Ref C: 2026-04-24T03:00:06Z' + - 'Ref A: 42F88B949E0842CAA837037C54215672 Ref B: BN1AA2051015051 Ref C: 2026-09-12T07:24:43Z' status: code: 201 message: Created @@ -1719,7 +1694,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection reject Connection: @@ -1727,19 +1702,21 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1747,7 +1724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:17 GMT + - Sat, 12 Sep 2026 07:24:54 GMT expires: - '-1' pragma: @@ -1759,11 +1736,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/3a5b0002-2d14-43f5-b017-459fefc740ef + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/b892063b-f3b9-44e3-92c8-d9381c671dc9 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 90099DCFF45C414898B1086C572C033A Ref B: SG2AA1070306040 Ref C: 2026-04-24T03:00:17Z' + - 'Ref A: 9C68F5AFFB6948BBABA79BD6B6CAF3CD Ref B: BN1AA2051015011 Ref C: 2026-09-12T07:24:54Z' status: code: 200 message: OK @@ -1773,7 +1750,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection list Connection: @@ -1781,19 +1758,21 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1801,7 +1780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:18 GMT + - Sat, 12 Sep 2026 07:24:54 GMT expires: - '-1' pragma: @@ -1813,11 +1792,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/fe967a9f-888b-4dcc-873d-1810d64da3f9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/2c2b4471-4fd0-42ee-8cdb-edfd65836d3d x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2C38B2DC90B643E1B886D89F3CC5FD7F Ref B: SG2AA1070304040 Ref C: 2026-04-24T03:00:18Z' + - 'Ref A: BABEAED7F22E456E84A323D8F2869020 Ref B: BN1AA2051013025 Ref C: 2026-09-12T07:24:54Z' status: code: 200 message: OK @@ -1827,7 +1806,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection delete Connection: @@ -1837,9 +1816,10 @@ interactions: ParameterSetName: - -g --resource-name -n --type -y User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview response: body: string: '' @@ -1849,17 +1829,18 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 24 Apr 2026 03:00:19 GMT + - Sat, 12 Sep 2026 07:24:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-07b9dbff-0da8-484d-9080-a9042a8f8d62?api-version=2019-12-01-preview&t=639125964199741220&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=fKSAtjxBnaINVNhsK8g3T7sOBH83uM_Zy7SMCUoo_CCySShFQr8hGo2Np6o_wY9E0CcbLZLw0_UmAZhy8EsYT0j8ZyKM1Q3SQI60eYojzKkzf3IYOzuqmf3Gw9DNKEGBFTAalk0NBOAlhPCcWbd8EuEMbWMbZQMwhL-zqx13Dx6g6fTiC_rsrACadNx2hhg9P1nU9bR8-IXvgfMwXqnURHERgej1I3pw6GXbZLqYDq6zXH22iylWLCQ5SKrtXwAkH1D0kXjzFle6jfvseyZ9ClnBHz290uyOnxYaJfjwah_t1SPek8F-YH5vbJJGjKLrzMmF3vOLjKicsegQaM3h1A&h=NQs6_Kk2XDY98FvGpjRpyRYLt-tZsLk7pmhKE3KSeR4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-7078eddd-6a58-4eff-98b7-8ded545fc0c6?api-version=2019-12-01-preview&t=639247946952656225&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=OVERW80bxtvia8nr7yukXa6AXRAM1nx9QTJ16BcFM1GLOBVQu7E-y6yySgqih-kbPLny-i06dFo2OJx0BIMIQGnFLYjSCIbjH1_Fgd2ubCJH8MSszqGB6e6gJX3TZyk4gf86gW7rNN3lE1VADHH-8AzgqHgI1RY8A2VCCsS0Tvt7ANm-8x83EZHE1YeJBGq5VELknkvOvsWkCai4fqybhLu780X7WsXwjzkfYqQXVg1Rewr0UYZaq1EVE9hx2agf15dufuZUDLEEIwPvZWlzMIpo1qQKRA20JiC1GNeeq_HL-PDL3g_0v3iOg_55tu2Hgo0N8llMM_WFrUI8sPx8Aw&h=IYxVhZqkVo-XVBdHc1sXPy0Z1lJ8brdtDAw4Iv5YJQ8 pragma: - no-cache strict-transport-security: @@ -1869,13 +1850,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/dbb87948-47a1-4eb3-96be-a14cf97d6310 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/e9167740-fdf2-4114-83d1-f7c1469fd324 x-ms-ratelimit-remaining-subscription-deletes: - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: BD8B71371D454138A89638C8ECF86074 Ref B: SG2AA1040515042 Ref C: 2026-04-24T03:00:19Z' + - 'Ref A: D366C8E648E340D4A04CAB2F18C6ED68 Ref B: BN1AA2051014031 Ref C: 2026-09-12T07:24:55Z' status: code: 202 message: Accepted @@ -1885,7 +1866,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection list Connection: @@ -1893,19 +1874,21 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1913,7 +1896,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:49 GMT + - Sat, 12 Sep 2026 07:25:25 GMT expires: - '-1' pragma: @@ -1925,11 +1908,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/e1d7d083-c135-4f8e-8be2-ea6f430c69b8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/9ab846ce-22e4-426c-8a31-d8fa1df40d21 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 977F99ADD0474EC98BC0E067F7A232E6 Ref B: SG2AA1040512054 Ref C: 2026-04-24T03:00:50Z' + - 'Ref A: CA91A74AE67245D9B74C54D6E495DE5F Ref B: BN1AA2051012029 Ref C: 2026-09-12T07:25:25Z' status: code: 200 message: OK @@ -1939,7 +1922,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection show Connection: @@ -1947,19 +1930,21 @@ interactions: ParameterSetName: - -g --resource-name -n --type User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: @@ -1967,7 +1952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 24 Apr 2026 03:00:51 GMT + - Sat, 12 Sep 2026 07:25:25 GMT expires: - '-1' pragma: @@ -1979,11 +1964,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/34c63735-6e8c-4beb-8252-24a04e49ced1 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/562934ba-474a-4136-a4df-6c545be95b70 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8463205EAA3549069049FFA0F1CE9191 Ref B: SG2AA1040519040 Ref C: 2026-04-24T03:00:51Z' + - 'Ref A: 9E644C3F353D4C88A63C19342575D1D3 Ref B: BN1AA2051015033 Ref C: 2026-09-12T07:25:25Z' status: code: 200 message: OK @@ -1993,7 +1978,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-endpoint-connection delete Connection: @@ -2003,9 +1988,10 @@ interactions: ParameterSetName: - -g --resource-name -n --type -y User-Agent: - - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview response: body: string: '' @@ -2015,17 +2001,18 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 24 Apr 2026 03:00:51 GMT + - Sat, 12 Sep 2026 07:25:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-b6687c1e-d76e-4683-b783-3bac7986a74e?api-version=2019-12-01-preview&t=639125964524901407&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=EeDSth-TSo-Ld-GEQZ32HBmRdJ7uDCJDQbvEkpoKKYPvSffZ3JBHKYi_rIw3VU1j-sM10N9SNPk96vkbaI2sKO2zFWiNUwQU0oqrt-MJVBDJDpw8Rkuj9wN6DYgRDKioRsuqk7u5SIIuPv4jxIu550kWEnMkc0ap1Iu5E5ECKER1m2sP6YNtSYckxRcWcxlKsDOAdSeAT2xlKCzGJWyq0cD1ynG-OXahiU2b8jc4sCG9HXLNGHV9DBO2Nch0F_5GmJaJFj5z494FODMncuJIbK5CJbcUQT-SOgI1f-QqkvrlCaU-7ocwIIFv8zVR5b-BPMs57DRrxhumRR26QL25BQ&h=uK8UdcVFHNZftbLOGHBJkx5xKSPl8svr1v_4OoRy7Bg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-d2c0027f-72e4-4eff-9066-f23395bf12aa?api-version=2019-12-01-preview&t=639247947264358286&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=bPFInS4k8yqGG6ookcE1W9CaYbnBpZ-fEjjwteZ_AW_48OWzQslgP8sffI1ee__gvusAyhWCIewGvL4P2OlrechAJiaY7yUMBvSELFaJVO1e8igqj_KSdPC3t8PZ2fwPUumaRl1RInslqtDpoIUdG4WhqnxkoMPFfBiWCDXbDnlg_VFtMPYANkvlZitD78yjiCuMQgpc4gTQA0etd5WYarVPH4N0Y-j7zNijZWRZT6vKKWAJmx7FLNXgsJKq9__hUZMnmjCfiOMGfiYVL4UirLUL2VjMihWgh6UVKKSRlMuGArfFiIo-CnAKE5bN2f1jVS7lHNsfXr0TJ8MTrNY81w&h=ro14YqeIAjvuRZI28TNFvAYSpc2olYfTc0OPtQczi0w pragma: - no-cache strict-transport-security: @@ -2035,13 +2022,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/28700524-eebd-410d-86f4-b3d4301adcf9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/dce62887-fe7f-49f2-b48d-3c0b3b095e43 x-ms-ratelimit-remaining-subscription-deletes: - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: F290795D7A4B42AD8841FDB997A461EB Ref B: SG2AA1040513029 Ref C: 2026-04-24T03:00:51Z' + - 'Ref A: DEC880E8464A4C839A498E65092FBA07 Ref B: BN1AA2051015037 Ref C: 2026-09-12T07:25:26Z' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml index 0b92f51e9fa..eff3f638332 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -13,12 +13,13 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sa_plr000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001","name":"cli_test_sa_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_link_resource_acr","date":"2025-05-16T04:49:04Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001","name":"cli_test_sa_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_link_resource_acr","date":"2026-09-12T07:25:26Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 04:49:08 GMT + - Sat, 12 Sep 2026 07:25:29 GMT expires: - '-1' pragma: @@ -41,48 +42,47 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: EE9A6FDB160B4EA7A9B2909A01C784F6 Ref B: TYO201151005036 Ref C: 2025-05-16T04:49:08Z' + - 'Ref A: C0A75E93710B4771B1C1C0EBE6E0F3D7 Ref B: BN1AA2051015031 Ref C: 2026-09-12T07:25:29Z' status: code: 200 message: OK - request: body: '{"location": "westus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": - false, "anonymousPullEnabled": false}}' + false}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: - keep-alive Content-Length: - - '124' + - '93' Content-Type: - application/json ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T04:49:10.6391991+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T04:49:10.6391991+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T04:49:10.6391991Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T04:49:18.2384796+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T04:49:18.2385379+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:25:30.3215242+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:25:30.3215242+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-12T07:25:30.3215242Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:25:37.3830474+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:25:37.3830804+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1543' + - '1784' content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 04:49:18 GMT + - Sat, 12 Sep 2026 07:25:37 GMT expires: - '-1' pragma: @@ -94,165 +94,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/09f256b8-4487-4740-a477-3b95c85b7a80 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/c81321ee-9744-4372-ac35-d80b871c4991 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: DFE1581ADF9A4A70BBEBBA3F79225B66 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:09Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI - response: - body: - string: '{"status":"Creating"}' - headers: - api-supported-versions: - - 2025-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677596144404&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=GP9gCW6zVMnIlV7K0aiubvjSgRphj7iHNfyoCsis1_sPQgApnNKpm-7BwgBkgHMQoAxBOjD5nxDnBoDbbhoNm7bVTUNtu3RtGJ8UHE5NWK1LjJpnqJENyuBn8RF9FRJTM0oWp9Nyck0vyj82EBK5BWKOveYVpfI0kigUA2_H3AXzFO-2lfB9YQsGAbsl4N7Z6_c6YRG1XQHmBbD0uKUzNs0W3TjLY6O2JikcgyChnrnWDbt4CvhHNcvIV0_rMBzVwnsOLsgR071V1zmIjG7lM4XnUQHFqg_MpGoNtj7nk39Qg-iv_hMzUH7Pmos5DoMOrxv2zWbqaKJ3deOfxVDMjA&h=W1vW_RmncebmhD7HoBid0gJT5IBrfuC2O4ZEyy5JEq0 - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 04:49:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8cebbfb5-4811-4744-82ff-291bc57f66df - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 456035E97B434EC5A393C065144ED791 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2025-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677710099664&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=SN_xadJ8s4N-x00DmcIyx5m_80tvpBr_bsjoeqCiZZ12g2Ziz0FVT0FJB9tou_Q8oD_Vhkyv7kJjmR0IHePPmtkB0-954e98NJB0C3vVg2h-yoVWBed89NZziH5rp8E-JjSanKMRo9CGKLC2l8BuTbNkbb_oQmfsV2b4MOXTKopV8gVF33UUrLkZUHggXU6Sar-jtn_u5vT2l7S_Qy34Up6zLc2e-7tzlYxXyuK9BoccMq_2bLLzeEFhevpeBD7PM5wc3S-9mFwkkfv9KCwMtnSQrbsOBokgZHEZIwYo3oVkLDOJaD2rD3EE4pMTZl6XO4JjLEcuHUP1Eiue38fjCQ&h=bqBFIb2jy_eE88_7PwX7HP1JuLx5NzSt6n5lGBGuPHE - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 04:49:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ab6fc804-a69b-4974-9d76-ebcba964a2e3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 738B91F3D2404E3F828DF08B71AF0A65 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T04:49:10.6391991+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T04:49:10.6391991+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T04:49:10.6391991Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T04:49:18.2384796+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T04:49:18.2385379+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-03-01-preview - cache-control: - - no-cache - content-length: - - '1544' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 16 May 2025 04:49:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' - x-msedge-ref: - - 'Ref A: 37F9B397B81047289FA16CAE3269CB38 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:31Z' + - 'Ref A: 991AF1400F204BB78455884713D478A2 Ref B: BN1AA2051015051 Ref C: 2026-09-12T07:25:29Z' status: code: 200 message: OK @@ -262,7 +110,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network private-link-resource list Connection: @@ -270,7 +118,8 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.72.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateLinkResources?api-version=2019-12-01-preview response: @@ -286,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 May 2025 04:49:33 GMT + - Sat, 12 Sep 2026 07:25:38 GMT expires: - '-1' pragma: @@ -298,11 +147,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/ae74a964-7cff-49de-8e27-c647e33c60f7 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/bf0e0bd9-ba7e-47b1-8e46-a428473b39ae x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A755EB0B4F7143E5A8DBE80EEDCFABC7 Ref B: TYO201100113047 Ref C: 2025-05-16T04:49:32Z' + - 'Ref A: 6056E163CB054A298B8B61B97034E156 Ref B: BN1AA2051012017 Ref C: 2026-09-12T07:25:38Z' status: code: 200 message: OK From 87c5bbe2686c6b465ae5785644a326123077ce4f Mon Sep 17 00:00:00 2001 From: Azure CLI Team Date: Sat, 12 Sep 2026 07:25:56 +0000 Subject: [PATCH 09/19] Rerun tests from instance 7. See test_results_None_latest_7.parallel.xml for details --- .../recordings/test_acr_create_abac.yaml | 417 +++++++++++++++--- 1 file changed, 344 insertions(+), 73 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml index 626082c05f1..761397c71de 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml @@ -6,7 +6,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -18,23 +18,24 @@ interactions: ParameterSetName: - -g -n --sku --location --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1720' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:41 GMT + - Sat, 12 Sep 2026 07:21:46 GMT expires: - '-1' pragma: @@ -46,13 +47,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bf6e8d0-c4e4-4b5a-8bd3-eee843657790 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/75466ae3-2242-4a1f-9691-ecb7d74376d4 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '199' x-msedge-ref: - - 'Ref A: 99314DE97E844DC694DBF5A8AD402823 Ref B: SYD281080705040 Ref C: 2026-09-10T06:42:32Z' + - 'Ref A: E6D726FC8FA743CCBC6E6F5757CB2E29 Ref B: BN1AA2051014031 Ref C: 2026-09-12T07:21:39Z' status: code: 200 message: OK @@ -62,7 +63,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr show Connection: @@ -70,23 +71,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1720' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:42 GMT + - Sat, 12 Sep 2026 07:21:47 GMT expires: - '-1' pragma: @@ -98,9 +100,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4317657C2D7440E080357F06030D2673 Ref B: SYD281080707042 Ref C: 2026-09-10T06:42:42Z' + - 'Ref A: E737F02B5D424D07AA46EA433AA8C268 Ref B: BN1AA2051014029 Ref C: 2026-09-12T07:21:47Z' status: code: 200 message: OK @@ -110,7 +112,269 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd + CommandName: + - acr check-health + Connection: + - keep-alive + ParameterSetName: + - -n --repository -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patchdwfusrmto4gkreoyim4crwme7jgyfav2dfascfmo3njkidm/providers/Microsoft.ContainerRegistry/registries/cliregunzgf3ueaj2wb2","name":"cliregunzgf3ueaj2wb2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:19:27.7790313Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:19:27.7790313Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1258' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 12 Sep 2026 07:21:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 71003703DDB44A7E961DA2CB79675D76 Ref B: BN1AA2051012045 Ref C: 2026-09-12T07:21:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - acr check-health + Connection: + - keep-alive + ParameterSetName: + - -n --repository -y + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1720' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 12 Sep 2026 07:21:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 12D60CF8D39D458FB7B03E15613B4F1D Ref B: BN1AA2051013049 Ref C: 2026-09-12T07:21:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + Connection: + - keep-alive + User-Agent: + - python-requests/2.33.0 + method: GET + uri: https://clitestabac000002.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 12 Sep 2026 07:21:51 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://clitestabacpzbpp.azurecr.io/oauth2/token",service="clitestabacpzbpp.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + Connection: + - keep-alive + User-Agent: + - python-requests/2.33.0 + method: GET + uri: https://clitestabac000002.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 12 Sep 2026 07:21:52 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://clitestabacpzbpp.azurecr.io/oauth2/token",service="clitestabacpzbpp.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: grant_type=access_token&service=clitestabacpzbpp.azurecr.io&tenant=4f00b3b6-2940-4f2c-b037-94637c180d30&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCIsImtpZCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCJ9.eyJhdWQiOiJodHRwczovL2NvbnRhaW5lcnJlZ2lzdHJ5LmF6dXJlLm5ldCIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzRmMDBiM2I2LTI5NDAtNGYyYy1iMDM3LTk0NjM3YzE4MGQzMC8iLCJpYXQiOjE3ODkxOTc0MTIsIm5iZiI6MTc4OTE5NzQxMiwiZXhwIjoxNzg5MjAxMzEyLCJhaW8iOiJrMk5nWU9qS3FrMXV0Wk92T2YxWm1XSHpwaVNOYmtQVCtiOGJSRUllOXlqdHVaZzd5eFlBIiwiYXBwaWQiOiJlYmFmMTc0MS0xM2JmLTRjY2ItOWNmNi1lNzRkMzgzODYzNGIiLCJhcHBpZGFjciI6IjIiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC80ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAvIiwiaWR0eXAiOiJhcHAiLCJvaWQiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJyaCI6IjEuQVc4QnRyTUFUMEFwTEUtd041UmpmQmdOTUZJanlYWlh3TUpNbXg3elRESzhXTDBBQUFCdkFRLiIsInN1YiI6IjU2ZmM5Y2ZkLTFhNTctNDFlMy04MDU4LTdmZTdjNTUwZDk1ZiIsInRpZCI6IjRmMDBiM2I2LTI5NDAtNGYyYy1iMDM3LTk0NjM3YzE4MGQzMCIsInV0aSI6IlI0NmxjTjlIMmtlNGI5SG9lZEUxQUEiLCJ2ZXIiOiIxLjAiLCJ4bXNfYWN0X2ZjdCI6IjkgMyIsInhtc19mdGQiOiJaajJUYUppcmMycjR0MkdfM3NZV3RpUGp1TkF6bnlfY0RHSUdnSmtTWXhFQmRYTjNaWE4wTXkxa2MyMXoiLCJ4bXNfaWRyZWwiOiI3IDEwIiwieG1zX3JkIjoiMC5BWGtBaHY4S0JnZ0NFZ0x2QWhJVUNBY1NFQmNHUVJ6dlJhVk9uTzVkTl9NbDZab1NGQWdKRWhDYkRLa3A5cW8tUTZKYm51RHRxemw1RWhRSUNCSVFVaVBKZGxmQXdreWJIdk5NTXJ4WXZSSVVDQXNTRUxvMHgwTzZpRE1lTUduTk9ZelZHX01hRGdnS0Vnb3hOemc1TVRrMU56TTJHZ2NJQkJJRFExQXgiLCJ4bXNfc3ViX2ZjdCI6IjMgOSJ9.DffjffhDZ8KBFMq57otaF55aEW1I98NjhL_dQRmSf0nZLMGR8bk0z8aUpk7pedeTV7HsyJ0rj0_n5C0Cj97WLuOQlxTZRMO1xxxacrFnABad6LA5MLVyVGhgkUxWTMOUIu7AaFlMmN0fUDM_JvrAg4tIWdVXAq1NqvpMPt34P4V8vNl3vV1K6WMZC4XRx1s-o27SmeZHcMJGjTbOcF0Pv1rIt0xuF6HMbNgA6hMAJTHGMfoeldY0miSO0LBfTy1plWq4F7jhBBr7RZrM7HcG__nJLElUJFYaEiV0OEIlRMPkMLb_iGT7h7CK9DYhNwO2PBJICoo9ZM51Mst9EsAXmQ + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + Connection: + - keep-alive + Content-Length: + - '1833' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - python-requests/2.33.0 + method: POST + uri: https://clitestabac000002.azurecr.io/oauth2/exchange + response: + body: + string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkJRTlc6SUZTNzpPM1VBOkwzSko6SjNVVzoyRVM3OldVM0c6M1lRRjozV0o3OlRCWUc6UUpRVDoyT0VIIn0.eyJqdGkiOiI0ZmRiN2RlNi0wZTQ4LTQ0ZTMtYjdjNy0zNWE2OWNlNzNhYTMiLCJzdWIiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJuYmYiOjE3ODkxOTY4MTMsImV4cCI6MTc4OTIwODUxMywiaWF0IjoxNzg5MTk2ODEzLCJpc3MiOiJBenVyZSBDb250YWluZXIgUmVnaXN0cnkiLCJhdWQiOiJjbGl0ZXN0YWJhY3B6YnBwLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNTBkZTc2YmQ3NzM1NGU1YWIyM2Q1M2NhMDY5N2JkMTQiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwidGVuYW50IjoiNGYwMGIzYjYtMjk0MC00ZjJjLWIwMzctOTQ2MzdjMTgwZDMwIiwiYWFkX2lkZW50aXR5Ijp7Ik9iamVjdElkIjoiNTZmYzljZmQtMWE1Ny00MWUzLTgwNTgtN2ZlN2M1NTBkOTVmIiwiVGVuYW50SWQiOiI0ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAiLCJHcm91cHMiOltdLCJBcHBsaWNhdGlvbklkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiQXBwbGljYXRpb25BQ1IiOiIyIiwiUm9sZVRlbXBsYXRlIjpbXSwiVmVyc2lvbiI6IjEuMCJ9fQ.AXIklxBi-G5OwHHUl6iYIe2-74LAv0lmGrSh-SrUXr9peKh5x_JpnS65Eg1fO2g1IGzS5giQiwUWH1gq9PgbK8NxBjaDv-Ffav3Xc7RhhfEM0o07f3q_P6wXmSNkX6X-eCHdw4Nxj-bIcQQ73AHHRpXrGffnH9eXOvNy0m7HadccQM0zGpZufv8A3KjtnXZZXopBpqzH3GAUlYi_1HXtqbVT-r-VhYCBFzSZ2ZZ-YlgmL1lHxNJHRkZ_RQfZVllwhj8YIb658JhKALPD04bw51OxkOIjLw1wqcyhJHGKA-rCzk0tq2eHWvIRdSmeEY4Z_zyhLFkEore3uwLAuHp_jQ"}' + headers: + connection: + - keep-alive + content-type: + - application/json; charset=utf-8 + date: + - Sat, 12 Sep 2026 07:21:53 GMT + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: grant_type=refresh_token&service=clitestabacpzbpp.azurecr.io&scope=repository%3Ahello-world%3Apull%2Cpush%2Cmetadata_write%2Cmetadata_read%2Cdelete&refresh_token=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkJRTlc6SUZTNzpPM1VBOkwzSko6SjNVVzoyRVM3OldVM0c6M1lRRjozV0o3OlRCWUc6UUpRVDoyT0VIIn0.eyJqdGkiOiI0ZmRiN2RlNi0wZTQ4LTQ0ZTMtYjdjNy0zNWE2OWNlNzNhYTMiLCJzdWIiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJuYmYiOjE3ODkxOTY4MTMsImV4cCI6MTc4OTIwODUxMywiaWF0IjoxNzg5MTk2ODEzLCJpc3MiOiJBenVyZSBDb250YWluZXIgUmVnaXN0cnkiLCJhdWQiOiJjbGl0ZXN0YWJhY3B6YnBwLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNTBkZTc2YmQ3NzM1NGU1YWIyM2Q1M2NhMDY5N2JkMTQiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwidGVuYW50IjoiNGYwMGIzYjYtMjk0MC00ZjJjLWIwMzctOTQ2MzdjMTgwZDMwIiwiYWFkX2lkZW50aXR5Ijp7Ik9iamVjdElkIjoiNTZmYzljZmQtMWE1Ny00MWUzLTgwNTgtN2ZlN2M1NTBkOTVmIiwiVGVuYW50SWQiOiI0ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAiLCJHcm91cHMiOltdLCJBcHBsaWNhdGlvbklkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiQXBwbGljYXRpb25BQ1IiOiIyIiwiUm9sZVRlbXBsYXRlIjpbXSwiVmVyc2lvbiI6IjEuMCJ9fQ.AXIklxBi-G5OwHHUl6iYIe2-74LAv0lmGrSh-SrUXr9peKh5x_JpnS65Eg1fO2g1IGzS5giQiwUWH1gq9PgbK8NxBjaDv-Ffav3Xc7RhhfEM0o07f3q_P6wXmSNkX6X-eCHdw4Nxj-bIcQQ73AHHRpXrGffnH9eXOvNy0m7HadccQM0zGpZufv8A3KjtnXZZXopBpqzH3GAUlYi_1HXtqbVT-r-VhYCBFzSZ2ZZ-YlgmL1lHxNJHRkZ_RQfZVllwhj8YIb658JhKALPD04bw51OxkOIjLw1wqcyhJHGKA-rCzk0tq2eHWvIRdSmeEY4Z_zyhLFkEore3uwLAuHp_jQ + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + Connection: + - keep-alive + Content-Length: + - '1475' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - python-requests/2.33.0 + method: POST + uri: https://clitestabac000002.azurecr.io/oauth2/token + response: + body: + string: '{"access_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkJRTlc6SUZTNzpPM1VBOkwzSko6SjNVVzoyRVM3OldVM0c6M1lRRjozV0o3OlRCWUc6UUpRVDoyT0VIIn0.eyJqdGkiOiJjNjY5NmNkZi03ZmFjLTRjOTgtOTg1Ni0wNmY3ZmE0NDcwMTMiLCJzdWIiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJuYmYiOjE3ODkxOTY4MTQsImV4cCI6MTc4OTIwMTMxNCwiaWF0IjoxNzg5MTk2ODE0LCJpc3MiOiJBenVyZSBDb250YWluZXIgUmVnaXN0cnkiLCJhdWQiOiJjbGl0ZXN0YWJhY3B6YnBwLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNTBkZTc2YmQ3NzM1NGU1YWIyM2Q1M2NhMDY5N2JkMTQiLCJhY2Nlc3MiOlt7InR5cGUiOiJyZXBvc2l0b3J5IiwibmFtZSI6ImhlbGxvLXdvcmxkIiwiYWN0aW9ucyI6W119XSwiZ3JhbnRfdHlwZSI6ImFjY2Vzc190b2tlbiIsImFwcGlkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiYWFkX2lkZW50aXR5Ijp7Ik9iamVjdElkIjoiNTZmYzljZmQtMWE1Ny00MWUzLTgwNTgtN2ZlN2M1NTBkOTVmIiwiVGVuYW50SWQiOiI0ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAiLCJHcm91cHMiOltdLCJBcHBsaWNhdGlvbklkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiQXBwbGljYXRpb25BQ1IiOiIyIiwiUm9sZVRlbXBsYXRlIjpbXSwiVmVyc2lvbiI6IjEuMCJ9fQ.SWQLkvsgqJYmcC4_LfH06kLC7TicKk095M3d4KUjy_u2oosqjJBE763qiaGcxSWt9l-dWbdyxmQxFdRzGakTmfn2C83sq1PBII0JAalxJ6-v414WE8R5_NXS_BNAhSjXR1nYzAqrQnzP-6GN6mMMt1gKWd2u97fdFqh1ZCL-VIFW8KG_4lEp3FgjQ4twi7VYPHZHcTpNRI-_N4kJxV8GkHW096Y74Q-nrnEqy3FyofMRRzkxLljqKx23Zrr1eAQhKWXk0AWN1awY1Hrwh7F1MwWG5dugSBR0RrEe_epzz-3CJWqhhpPFlGKKxcMBsqtmdtuBxDAXh59O-jDCbxYHzQ"}' + headers: + connection: + - keep-alive + content-type: + - application/json; charset=utf-8 + date: + - Sat, 12 Sep 2026 07:21:54 GMT + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd CommandName: - acr update Connection: @@ -118,23 +382,24 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1720' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:44 GMT + - Sat, 12 Sep 2026 07:21:54 GMT expires: - '-1' pragma: @@ -146,9 +411,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 93402403C119442C953FAC0E4F1A9AC7 Ref B: SYD281080707034 Ref C: 2026-09-10T06:42:44Z' + - 'Ref A: A83ACA9594004E1782E209A816107254 Ref B: BN1AA2051014009 Ref C: 2026-09-12T07:21:54Z' status: code: 200 message: OK @@ -158,7 +423,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr update Connection: @@ -170,23 +435,24 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:56.6270294+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1720' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:46 GMT + - Sat, 12 Sep 2026 07:21:56 GMT expires: - '-1' pragma: @@ -198,13 +464,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/86bcd0d2-dab5-479e-94d0-da1d05ebf496 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/501f920e-fc4d-44af-bf91-572fec761fd4 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: DC28DC71EE674D7C97D0CE3E86B41483 Ref B: SYD281080712025 Ref C: 2026-09-10T06:42:45Z' + - 'Ref A: A6467AF6E00341B188FC6970075814BE Ref B: BN1AA2051015031 Ref C: 2026-09-12T07:21:55Z' status: code: 200 message: OK @@ -214,7 +480,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr update Connection: @@ -222,23 +488,24 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:56.6270294+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1720' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:48 GMT + - Sat, 12 Sep 2026 07:21:57 GMT expires: - '-1' pragma: @@ -250,9 +517,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4E0AC5FC79C24ED09BCFF1CF34AD5D51 Ref B: SYD281080710031 Ref C: 2026-09-10T06:42:48Z' + - 'Ref A: 6DBC44688E284DC8856FEA668C427DFE Ref B: BN1AA2051013039 Ref C: 2026-09-12T07:21:57Z' status: code: 200 message: OK @@ -262,7 +529,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr update Connection: @@ -274,23 +541,24 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:59.0463097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1664' + - '1720' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:49 GMT + - Sat, 12 Sep 2026 07:21:58 GMT expires: - '-1' pragma: @@ -302,13 +570,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/20cb4955-1656-4347-9d96-0de05f6046a5 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/6393a134-f37d-4be4-8b17-a423e7c83977 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: CD363FFE7CD446DF888402C25A00EFBC Ref B: SYD281080709062 Ref C: 2026-09-10T06:42:49Z' + - 'Ref A: 2A5CDC9E815D4925B0B7B161D9DC778D Ref B: BN1AA2051014047 Ref C: 2026-09-12T07:21:58Z' status: code: 200 message: OK @@ -318,7 +586,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr delete Connection: @@ -328,27 +596,28 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:59.0463097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1663' + - '1719' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:51 GMT + - Sat, 12 Sep 2026 07:22:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945206576359&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IXEhVAQNasmeh176VNnV_JiXCsUt5EOzxjlyW8kUrhxq-plyybwrvuzvM1Ah2OFTHnrClEPZTnWANoRaX7kKmfkVkksV8Iux9Q5HWTEEJ-NiiRzt-JhLA6CRAoQwpQ-7vcfoRfI0EQlgNF4wt1O0UtLhFmMs7zIj_bSJdUt8aM_naqXj3Ole5lvChYhb94NaPKZohRrKyxqe5aG349fsYa95czGAI2R1RAxtNeITk0YGcl-b046Eo1oq1v2DPhoZBCYSzsy7_YHDBPORDNeZA0CI6J6-QGUWqueQ4zqA8tXflfZ5gndzm7xGTiFeQSbE7WegaULGU9i6uyhW8-noRg&h=t6eHlfKF1wVHr4M5YCoWSPEW6p6bB6eMIREpgjlRoS4 pragma: - no-cache strict-transport-security: @@ -358,13 +627,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/58a4dbf1-63cd-4e4f-8844-2e14b95300a9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/fd9f5a94-a90e-415c-9a2f-91bf3706e508 x-ms-ratelimit-remaining-subscription-deletes: - - '799' + - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - - '11999' + - '2999' x-msedge-ref: - - 'Ref A: 646AE4D19B144B639A34E8CDE1C3A6BD Ref B: SYD281080710042 Ref C: 2026-09-10T06:42:51Z' + - 'Ref A: 0B24AAEEC1AE45B997E297FA7A314C9E Ref B: BN1AA2051014027 Ref C: 2026-09-12T07:21:59Z' status: code: 202 message: Accepted @@ -374,7 +643,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr delete Connection: @@ -382,9 +651,10 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945206576359&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IXEhVAQNasmeh176VNnV_JiXCsUt5EOzxjlyW8kUrhxq-plyybwrvuzvM1Ah2OFTHnrClEPZTnWANoRaX7kKmfkVkksV8Iux9Q5HWTEEJ-NiiRzt-JhLA6CRAoQwpQ-7vcfoRfI0EQlgNF4wt1O0UtLhFmMs7zIj_bSJdUt8aM_naqXj3Ole5lvChYhb94NaPKZohRrKyxqe5aG349fsYa95czGAI2R1RAxtNeITk0YGcl-b046Eo1oq1v2DPhoZBCYSzsy7_YHDBPORDNeZA0CI6J6-QGUWqueQ4zqA8tXflfZ5gndzm7xGTiFeQSbE7WegaULGU9i6uyhW8-noRg&h=t6eHlfKF1wVHr4M5YCoWSPEW6p6bB6eMIREpgjlRoS4 response: body: string: '' @@ -394,11 +664,11 @@ interactions: content-length: - '0' date: - - Thu, 10 Sep 2026 06:42:52 GMT + - Sat, 12 Sep 2026 07:22:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945218757005&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=edBxWN-lGYRJ43B9G_E5GMjEqa5CsQKKrwjwhMC5iYizgWDrBBSRd1y-WaoalN5k2adfyNHxRkiNCZnqdX-oZ5SBsGzoiINEYYTOwP0tZjv5mpCkz-ZoWp6RX4PhcxZm0oUbyl2Teuhe9Gp_ZaruzfmPXEazzVEhR3ItpAQ0l4nLggv5iaC45t1MXYBDjGbT6JVpJ_HKoBio2sYw1IzpXKxfvVTqn2__fQoqZhRHczJ13TZp0NEQK5ZIzC3ndnqggDJZbrbaCZvN2ABVFCdHqbRtP12z3qwukeAYYgrhKne3GGQLXUWLCORZ4BHUSt8tpfkKvWEIVIIIMG-vutrD5Q&h=u1MBAMUH_grMl1WJVt1Q0qTtKN9NU6gp8Ie4T9ZR2jQ pragma: - no-cache strict-transport-security: @@ -408,11 +678,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/81089ec9-6e21-49a1-bb23-e3e375bbe350 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0b69f83b-1f0e-4ca7-81da-d5b73353e32e x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 38220075980544C9A21CF26D4999C6AD Ref B: SYD281080705052 Ref C: 2026-09-10T06:42:52Z' + - 'Ref A: C3279313382942A5AD47BAA284CB8A9C Ref B: BN1AA2051014035 Ref C: 2026-09-12T07:22:00Z' status: code: 202 message: Accepted @@ -422,7 +692,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr delete Connection: @@ -430,9 +700,10 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945218757005&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=edBxWN-lGYRJ43B9G_E5GMjEqa5CsQKKrwjwhMC5iYizgWDrBBSRd1y-WaoalN5k2adfyNHxRkiNCZnqdX-oZ5SBsGzoiINEYYTOwP0tZjv5mpCkz-ZoWp6RX4PhcxZm0oUbyl2Teuhe9Gp_ZaruzfmPXEazzVEhR3ItpAQ0l4nLggv5iaC45t1MXYBDjGbT6JVpJ_HKoBio2sYw1IzpXKxfvVTqn2__fQoqZhRHczJ13TZp0NEQK5ZIzC3ndnqggDJZbrbaCZvN2ABVFCdHqbRtP12z3qwukeAYYgrhKne3GGQLXUWLCORZ4BHUSt8tpfkKvWEIVIIIMG-vutrD5Q&h=u1MBAMUH_grMl1WJVt1Q0qTtKN9NU6gp8Ie4T9ZR2jQ response: body: string: '' @@ -442,7 +713,7 @@ interactions: content-length: - '0' date: - - Thu, 10 Sep 2026 06:43:04 GMT + - Sat, 12 Sep 2026 07:22:12 GMT expires: - '-1' pragma: @@ -454,11 +725,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/af1d2677-f13f-440b-93e5-5c5f25946215 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/351273ab-9314-44dd-8594-7388b462d553 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 25BF3405F9E6488E8616BC304A4420A8 Ref B: SYD281080706023 Ref C: 2026-09-10T06:43:04Z' + - 'Ref A: 015635CAB79144FCBC5ED718CB86D22B Ref B: BN1AA2051012039 Ref C: 2026-09-12T07:22:12Z' status: code: 200 message: OK From 6dd20de6183d38f8acee9862fec13e8840e74528 Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 09:49:12 +1000 Subject: [PATCH 10/19] Revert "Rerun tests from instance 7. See test_results_None_latest_7.parallel.xml for details" This reverts commit 87c5bbe2686c6b465ae5785644a326123077ce4f. --- .../recordings/test_acr_create_abac.yaml | 417 +++--------------- 1 file changed, 73 insertions(+), 344 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml index 761397c71de..626082c05f1 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml @@ -6,7 +6,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -18,24 +18,23 @@ interactions: ParameterSetName: - -g -n --sku --location --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1720' + - '1663' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:21:46 GMT + - Thu, 10 Sep 2026 06:42:41 GMT expires: - '-1' pragma: @@ -47,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/75466ae3-2242-4a1f-9691-ecb7d74376d4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bf6e8d0-c4e4-4b5a-8bd3-eee843657790 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: E6D726FC8FA743CCBC6E6F5757CB2E29 Ref B: BN1AA2051014031 Ref C: 2026-09-12T07:21:39Z' + - 'Ref A: 99314DE97E844DC694DBF5A8AD402823 Ref B: SYD281080705040 Ref C: 2026-09-10T06:42:32Z' status: code: 200 message: OK @@ -63,7 +62,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr show Connection: @@ -71,24 +70,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1720' + - '1663' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:21:47 GMT + - Thu, 10 Sep 2026 06:42:42 GMT expires: - '-1' pragma: @@ -100,9 +98,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E737F02B5D424D07AA46EA433AA8C268 Ref B: BN1AA2051014029 Ref C: 2026-09-12T07:21:47Z' + - 'Ref A: 4317657C2D7440E080357F06030D2673 Ref B: SYD281080707042 Ref C: 2026-09-10T06:42:42Z' status: code: 200 message: OK @@ -112,269 +110,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr check-health - Connection: - - keep-alive - ParameterSetName: - - -n --repository -y - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patchdwfusrmto4gkreoyim4crwme7jgyfav2dfascfmo3njkidm/providers/Microsoft.ContainerRegistry/registries/cliregunzgf3ueaj2wb2","name":"cliregunzgf3ueaj2wb2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:19:27.7790313Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:19:27.7790313Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1258' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2026 07:21:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 71003703DDB44A7E961DA2CB79675D76 Ref B: BN1AA2051012045 Ref C: 2026-09-12T07:21:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr check-health - Connection: - - keep-alive - ParameterSetName: - - -n --repository -y - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' - headers: - api-supported-versions: - - 2026-09-01-preview - cache-control: - - no-cache - content-length: - - '1720' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2026 07:21:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 12D60CF8D39D458FB7B03E15613B4F1D Ref B: BN1AA2051013049 Ref C: 2026-09-12T07:21:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - Connection: - - keep-alive - User-Agent: - - python-requests/2.33.0 - method: GET - uri: https://clitestabac000002.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2026 07:21:51 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - openresty - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://clitestabacpzbpp.azurecr.io/oauth2/token",service="clitestabacpzbpp.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - Connection: - - keep-alive - User-Agent: - - python-requests/2.33.0 - method: GET - uri: https://clitestabac000002.azurecr.io/v2/ - response: - body: - string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, - visit https://aka.ms/acr/authorization for more information.","detail":null}]} - - ' - headers: - access-control-expose-headers: - - Docker-Content-Digest - - WWW-Authenticate - - Link - - X-Ms-Correlation-Request-Id - connection: - - keep-alive - content-length: - - '149' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2026 07:21:52 GMT - docker-distribution-api-version: - - registry/2.0 - server: - - openresty - strict-transport-security: - - max-age=31536000; includeSubDomains - - max-age=31536000; includeSubDomains - www-authenticate: - - Bearer realm="https://clitestabacpzbpp.azurecr.io/oauth2/token",service="clitestabacpzbpp.azurecr.io" - x-content-type-options: - - nosniff - status: - code: 401 - message: Unauthorized -- request: - body: grant_type=access_token&service=clitestabacpzbpp.azurecr.io&tenant=4f00b3b6-2940-4f2c-b037-94637c180d30&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCIsImtpZCI6IlQ1aDQwcTdHMHg0OXFuNDFsTTkta0tqcEQ5OCJ9.eyJhdWQiOiJodHRwczovL2NvbnRhaW5lcnJlZ2lzdHJ5LmF6dXJlLm5ldCIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0LzRmMDBiM2I2LTI5NDAtNGYyYy1iMDM3LTk0NjM3YzE4MGQzMC8iLCJpYXQiOjE3ODkxOTc0MTIsIm5iZiI6MTc4OTE5NzQxMiwiZXhwIjoxNzg5MjAxMzEyLCJhaW8iOiJrMk5nWU9qS3FrMXV0Wk92T2YxWm1XSHpwaVNOYmtQVCtiOGJSRUllOXlqdHVaZzd5eFlBIiwiYXBwaWQiOiJlYmFmMTc0MS0xM2JmLTRjY2ItOWNmNi1lNzRkMzgzODYzNGIiLCJhcHBpZGFjciI6IjIiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC80ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAvIiwiaWR0eXAiOiJhcHAiLCJvaWQiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJyaCI6IjEuQVc4QnRyTUFUMEFwTEUtd041UmpmQmdOTUZJanlYWlh3TUpNbXg3elRESzhXTDBBQUFCdkFRLiIsInN1YiI6IjU2ZmM5Y2ZkLTFhNTctNDFlMy04MDU4LTdmZTdjNTUwZDk1ZiIsInRpZCI6IjRmMDBiM2I2LTI5NDAtNGYyYy1iMDM3LTk0NjM3YzE4MGQzMCIsInV0aSI6IlI0NmxjTjlIMmtlNGI5SG9lZEUxQUEiLCJ2ZXIiOiIxLjAiLCJ4bXNfYWN0X2ZjdCI6IjkgMyIsInhtc19mdGQiOiJaajJUYUppcmMycjR0MkdfM3NZV3RpUGp1TkF6bnlfY0RHSUdnSmtTWXhFQmRYTjNaWE4wTXkxa2MyMXoiLCJ4bXNfaWRyZWwiOiI3IDEwIiwieG1zX3JkIjoiMC5BWGtBaHY4S0JnZ0NFZ0x2QWhJVUNBY1NFQmNHUVJ6dlJhVk9uTzVkTl9NbDZab1NGQWdKRWhDYkRLa3A5cW8tUTZKYm51RHRxemw1RWhRSUNCSVFVaVBKZGxmQXdreWJIdk5NTXJ4WXZSSVVDQXNTRUxvMHgwTzZpRE1lTUduTk9ZelZHX01hRGdnS0Vnb3hOemc1TVRrMU56TTJHZ2NJQkJJRFExQXgiLCJ4bXNfc3ViX2ZjdCI6IjMgOSJ9.DffjffhDZ8KBFMq57otaF55aEW1I98NjhL_dQRmSf0nZLMGR8bk0z8aUpk7pedeTV7HsyJ0rj0_n5C0Cj97WLuOQlxTZRMO1xxxacrFnABad6LA5MLVyVGhgkUxWTMOUIu7AaFlMmN0fUDM_JvrAg4tIWdVXAq1NqvpMPt34P4V8vNl3vV1K6WMZC4XRx1s-o27SmeZHcMJGjTbOcF0Pv1rIt0xuF6HMbNgA6hMAJTHGMfoeldY0miSO0LBfTy1plWq4F7jhBBr7RZrM7HcG__nJLElUJFYaEiV0OEIlRMPkMLb_iGT7h7CK9DYhNwO2PBJICoo9ZM51Mst9EsAXmQ - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - Connection: - - keep-alive - Content-Length: - - '1833' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.33.0 - method: POST - uri: https://clitestabac000002.azurecr.io/oauth2/exchange - response: - body: - string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkJRTlc6SUZTNzpPM1VBOkwzSko6SjNVVzoyRVM3OldVM0c6M1lRRjozV0o3OlRCWUc6UUpRVDoyT0VIIn0.eyJqdGkiOiI0ZmRiN2RlNi0wZTQ4LTQ0ZTMtYjdjNy0zNWE2OWNlNzNhYTMiLCJzdWIiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJuYmYiOjE3ODkxOTY4MTMsImV4cCI6MTc4OTIwODUxMywiaWF0IjoxNzg5MTk2ODEzLCJpc3MiOiJBenVyZSBDb250YWluZXIgUmVnaXN0cnkiLCJhdWQiOiJjbGl0ZXN0YWJhY3B6YnBwLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNTBkZTc2YmQ3NzM1NGU1YWIyM2Q1M2NhMDY5N2JkMTQiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwidGVuYW50IjoiNGYwMGIzYjYtMjk0MC00ZjJjLWIwMzctOTQ2MzdjMTgwZDMwIiwiYWFkX2lkZW50aXR5Ijp7Ik9iamVjdElkIjoiNTZmYzljZmQtMWE1Ny00MWUzLTgwNTgtN2ZlN2M1NTBkOTVmIiwiVGVuYW50SWQiOiI0ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAiLCJHcm91cHMiOltdLCJBcHBsaWNhdGlvbklkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiQXBwbGljYXRpb25BQ1IiOiIyIiwiUm9sZVRlbXBsYXRlIjpbXSwiVmVyc2lvbiI6IjEuMCJ9fQ.AXIklxBi-G5OwHHUl6iYIe2-74LAv0lmGrSh-SrUXr9peKh5x_JpnS65Eg1fO2g1IGzS5giQiwUWH1gq9PgbK8NxBjaDv-Ffav3Xc7RhhfEM0o07f3q_P6wXmSNkX6X-eCHdw4Nxj-bIcQQ73AHHRpXrGffnH9eXOvNy0m7HadccQM0zGpZufv8A3KjtnXZZXopBpqzH3GAUlYi_1HXtqbVT-r-VhYCBFzSZ2ZZ-YlgmL1lHxNJHRkZ_RQfZVllwhj8YIb658JhKALPD04bw51OxkOIjLw1wqcyhJHGKA-rCzk0tq2eHWvIRdSmeEY4Z_zyhLFkEore3uwLAuHp_jQ"}' - headers: - connection: - - keep-alive - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2026 07:21:53 GMT - server: - - openresty - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - status: - code: 200 - message: OK -- request: - body: grant_type=refresh_token&service=clitestabacpzbpp.azurecr.io&scope=repository%3Ahello-world%3Apull%2Cpush%2Cmetadata_write%2Cmetadata_read%2Cdelete&refresh_token=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkJRTlc6SUZTNzpPM1VBOkwzSko6SjNVVzoyRVM3OldVM0c6M1lRRjozV0o3OlRCWUc6UUpRVDoyT0VIIn0.eyJqdGkiOiI0ZmRiN2RlNi0wZTQ4LTQ0ZTMtYjdjNy0zNWE2OWNlNzNhYTMiLCJzdWIiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJuYmYiOjE3ODkxOTY4MTMsImV4cCI6MTc4OTIwODUxMywiaWF0IjoxNzg5MTk2ODEzLCJpc3MiOiJBenVyZSBDb250YWluZXIgUmVnaXN0cnkiLCJhdWQiOiJjbGl0ZXN0YWJhY3B6YnBwLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNTBkZTc2YmQ3NzM1NGU1YWIyM2Q1M2NhMDY5N2JkMTQiLCJncmFudF90eXBlIjoicmVmcmVzaF90b2tlbiIsImFwcGlkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwidGVuYW50IjoiNGYwMGIzYjYtMjk0MC00ZjJjLWIwMzctOTQ2MzdjMTgwZDMwIiwiYWFkX2lkZW50aXR5Ijp7Ik9iamVjdElkIjoiNTZmYzljZmQtMWE1Ny00MWUzLTgwNTgtN2ZlN2M1NTBkOTVmIiwiVGVuYW50SWQiOiI0ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAiLCJHcm91cHMiOltdLCJBcHBsaWNhdGlvbklkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiQXBwbGljYXRpb25BQ1IiOiIyIiwiUm9sZVRlbXBsYXRlIjpbXSwiVmVyc2lvbiI6IjEuMCJ9fQ.AXIklxBi-G5OwHHUl6iYIe2-74LAv0lmGrSh-SrUXr9peKh5x_JpnS65Eg1fO2g1IGzS5giQiwUWH1gq9PgbK8NxBjaDv-Ffav3Xc7RhhfEM0o07f3q_P6wXmSNkX6X-eCHdw4Nxj-bIcQQ73AHHRpXrGffnH9eXOvNy0m7HadccQM0zGpZufv8A3KjtnXZZXopBpqzH3GAUlYi_1HXtqbVT-r-VhYCBFzSZ2ZZ-YlgmL1lHxNJHRkZ_RQfZVllwhj8YIb658JhKALPD04bw51OxkOIjLw1wqcyhJHGKA-rCzk0tq2eHWvIRdSmeEY4Z_zyhLFkEore3uwLAuHp_jQ - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - Connection: - - keep-alive - Content-Length: - - '1475' - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - python-requests/2.33.0 - method: POST - uri: https://clitestabac000002.azurecr.io/oauth2/token - response: - body: - string: '{"access_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkJRTlc6SUZTNzpPM1VBOkwzSko6SjNVVzoyRVM3OldVM0c6M1lRRjozV0o3OlRCWUc6UUpRVDoyT0VIIn0.eyJqdGkiOiJjNjY5NmNkZi03ZmFjLTRjOTgtOTg1Ni0wNmY3ZmE0NDcwMTMiLCJzdWIiOiI1NmZjOWNmZC0xYTU3LTQxZTMtODA1OC03ZmU3YzU1MGQ5NWYiLCJuYmYiOjE3ODkxOTY4MTQsImV4cCI6MTc4OTIwMTMxNCwiaWF0IjoxNzg5MTk2ODE0LCJpc3MiOiJBenVyZSBDb250YWluZXIgUmVnaXN0cnkiLCJhdWQiOiJjbGl0ZXN0YWJhY3B6YnBwLmF6dXJlY3IuaW8iLCJ2ZXJzaW9uIjoiMS4wIiwicmlkIjoiNTBkZTc2YmQ3NzM1NGU1YWIyM2Q1M2NhMDY5N2JkMTQiLCJhY2Nlc3MiOlt7InR5cGUiOiJyZXBvc2l0b3J5IiwibmFtZSI6ImhlbGxvLXdvcmxkIiwiYWN0aW9ucyI6W119XSwiZ3JhbnRfdHlwZSI6ImFjY2Vzc190b2tlbiIsImFwcGlkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiYWFkX2lkZW50aXR5Ijp7Ik9iamVjdElkIjoiNTZmYzljZmQtMWE1Ny00MWUzLTgwNTgtN2ZlN2M1NTBkOTVmIiwiVGVuYW50SWQiOiI0ZjAwYjNiNi0yOTQwLTRmMmMtYjAzNy05NDYzN2MxODBkMzAiLCJHcm91cHMiOltdLCJBcHBsaWNhdGlvbklkIjoiZWJhZjE3NDEtMTNiZi00Y2NiLTljZjYtZTc0ZDM4Mzg2MzRiIiwiQXBwbGljYXRpb25BQ1IiOiIyIiwiUm9sZVRlbXBsYXRlIjpbXSwiVmVyc2lvbiI6IjEuMCJ9fQ.SWQLkvsgqJYmcC4_LfH06kLC7TicKk095M3d4KUjy_u2oosqjJBE763qiaGcxSWt9l-dWbdyxmQxFdRzGakTmfn2C83sq1PBII0JAalxJ6-v414WE8R5_NXS_BNAhSjXR1nYzAqrQnzP-6GN6mMMt1gKWd2u97fdFqh1ZCL-VIFW8KG_4lEp3FgjQ4twi7VYPHZHcTpNRI-_N4kJxV8GkHW096Y74Q-nrnEqy3FyofMRRzkxLljqKx23Zrr1eAQhKWXk0AWN1awY1Hrwh7F1MwWG5dugSBR0RrEe_epzz-3CJWqhhpPFlGKKxcMBsqtmdtuBxDAXh59O-jDCbxYHzQ"}' - headers: - connection: - - keep-alive - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2026 07:21:54 GMT - server: - - openresty - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr update Connection: @@ -382,24 +118,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:39.9179102+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1720' + - '1663' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:21:54 GMT + - Thu, 10 Sep 2026 06:42:44 GMT expires: - '-1' pragma: @@ -411,9 +146,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A83ACA9594004E1782E209A816107254 Ref B: BN1AA2051014009 Ref C: 2026-09-12T07:21:54Z' + - 'Ref A: 93402403C119442C953FAC0E4F1A9AC7 Ref B: SYD281080707034 Ref C: 2026-09-10T06:42:44Z' status: code: 200 message: OK @@ -423,7 +158,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr update Connection: @@ -435,24 +170,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:56.6270294+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1720' + - '1664' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:21:56 GMT + - Thu, 10 Sep 2026 06:42:46 GMT expires: - '-1' pragma: @@ -464,13 +198,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/501f920e-fc4d-44af-bf91-572fec761fd4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/86bcd0d2-dab5-479e-94d0-da1d05ebf496 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: A6467AF6E00341B188FC6970075814BE Ref B: BN1AA2051015031 Ref C: 2026-09-12T07:21:55Z' + - 'Ref A: DC28DC71EE674D7C97D0CE3E86B41483 Ref B: SYD281080712025 Ref C: 2026-09-10T06:42:45Z' status: code: 200 message: OK @@ -480,7 +214,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr update Connection: @@ -488,24 +222,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:56.6270294+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1720' + - '1664' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:21:57 GMT + - Thu, 10 Sep 2026 06:42:48 GMT expires: - '-1' pragma: @@ -517,9 +250,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6DBC44688E284DC8856FEA668C427DFE Ref B: BN1AA2051013039 Ref C: 2026-09-12T07:21:57Z' + - 'Ref A: 4E0AC5FC79C24ED09BCFF1CF34AD5D51 Ref B: SYD281080710031 Ref C: 2026-09-10T06:42:48Z' status: code: 200 message: OK @@ -529,7 +262,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr update Connection: @@ -541,24 +274,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:59.0463097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1720' + - '1664' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:21:58 GMT + - Thu, 10 Sep 2026 06:42:49 GMT expires: - '-1' pragma: @@ -570,13 +302,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/6393a134-f37d-4be4-8b17-a423e7c83977 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/20cb4955-1656-4347-9d96-0de05f6046a5 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 2A5CDC9E815D4925B0B7B161D9DC778D Ref B: BN1AA2051014047 Ref C: 2026-09-12T07:21:58Z' + - 'Ref A: CD363FFE7CD446DF888402C25A00EFBC Ref B: SYD281080709062 Ref C: 2026-09-10T06:42:49Z' status: code: 200 message: OK @@ -586,7 +318,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr delete Connection: @@ -596,28 +328,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:21:39.9179102+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:21:59.0463097+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-12T07:21:39.9179102Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:21:47.4980789+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:21:47.4981286+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - 2026-09-01-preview cache-control: - no-cache content-length: - - '1719' + - '1663' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:22:00 GMT + - Thu, 10 Sep 2026 06:42:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945206576359&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IXEhVAQNasmeh176VNnV_JiXCsUt5EOzxjlyW8kUrhxq-plyybwrvuzvM1Ah2OFTHnrClEPZTnWANoRaX7kKmfkVkksV8Iux9Q5HWTEEJ-NiiRzt-JhLA6CRAoQwpQ-7vcfoRfI0EQlgNF4wt1O0UtLhFmMs7zIj_bSJdUt8aM_naqXj3Ole5lvChYhb94NaPKZohRrKyxqe5aG349fsYa95czGAI2R1RAxtNeITk0YGcl-b046Eo1oq1v2DPhoZBCYSzsy7_YHDBPORDNeZA0CI6J6-QGUWqueQ4zqA8tXflfZ5gndzm7xGTiFeQSbE7WegaULGU9i6uyhW8-noRg&h=t6eHlfKF1wVHr4M5YCoWSPEW6p6bB6eMIREpgjlRoS4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew pragma: - no-cache strict-transport-security: @@ -627,13 +358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/fd9f5a94-a90e-415c-9a2f-91bf3706e508 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/58a4dbf1-63cd-4e4f-8844-2e14b95300a9 x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: 0B24AAEEC1AE45B997E297FA7A314C9E Ref B: BN1AA2051014027 Ref C: 2026-09-12T07:21:59Z' + - 'Ref A: 646AE4D19B144B639A34E8CDE1C3A6BD Ref B: SYD281080710042 Ref C: 2026-09-10T06:42:51Z' status: code: 202 message: Accepted @@ -643,7 +374,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr delete Connection: @@ -651,10 +382,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945206576359&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=IXEhVAQNasmeh176VNnV_JiXCsUt5EOzxjlyW8kUrhxq-plyybwrvuzvM1Ah2OFTHnrClEPZTnWANoRaX7kKmfkVkksV8Iux9Q5HWTEEJ-NiiRzt-JhLA6CRAoQwpQ-7vcfoRfI0EQlgNF4wt1O0UtLhFmMs7zIj_bSJdUt8aM_naqXj3Ole5lvChYhb94NaPKZohRrKyxqe5aG349fsYa95czGAI2R1RAxtNeITk0YGcl-b046Eo1oq1v2DPhoZBCYSzsy7_YHDBPORDNeZA0CI6J6-QGUWqueQ4zqA8tXflfZ5gndzm7xGTiFeQSbE7WegaULGU9i6uyhW8-noRg&h=t6eHlfKF1wVHr4M5YCoWSPEW6p6bB6eMIREpgjlRoS4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew response: body: string: '' @@ -664,11 +394,11 @@ interactions: content-length: - '0' date: - - Sat, 12 Sep 2026 07:22:01 GMT + - Thu, 10 Sep 2026 06:42:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945218757005&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=edBxWN-lGYRJ43B9G_E5GMjEqa5CsQKKrwjwhMC5iYizgWDrBBSRd1y-WaoalN5k2adfyNHxRkiNCZnqdX-oZ5SBsGzoiINEYYTOwP0tZjv5mpCkz-ZoWp6RX4PhcxZm0oUbyl2Teuhe9Gp_ZaruzfmPXEazzVEhR3ItpAQ0l4nLggv5iaC45t1MXYBDjGbT6JVpJ_HKoBio2sYw1IzpXKxfvVTqn2__fQoqZhRHczJ13TZp0NEQK5ZIzC3ndnqggDJZbrbaCZvN2ABVFCdHqbRtP12z3qwukeAYYgrhKne3GGQLXUWLCORZ4BHUSt8tpfkKvWEIVIIIMG-vutrD5Q&h=u1MBAMUH_grMl1WJVt1Q0qTtKN9NU6gp8Ie4T9ZR2jQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk pragma: - no-cache strict-transport-security: @@ -678,11 +408,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0b69f83b-1f0e-4ca7-81da-d5b73353e32e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/81089ec9-6e21-49a1-bb23-e3e375bbe350 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C3279313382942A5AD47BAA284CB8A9C Ref B: BN1AA2051014035 Ref C: 2026-09-12T07:22:00Z' + - 'Ref A: 38220075980544C9A21CF26D4999C6AD Ref B: SYD281080705052 Ref C: 2026-09-10T06:42:52Z' status: code: 202 message: Accepted @@ -692,7 +422,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr delete Connection: @@ -700,10 +430,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-a475cfcc-ae7a-11f1-b799-0fda0ee433ab?api-version=2026-09-01-preview&t=639247945218757005&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=edBxWN-lGYRJ43B9G_E5GMjEqa5CsQKKrwjwhMC5iYizgWDrBBSRd1y-WaoalN5k2adfyNHxRkiNCZnqdX-oZ5SBsGzoiINEYYTOwP0tZjv5mpCkz-ZoWp6RX4PhcxZm0oUbyl2Teuhe9Gp_ZaruzfmPXEazzVEhR3ItpAQ0l4nLggv5iaC45t1MXYBDjGbT6JVpJ_HKoBio2sYw1IzpXKxfvVTqn2__fQoqZhRHczJ13TZp0NEQK5ZIzC3ndnqggDJZbrbaCZvN2ABVFCdHqbRtP12z3qwukeAYYgrhKne3GGQLXUWLCORZ4BHUSt8tpfkKvWEIVIIIMG-vutrD5Q&h=u1MBAMUH_grMl1WJVt1Q0qTtKN9NU6gp8Ie4T9ZR2jQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk response: body: string: '' @@ -713,7 +442,7 @@ interactions: content-length: - '0' date: - - Sat, 12 Sep 2026 07:22:12 GMT + - Thu, 10 Sep 2026 06:43:04 GMT expires: - '-1' pragma: @@ -725,11 +454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/351273ab-9314-44dd-8594-7388b462d553 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/af1d2677-f13f-440b-93e5-5c5f25946215 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 015635CAB79144FCBC5ED718CB86D22B Ref B: BN1AA2051012039 Ref C: 2026-09-12T07:22:12Z' + - 'Ref A: 25BF3405F9E6488E8616BC304A4420A8 Ref B: SYD281080706023 Ref C: 2026-09-10T06:43:04Z' status: code: 200 message: OK From 2904f7414ba1c528794013faa2c0808e7a18f88a Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 09:50:33 +1000 Subject: [PATCH 11/19] Revert "Rerun tests from instance 1. See test_results_None_latest_1.serial.xml for details" This reverts commit 1bc7755be1147e96895cf89d782226f0dd1f2f3a. --- .../test_private_endpoint_connection_acr.yaml | 753 +++++++++--------- .../test_private_link_resource_acr.yaml | 199 ++++- 2 files changed, 558 insertions(+), 394 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml index f09d18b4d53..d653c110a77 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet create Connection: @@ -13,13 +13,12 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:22:57 GMT + - Fri, 24 Apr 2026 02:58:10 GMT expires: - '-1' pragma: @@ -42,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 410A462A38644DFC857EFC67832ACDBD Ref B: BN1AA2051012051 Ref C: 2026-09-12T07:22:57Z' + - 'Ref A: C7FBCE6C4E64426EA5E09B01240D2D1B Ref B: SG2AA1070304036 Ref C: 2026-04-24T02:58:11Z' status: code: 200 message: OK @@ -54,7 +53,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet create Connection: @@ -66,26 +65,25 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003?api-version=2025-07-01 response: body: - string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"472f25bb-ac14-45b6-813b-12668ce5da0c\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"0de24103-3dbe-4218-a1a4-03734e215843","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"472f25bb-ac14-45b6-813b-12668ce5da0c\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"0baf34c0-afa8-4078-be81-63a020fd1001\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"c63d89ff-040e-47a7-af5a-7d99c6f2c68e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"0baf34c0-afa8-4078-be81-63a020fd1001\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/5cf1822b-7767-4f26-9cf9-0a915c19806e?api-version=2025-07-01&t=639247945792098703&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=R9RB7Dv0FhUyGwPuClFsBJTk13VTYczkBuBMJcbTMMaQ7UXwQiVAXRZh4hkC4rWALt1l5MRuj6lCitL_cG5JwIt_stCK9Np_BOkLc0BwwhKMQbiXIj_174yy_RUd0Vj-mME3FgDXuhxQ_vww7z0BFL6uEL8xfXZe4_999Du4wil6nannOwpW4Dgpyycdnoyn8q-S8MrBHxl7lvjroyNSVICliK7jjgFq-AC7js5fwaMWDZ38s5qhOvT7upL_ryzb_ksbKp07lornkLgmeXEJiklNM5a3e9Z2TIV7K6LGwcFNWtRs4mo9oBRYyeh_2U53ZSHmqHhZ1RSMp0dvIPaVQA&h=XmjJuYe4vX732YvJpFOOny7Df8y3IhRGauOWtpXqREU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/9b504664-4739-4c44-94c3-61ff6f5cdc50?api-version=2025-07-01&t=639125962921915759&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=LTMRMopK4mE307_rjZb9biGTPMmKXzfds8qjMEnz2MZsIIdz1U8eLgIYqjp2LG30uVn3QVGb_ebpfTspZ2cxYkHcLRMNxMoeq9D_ngJSvFzfYsotjheMovzxSVgmueaK0k3d01CDgP3uFXqSFC6er-t-f1N4PbkiacvUtSktw0sv2F_C43wBjwklhQov_eRox8Jd1-naAqsiykXHvibGgW_JINboFIcK--CmuGY8SHRxEVs00qTOUYsK7784NkZljQBc1GTvgxK8rFIrAx30jJKc6EmPk22Fdc-Vd6fYf1CBQrx1YjH4rLUQMYQQB2Bmqod3XqEgLp-IOg9S0Ah64Q&h=43bCUCCBpk0oWC63Q_Mm4ALHZQr-337qIzInw00mki4 cache-control: - no-cache content-length: - - '1073' + - '1043' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:22:58 GMT + - Fri, 24 Apr 2026 02:58:11 GMT expires: - '-1' pragma: @@ -97,17 +95,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb4856e1-81a3-4baa-80ac-445b79b5aadc + - 6954abd5-7418-4603-87de-fdd6cd436ada x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/2ac514f9-49cb-4ad1-a53b-f2ec1db697cb + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/deb97207-f308-438e-9c44-2ddc9230dc36 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, etc x-msedge-ref: - - 'Ref A: 8F2D1BC20173455C9FC13C0AA8F903A4 Ref B: BN1AA2051014027 Ref C: 2026-09-12T07:22:58Z' + - 'Ref A: EC9133E733C046A18313945E993A8CD2 Ref B: SG2AA1070302052 Ref C: 2026-04-24T02:58:11Z' status: code: 201 message: Created @@ -117,7 +113,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet create Connection: @@ -125,10 +121,9 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/5cf1822b-7767-4f26-9cf9-0a915c19806e?api-version=2025-07-01&t=639247945792098703&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=R9RB7Dv0FhUyGwPuClFsBJTk13VTYczkBuBMJcbTMMaQ7UXwQiVAXRZh4hkC4rWALt1l5MRuj6lCitL_cG5JwIt_stCK9Np_BOkLc0BwwhKMQbiXIj_174yy_RUd0Vj-mME3FgDXuhxQ_vww7z0BFL6uEL8xfXZe4_999Du4wil6nannOwpW4Dgpyycdnoyn8q-S8MrBHxl7lvjroyNSVICliK7jjgFq-AC7js5fwaMWDZ38s5qhOvT7upL_ryzb_ksbKp07lornkLgmeXEJiklNM5a3e9Z2TIV7K6LGwcFNWtRs4mo9oBRYyeh_2U53ZSHmqHhZ1RSMp0dvIPaVQA&h=XmjJuYe4vX732YvJpFOOny7Df8y3IhRGauOWtpXqREU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/9b504664-4739-4c44-94c3-61ff6f5cdc50?api-version=2025-07-01&t=639125962921915759&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=LTMRMopK4mE307_rjZb9biGTPMmKXzfds8qjMEnz2MZsIIdz1U8eLgIYqjp2LG30uVn3QVGb_ebpfTspZ2cxYkHcLRMNxMoeq9D_ngJSvFzfYsotjheMovzxSVgmueaK0k3d01CDgP3uFXqSFC6er-t-f1N4PbkiacvUtSktw0sv2F_C43wBjwklhQov_eRox8Jd1-naAqsiykXHvibGgW_JINboFIcK--CmuGY8SHRxEVs00qTOUYsK7784NkZljQBc1GTvgxK8rFIrAx30jJKc6EmPk22Fdc-Vd6fYf1CBQrx1YjH4rLUQMYQQB2Bmqod3XqEgLp-IOg9S0Ah64Q&h=43bCUCCBpk0oWC63Q_Mm4ALHZQr-337qIzInw00mki4 response: body: string: '{"status":"InProgress"}' @@ -140,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:22:59 GMT + - Fri, 24 Apr 2026 02:58:13 GMT expires: - '-1' pragma: @@ -152,15 +147,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f6d27f04-6b3c-47f5-9dae-1a5ebd7cb812 + - ee435adf-94f4-40a5-aeb5-c42db0fbc1df x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/56fe61f0-f5f0-4386-96e1-8090779be11e + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/8871f666-27f8-4ec1-96da-b3a10a6c6121 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: F9D197076E6C4B769AA08E37A065FC9E Ref B: BN1AA2051013021 Ref C: 2026-09-12T07:22:59Z' + - 'Ref A: 0E7EE4E5DE0644D88B75D10F549A2608 Ref B: SG2AA1040515036 Ref C: 2026-04-24T02:58:12Z' status: code: 200 message: OK @@ -170,7 +163,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet create Connection: @@ -178,10 +171,9 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/5cf1822b-7767-4f26-9cf9-0a915c19806e?api-version=2025-07-01&t=639247945792098703&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=R9RB7Dv0FhUyGwPuClFsBJTk13VTYczkBuBMJcbTMMaQ7UXwQiVAXRZh4hkC4rWALt1l5MRuj6lCitL_cG5JwIt_stCK9Np_BOkLc0BwwhKMQbiXIj_174yy_RUd0Vj-mME3FgDXuhxQ_vww7z0BFL6uEL8xfXZe4_999Du4wil6nannOwpW4Dgpyycdnoyn8q-S8MrBHxl7lvjroyNSVICliK7jjgFq-AC7js5fwaMWDZ38s5qhOvT7upL_ryzb_ksbKp07lornkLgmeXEJiklNM5a3e9Z2TIV7K6LGwcFNWtRs4mo9oBRYyeh_2U53ZSHmqHhZ1RSMp0dvIPaVQA&h=XmjJuYe4vX732YvJpFOOny7Df8y3IhRGauOWtpXqREU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/9b504664-4739-4c44-94c3-61ff6f5cdc50?api-version=2025-07-01&t=639125962921915759&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=LTMRMopK4mE307_rjZb9biGTPMmKXzfds8qjMEnz2MZsIIdz1U8eLgIYqjp2LG30uVn3QVGb_ebpfTspZ2cxYkHcLRMNxMoeq9D_ngJSvFzfYsotjheMovzxSVgmueaK0k3d01CDgP3uFXqSFC6er-t-f1N4PbkiacvUtSktw0sv2F_C43wBjwklhQov_eRox8Jd1-naAqsiykXHvibGgW_JINboFIcK--CmuGY8SHRxEVs00qTOUYsK7784NkZljQBc1GTvgxK8rFIrAx30jJKc6EmPk22Fdc-Vd6fYf1CBQrx1YjH4rLUQMYQQB2Bmqod3XqEgLp-IOg9S0Ah64Q&h=43bCUCCBpk0oWC63Q_Mm4ALHZQr-337qIzInw00mki4 response: body: string: '{"status":"Succeeded"}' @@ -193,7 +185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:09 GMT + - Fri, 24 Apr 2026 02:58:23 GMT expires: - '-1' pragma: @@ -205,15 +197,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba99c0ae-5017-4998-b532-62753349a276 + - 8e6686fd-2e88-43e2-879e-a01432fdcbec x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a081bbe3-407f-4b37-8cc1-10cc31518b0b + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/malaysiasouth/76a35f2a-282c-44e1-b616-65eb4864b6e2 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 49967CC1EC334E3B88B93EAC4EC8ADCF Ref B: BN1AA2051012051 Ref C: 2026-09-12T07:23:10Z' + - 'Ref A: 053F0D6C86194041A21576AD9E0AEFD4 Ref B: SG2AA1070304025 Ref C: 2026-04-24T02:58:23Z' status: code: 200 message: OK @@ -223,7 +213,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet create Connection: @@ -231,22 +221,21 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003?api-version=2025-07-01 response: body: - string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"edef7302-6ec9-4263-81d0-5817d2a95e5f\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"0de24103-3dbe-4218-a1a4-03734e215843","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"edef7302-6ec9-4263-81d0-5817d2a95e5f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"testvnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003","etag":"W/\"044a3ea6-d213-490e-85e1-26bd69a9402e\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"c63d89ff-040e-47a7-af5a-7d99c6f2c68e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"044a3ea6-d213-490e-85e1-26bd69a9402e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1075' + - '1045' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:10 GMT + - Fri, 24 Apr 2026 02:58:24 GMT expires: - '-1' pragma: @@ -258,13 +247,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0bd67a3c-2b8a-4eee-ae7b-1ddef2866146 + - cdf6ddb3-0dbe-432f-a8a3-5ce73e1c7c60 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationRatePct=0.2, operationConcurrencyPct=2.0, etc x-msedge-ref: - - 'Ref A: 17E0AD237BF24820B72CE07C7D20FF10 Ref B: BN1AA2051014039 Ref C: 2026-09-12T07:23:10Z' + - 'Ref A: CDC42138505B4A14A1C180E834FF67FA Ref B: SG2AA1070301062 Ref C: 2026-04-24T02:58:24Z' status: code: 200 message: OK @@ -274,7 +261,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet subnet update Connection: @@ -282,24 +269,23 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"edef7302-6ec9-4263-81d0-5817d2a95e5f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"044a3ea6-d213-490e-85e1-26bd69a9402e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '519' + - '489' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:11 GMT + - Fri, 24 Apr 2026 02:58:25 GMT etag: - - W/"edef7302-6ec9-4263-81d0-5817d2a95e5f" + - W/"044a3ea6-d213-490e-85e1-26bd69a9402e" expires: - '-1' pragma: @@ -311,59 +297,56 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c3c241f-05f4-4b85-b626-38c4dcdafef5 + - 4002e20a-9017-442d-8252-e91f4acba1e9 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/bc7699f7-da96-4396-86da-1185b2549f52 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/ddc1d12a-34d9-466b-a092-2f170e2a0ef8 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: DFA61B6E7C27471287AE75995A724E20 Ref B: BN1AA2051014019 Ref C: 2026-09-12T07:23:11Z' + - 'Ref A: 657015A5B0934E1FAA576C58734984A4 Ref B: SG2AA1040520042 Ref C: 2026-04-24T02:58:25Z' status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004", - "name": "testsubnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": - false, "delegations": [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": + "name": "testsubnet000004", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": + [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet subnet update Connection: - keep-alive Content-Length: - - '451' + - '419' Content-Type: - application/json ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"5f5e5705-8242-40ff-a318-51bc9ddb653e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"e8c534db-bb2c-4b04-a2c1-2a691566156c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/77cb8983-a988-4802-853b-f79a6f9e1a92?api-version=2024-07-01&t=639247945929063646&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=h5rdmNTQt81KhOz5wepGxmMr9eeuyrEARUSmxYzE0E9sYeFXKRXNcfbQHJSeUXScdi8QKEUon1XnU-u_FovNpvF2rZ1ToH3D5lFY9dTHpbtjBNdhdtrQIogLW1hkOu5CRZJzjldsL5QwqNKkKNvKRlcq87LfuUDDlDwxvoTL_XaRx0mVfza1FEx5T7pmtf-tgnu3rhFLk7KzCpJ6Ho4-iI7fWMpnk-EMZ_0PAnV0IAuoI8DcDQvxI-_RoBdC00McH2V4h7qdPCrKumy6ek9MhFaCTkCq4Z85P1YaXcjxBAz7fIWLS4VGFfDkD2aXsjhfXEu77oFnrrz3WlXPutHbsQ&h=y2bUlLydOHKqb8zYH25m_eNBrIdr0p9wrT3qH1jBOp8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/75d8dc29-959b-400e-8c7b-f37a30ca5b9d?api-version=2024-07-01&t=639125963078968935&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=nlHH0C17SJM5TeQ2fD2v_tWcvGeCfIjk4WIzrjUUSZyLZ_wAxBihhOslegJs9_TwK-7xaMeqL_oNYV3XaAOfYd-Mj_nIaVzoQFcEjelMpT7P7bjFudaPVSS1ce63YIqSCPC8cMd0lqcP0ZvQxNmzsANKFlZWC3iXPOsQvo1CV6LMkxjh0exMAjL7LkpgdWJzCV-8rZI2ImLHaVJdfz2_a_TITTTnUjAzFR8Cd4tGLJs8RJxV0xm31e9S-TJITHXy7zA15cUBVquLBjJ5Ph8RkqSMZYvRxKdUaKO6oy_Mxq5-I4FAVWLn2Q32DDt6aS0YF_kyx8fpK_ckf7UgmziiXw&h=V2hGvprxTOKsVAVgcWXmMW_HXwVw-OCWEpHXKzk-izc cache-control: - no-cache content-length: - - '519' + - '489' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:12 GMT + - Fri, 24 Apr 2026 02:58:27 GMT expires: - '-1' pragma: @@ -375,18 +358,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e957f2b4-f762-4ddb-8321-61d23d9df744 + - a87cd952-9c1f-4886-96d0-aa2d1b9b2a36 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/c7c4ee30-8db0-49c1-9962-f09fc6395dff + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/ed54b0ee-7525-47a7-a320-4ccf3b19c38b x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, - etc x-msedge-ref: - - 'Ref A: 0429E2E6276744D1A676C7D3BF333037 Ref B: BN1AA2051012049 Ref C: 2026-09-12T07:23:12Z' + - 'Ref A: 6BF288D536BC4A398DBE82432DD5FC17 Ref B: SG2AA1040518054 Ref C: 2026-04-24T02:58:26Z' status: code: 200 message: OK @@ -396,7 +376,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet subnet update Connection: @@ -404,10 +384,9 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/77cb8983-a988-4802-853b-f79a6f9e1a92?api-version=2024-07-01&t=639247945929063646&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=h5rdmNTQt81KhOz5wepGxmMr9eeuyrEARUSmxYzE0E9sYeFXKRXNcfbQHJSeUXScdi8QKEUon1XnU-u_FovNpvF2rZ1ToH3D5lFY9dTHpbtjBNdhdtrQIogLW1hkOu5CRZJzjldsL5QwqNKkKNvKRlcq87LfuUDDlDwxvoTL_XaRx0mVfza1FEx5T7pmtf-tgnu3rhFLk7KzCpJ6Ho4-iI7fWMpnk-EMZ_0PAnV0IAuoI8DcDQvxI-_RoBdC00McH2V4h7qdPCrKumy6ek9MhFaCTkCq4Z85P1YaXcjxBAz7fIWLS4VGFfDkD2aXsjhfXEu77oFnrrz3WlXPutHbsQ&h=y2bUlLydOHKqb8zYH25m_eNBrIdr0p9wrT3qH1jBOp8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/75d8dc29-959b-400e-8c7b-f37a30ca5b9d?api-version=2024-07-01&t=639125963078968935&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=nlHH0C17SJM5TeQ2fD2v_tWcvGeCfIjk4WIzrjUUSZyLZ_wAxBihhOslegJs9_TwK-7xaMeqL_oNYV3XaAOfYd-Mj_nIaVzoQFcEjelMpT7P7bjFudaPVSS1ce63YIqSCPC8cMd0lqcP0ZvQxNmzsANKFlZWC3iXPOsQvo1CV6LMkxjh0exMAjL7LkpgdWJzCV-8rZI2ImLHaVJdfz2_a_TITTTnUjAzFR8Cd4tGLJs8RJxV0xm31e9S-TJITHXy7zA15cUBVquLBjJ5Ph8RkqSMZYvRxKdUaKO6oy_Mxq5-I4FAVWLn2Q32DDt6aS0YF_kyx8fpK_ckf7UgmziiXw&h=V2hGvprxTOKsVAVgcWXmMW_HXwVw-OCWEpHXKzk-izc response: body: string: '{"status":"Succeeded"}' @@ -419,7 +398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:12 GMT + - Fri, 24 Apr 2026 02:58:28 GMT expires: - '-1' pragma: @@ -431,15 +410,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce224a5b-7844-4087-9902-2133b800c953 + - ab92b3a3-cb6f-4f71-82e4-432f7fae0e5c x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ad8308b7-3d69-49e9-acf8-41a803c05203 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/0bccd1c9-9e10-44a5-9087-35e69540d5ff x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: D5D901FDBEF64464A339E6204099B0B6 Ref B: BN1AA2051013023 Ref C: 2026-09-12T07:23:13Z' + - 'Ref A: 74485E16F54F4DCABD41F346516F7F48 Ref B: SG2AA1070302042 Ref C: 2026-04-24T02:58:28Z' status: code: 200 message: OK @@ -449,7 +426,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network vnet subnet update Connection: @@ -457,24 +434,23 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004?api-version=2024-07-01 response: body: - string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"5f5e5705-8242-40ff-a318-51bc9ddb653e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"testsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004","etag":"W/\"e8c534db-bb2c-4b04-a2c1-2a691566156c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '519' + - '489' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:13 GMT + - Fri, 24 Apr 2026 02:58:29 GMT etag: - - W/"5f5e5705-8242-40ff-a318-51bc9ddb653e" + - W/"e8c534db-bb2c-4b04-a2c1-2a691566156c" expires: - '-1' pragma: @@ -486,15 +462,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 939623cc-4e29-4653-87d7-083e5538c3b2 + - a2fc0318-99bc-434b-a377-eefdac0d3fdf x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/afd55743-943d-4871-8e78-cbb060749b47 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/6b642276-9590-4ac5-82a4-6005575a14e6 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: CE93118E6B3645CAA26BCA9798963E77 Ref B: BN1AA2051012009 Ref C: 2026-09-12T07:23:13Z' + - 'Ref A: 22CBA4764084480682D501325E43D03D Ref B: SG2AA1070303036 Ref C: 2026-04-24T02:58:29Z' status: code: 200 message: OK @@ -504,7 +478,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -512,13 +486,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -527,7 +500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:14 GMT + - Fri, 24 Apr 2026 02:58:30 GMT expires: - '-1' pragma: @@ -541,47 +514,48 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FA66083A4F9144DCBB2978CCABE094CE Ref B: BN1AA2051014027 Ref C: 2026-09-12T07:23:14Z' + - 'Ref A: 7F93D78AC26C49458A800602A4BC6AB0 Ref B: SG2AA1070304031 Ref C: 2026-04-24T02:58:30Z' status: code: 200 message: OK - request: body: '{"location": "centralus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": - false}}' + false, "anonymousPullEnabled": false}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: - keep-alive Content-Length: - - '96' + - '127' Content-Type: - application/json ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:23:15.0106219+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:23:15.0106219+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-12T07:23:15.0106219Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:23:22.094768+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:23:22.0950592+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:58:32.7963077+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:58:32.7963077+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-24T02:58:32.7963077Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-24T02:58:39.8421426+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2026-09-01-preview + - '2025-04-01' + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-790881ce-3f89-11f1-8688-7ced8db4dd25?api-version=2025-04-01&t=639125963210150727&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=EdwVOO3VbHfT-ml9eQ8AItEJBtS3gNjTmX2HPDmCuwTRMpQbMNdyz0DvMvf5e3EzmLLre4CwMfseySVzpEeCQHuF0TNJCOAoo5MVLj58LBm5nAhyVEdmY-hh-m65Lv6mqRimfWxJJ_XWlAplUQ8qHwi1tqHEJAkBEsRfSTu8GDTihRnx08oBjOX5G5ivxy_GQlsht2mIpnDZVGDRhC86lLpGabDA3SKSkRfvWUBi6rWeyfDR7YZOIYtCEBfFkXEyJ7z4TGCHC3f6YGCqmaD3pCWncllD6XcnEZmohvuMtgzpS-yCo3CtlcA3rEZpHpkKRhEtwg6r1jxCUOz4o5yItA&h=C7jMCQnRGtTBZC2fjL-lhweQpQKQabTr7-zc1m7gL9U cache-control: - no-cache content-length: - - '1781' + - '1304' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:22 GMT + - Fri, 24 Apr 2026 02:58:40 GMT expires: - '-1' pragma: @@ -593,13 +567,113 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/fac08eb1-9f39-4b91-bbf3-a9057cb404d9 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/eea31283-b400-43b9-b367-bd11e99089b8 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 60907429577D49159C09F74C2DDD7192 Ref B: BN1AA2051013039 Ref C: 2026-09-12T07:23:14Z' + - 'Ref A: 39D702B6C0A341C4831D268773330725 Ref B: SG2AA1040512025 Ref C: 2026-04-24T02:58:30Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --sku + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-790881ce-3f89-11f1-8688-7ced8db4dd25?api-version=2025-04-01&t=639125963210150727&c=MIIIJzCCBw-gAwIBAgIRAPkg2z-B9Jm_vrDg-qNrjwswDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV0NVUyBDQSAwMTAeFw0yNjA0MTAwNjUyMTdaFw0yNjEwMDUxMjUyMTdaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxhFGHIBug-4Pg8y8wrt85aTDI_1ckzX8XYnsk6BmTh36sX4QX-zrgCccWt1yXC8y3lSRvEr66Pgoywj0gN60U0prO-Llj-OOWdlGOnbBFPBaBa2ogrj2ULknxSn8HyrgUsMa3zGCqoR_eDSq7R_O20UZDFBlonw8TSmqdLPA4fe1TarGVXDGoRxYv_BQE0sxI54JmyZ5uATcXoIBRqCEmrRFh6MO0V4rK5-sBO8yodyMdOweERdOFcDfLvM2WCaax5HnsjPSLMYy-XTD01vXM3XkKAJ6K30JxQ4_Wtn1IvN-b0R-eEdUMUdPKhH4RDL_8xL-ALqsnaG0cNZazOQr1QIDAQABo4IFJDCCBSAwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUdjmEGeQg6LiPic0f-L1KBD3vO0wwHwYDVR0jBBgwFoAUFNI34PbWfX7djbq6ZasElCXglh0wggH7BgNVHR8EggHyMIIB7jB7oHmgd4Z1aHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMH2ge6B5hndodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NybHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS8yOS9jdXJyZW50LmNybDBsoGqgaIZmaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIGBoH-gfYZ7aHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI5L2N1cnJlbnQuY3JsMIICAAYIKwYBBQUHAQEEggHyMIIB7jB-BggrBgEFBQcwAoZyaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMIGABggrBgEFBQcwAoZ0aHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwbwYIKwYBBQUHMAKGY2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB4BggrBgEFBQcwAoZsaHR0cDovL2NjbWV3ZXN0Y2VudHJhbHVzcGtpLndlc3RjZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdGNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAwpZthpdA-8D9zmLFa9DswaQjZpHoWrNOxcAkBHpasqPjLn8-Kn0Epr2tRtCqiDWEGx_u3n8ziMDqRxvNKiDUdDWhMl9QuodIY45vNfF6z92zdJEJ0m01EaNwji4O0BNu0Yy7zPa_L79KmbrFPHHQkexKO2qyHqYM0M22afvWFTacEIlhMIcL-Hq6afh-pfO3r2D3ZnFSmrZFt1A8qT0qTCXRaOqAM1Wk35M7k-idK2KawQ4Q9KnP0h62bPPhktf4Hi_Ax5-Ms7zxobTxMvoilvGVHYDeQ2zZDEoMmyNZ1gfzPjnGnV2BbMj3JEHIzWuKuw033HBrOIc8peAt8JKrH&s=EdwVOO3VbHfT-ml9eQ8AItEJBtS3gNjTmX2HPDmCuwTRMpQbMNdyz0DvMvf5e3EzmLLre4CwMfseySVzpEeCQHuF0TNJCOAoo5MVLj58LBm5nAhyVEdmY-hh-m65Lv6mqRimfWxJJ_XWlAplUQ8qHwi1tqHEJAkBEsRfSTu8GDTihRnx08oBjOX5G5ivxy_GQlsht2mIpnDZVGDRhC86lLpGabDA3SKSkRfvWUBi6rWeyfDR7YZOIYtCEBfFkXEyJ7z4TGCHC3f6YGCqmaD3pCWncllD6XcnEZmohvuMtgzpS-yCo3CtlcA3rEZpHpkKRhEtwg6r1jxCUOz4o5yItA&h=C7jMCQnRGtTBZC2fjL-lhweQpQKQabTr7-zc1m7gL9U + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - '2025-04-01' + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-790881ce-3f89-11f1-8688-7ced8db4dd25?api-version=2025-04-01&t=639125963217023943&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=YUKrY34OyiKqhUC68KsEhPfzE8DRQD8jfc6huV2KUYVCx4PRmK-G19-2NBsjxrrLr_3L5BFlUuNeZ1BImYqpw4d_N1s4S5HtxzYNk5-HD-cJJjICoUpfg_CDgPpKKX46RBVCDK9KfhfsjupRoi3EuFw3ZTPB9K3m_PY_uwQiEOZUcY5p7adOaXn_UPWg5-BUP4vnJRPyNK2zSmS2y2qOjIJcoyOAU7G_wxfJyC1vAF_gDL2XxiPyM2TSOJfo8KWiuXeNpwcJDeP31-nqLWUWlTWOXRJ7wwyC5kOZsu2Op0DZjeg1n8WpC8jJQNKJvD0jGjQygUisd1iR_R6xImQKPg&h=A8owN3qzQgK6OGTfP3bkWunIsIgCpRmvMF2u5b91i0k + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 24 Apr 2026 02:58:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/ea6bd1a1-b1da-49a3-a97f-a37b7fd13ac0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DE6CDDB070D842A89281644BF8356867 Ref B: SG2AA1040513031 Ref C: 2026-04-24T02:58:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --sku + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:58:32.7963077+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:58:32.7963077+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-24T02:58:32.7963077Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-24T02:58:39.8421426+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + headers: + api-supported-versions: + - '2025-04-01' + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 24 Apr 2026 02:58:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4A6715809E34403BBC2087D6401266FA Ref B: SG2AA1070306036 Ref C: 2026-04-24T02:58:41Z' status: code: 200 message: OK @@ -609,7 +683,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -618,13 +692,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -633,7 +706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:21 GMT + - Fri, 24 Apr 2026 02:58:42 GMT expires: - '-1' pragma: @@ -647,7 +720,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C4DD7E6ECE66448EB17F7019CCE5B4CD Ref B: BN1AA2051015017 Ref C: 2026-09-12T07:23:22Z' + - 'Ref A: 03552DD46E3F4DC3B14C79E830FFC77A Ref B: SG2AA1040518042 Ref C: 2026-04-24T02:58:42Z' status: code: 200 message: OK @@ -660,7 +733,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -673,19 +746,18 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"e322b7e6-5536-458d-b3b5-801b6c8ec992\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"26de0faf-5d84-429e-8238-82e827eafb5e","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"e322b7e6-5536-458d-b3b5-801b6c8ec992\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting - Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.1ffdf25d-a0f5-4b3e-815e-44b1b9e98584"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"6789a980-117b-4bf5-90e7-9454a27e00fc\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"1885062d-b88a-436f-9777-c3e4d2ff31b9","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"6789a980-117b-4bf5-90e7-9454a27e00fc\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.60bb890d-7289-4e3c-910c-65302aca19a0"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg cache-control: - no-cache content-length: @@ -693,7 +765,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:22 GMT + - Fri, 24 Apr 2026 02:58:44 GMT expires: - '-1' pragma: @@ -705,18 +777,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91232c85-dbfb-4ea3-a9d0-df613a752fa4 + - b50236f4-5c74-4243-91ad-b220e8129ead x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/0fdc66ca-0c29-42ba-98f3-feb83a7f409e + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/ab2187a5-f252-4692-a609-84c79c8debb7 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, - etc x-msedge-ref: - - 'Ref A: 60AFE07555484311A913A0E01DD47285 Ref B: BN1AA2051014047 Ref C: 2026-09-12T07:23:22Z' + - 'Ref A: 85D93C7944CC4CB6AB347AC17C01831A Ref B: SG2AA1070303023 Ref C: 2026-04-24T02:58:43Z' status: code: 201 message: Created @@ -726,7 +795,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -735,10 +804,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg response: body: string: '{"status":"InProgress"}' @@ -750,7 +818,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:23 GMT + - Fri, 24 Apr 2026 02:58:44 GMT expires: - '-1' pragma: @@ -762,15 +830,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e80ab5e8-be40-4665-ad68-68b3e37da41e + - 4c5d42cb-2be2-4b8d-8cec-25186946dfe3 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/24dec167-6b3e-4bbb-8971-a8ac93ef3b8d + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/0e0bda79-30cd-4ce3-9d89-bd445e3f7436 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 154D8C63AFA0415290DE4B56DF982B08 Ref B: BN1AA2051015035 Ref C: 2026-09-12T07:23:23Z' + - 'Ref A: FCA1143C20924345B62B9A18970BECF8 Ref B: SG2AA1070301054 Ref C: 2026-04-24T02:58:44Z' status: code: 200 message: OK @@ -780,7 +846,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -789,10 +855,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg response: body: string: '{"status":"InProgress"}' @@ -804,7 +869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:34 GMT + - Fri, 24 Apr 2026 02:58:55 GMT expires: - '-1' pragma: @@ -816,15 +881,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68a6fda6-eb2c-4141-b02b-39d41f4c48bd + - 16890bc5-e2c1-411e-b471-9eba03d2f387 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/95367ccf-6301-47df-8508-5df1814b2781 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/92d020b4-7fb6-4fdc-b539-2030f9b5f7ba x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 4A03E36C2CE74697BD4446DA93A68E3C Ref B: BN1AA2051012053 Ref C: 2026-09-12T07:23:34Z' + - 'Ref A: 142CA50139314922950AE35C38375934 Ref B: SG2AA1040519062 Ref C: 2026-04-24T02:58:55Z' status: code: 200 message: OK @@ -834,7 +897,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -843,10 +906,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/8b6c129b-2461-4e8c-a96c-d232f9705d15?api-version=2025-05-01&t=639247946035312398&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=a8AoB7YAj1yg8ujHJHjRIP1z557BJAoy-VqETouckIgwaRWva0bDI168jdDmZhNA-wYgqwOXr6cZdSfgu-pTy9ykztglAO3Ut1UzIHGLrlT74abrNG5hsA2voXYtW9L6aPffVwYOcBtY4jeayr4vGG035Qvp4U4csJVE-KKUwt1XNJheVdGFR-99dMlyL8mgdGmMo67TxaElDChCZ5nqDQD9TA8YoicmZmrao2H7uoa1vJ8JsLjoWGSCkVtI_pTNf3If1rG1-pNP9WLAN5B5ZECfvKdpB3AajP8j0nL01UPER54m82pDQEA_amKHAxLU1G9IoQJECjjy0OuVTxissA&h=8mDC4QG-ZJ83hLmRDh4-cBSTP6Wx8zMvfujy04IUuIk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/091e9b28-16fe-4877-8c30-7fcc52e8e101?api-version=2025-05-01&t=639125963242285076&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=TscmZ573S-vpMMrc5LAdpkNH_2rgyps5kUXCzn_QW1yvrAfaPZ-_eU2GOOivK5nOH_myABQZgAfCurQLhm5i6obaA73NobAbhwdNtVfqQQiPIrYuiKohts6gycn_3jmkYz1Xc_O2m4K63X3u0nyR-18XvehDbFewf4DgiGY514A2VuHmj8lk_HgTj81J48MQOiGByaaMKNz6WPsPeP7-3Dw_vSaKlsk4D5d25pk56Fs5P9DndT50moo5yno7xTjOWj47TeCMLc5NvWpcI9FUY-DTmt3eok9apyvixRUemgFO7R7KM56xwdCZTeeZrUKqHSKDE17A2rkHYbjZtz-Bbw&h=-DYoFibojW3wG_QrpQMkIc5epSZrd7W2_COvS3IOxLg response: body: string: '{"status":"Succeeded"}' @@ -858,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:55 GMT + - Fri, 24 Apr 2026 02:59:15 GMT expires: - '-1' pragma: @@ -870,15 +932,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8e39f66-c2d8-45d2-b30b-9ecdaf39a8bf + - 81178aef-3876-4336-8d95-fe4bd2078507 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/23d42940-8072-4e61-a879-c9bf71aaf00c + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/17875b40-42f6-4b9e-832f-19c576616204 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 6B2E8E199C944B5F83E3E1B0852562EF Ref B: BN1AA2051012019 Ref C: 2026-09-12T07:23:55Z' + - 'Ref A: B58285C12BED4F01B48E486F174786E6 Ref B: SG2AA1070303031 Ref C: 2026-04-24T02:59:16Z' status: code: 200 message: OK @@ -888,7 +948,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -897,13 +957,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"c7c5f806-7fca-4fda-8361-171ecdeb5c32\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"26de0faf-5d84-429e-8238-82e827eafb5e","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"c7c5f806-7fca-4fda-8361-171ecdeb5c32\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.1ffdf25d-a0f5-4b3e-815e-44b1b9e98584"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005","etag":"W/\"abb19e0d-4c72-4efc-8577-06f96dcc832f\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"1885062d-b88a-436f-9777-c3e4d2ff31b9","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006","etag":"W/\"abb19e0d-4c72-4efc-8577-06f96dcc832f\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.60bb890d-7289-4e3c-910c-65302aca19a0"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: cache-control: - no-cache @@ -912,9 +971,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:55 GMT + - Fri, 24 Apr 2026 02:59:16 GMT etag: - - W/"c7c5f806-7fca-4fda-8361-171ecdeb5c32" + - W/"abb19e0d-4c72-4efc-8577-06f96dcc832f" expires: - '-1' pragma: @@ -926,13 +985,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8e89de1-8776-4a60-8957-371502e5375c + - 07d2b7de-ae8a-4bbf-8080-f32f6bac61b5 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: A237292FFD124CAE853FE79B889B16C7 Ref B: BN1AA2051014019 Ref C: 2026-09-12T07:23:56Z' + - 'Ref A: E1C621FB9EE94ECE975369A331C79852 Ref B: SG2AA1040513034 Ref C: 2026-04-24T02:59:16Z' status: code: 200 message: OK @@ -942,7 +999,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection list Connection: @@ -950,21 +1007,19 @@ interactions: ParameterSetName: - -g --name --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -972,7 +1027,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:56 GMT + - Fri, 24 Apr 2026 02:59:17 GMT expires: - '-1' pragma: @@ -984,11 +1039,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/5b9bc652-635d-421c-90b9-89ee436a315a + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/89ffd465-33f9-4294-8eec-6da5c418816b x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 99E2BA6F6FDD45E5AC915671FAC3CC04 Ref B: BN1AA2051013019 Ref C: 2026-09-12T07:23:56Z' + - 'Ref A: E2E295294CF74C029B1A4EB195FF2757 Ref B: SG2AA1040513062 Ref C: 2026-04-24T02:59:17Z' status: code: 200 message: OK @@ -998,7 +1053,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection approve Connection: @@ -1006,21 +1061,19 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1028,7 +1081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:57 GMT + - Fri, 24 Apr 2026 02:59:18 GMT expires: - '-1' pragma: @@ -1040,18 +1093,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/8538d5a3-2b03-4034-96c0-57a898a3ca57 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/023d738c-7c65-4410-b916-1a4dc31bc6f2 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 88CA097E231E4B0FBAE07DF6C8B95BB9 Ref B: BN1AA2051015011 Ref C: 2026-09-12T07:23:57Z' + - 'Ref A: F1E6B26080344749874AF65B20530FE2 Ref B: SG2AA1070303034 Ref C: 2026-04-24T02:59:18Z' status: code: 200 message: OK - request: body: '{"type": "Microsoft.ContainerRegistry/registries/privateEndpointConnections", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152", - "name": "testreg000002.3fa96cea7b404db893f437ac636e7152", "properties": {"privateEndpoint": + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d", + "name": "testreg000002.526438cee8124264b99a084f8287f37d", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"}, "privateLinkServiceConnectionState": {"status": "Approved", "description": "somedescription"}, "provisioningState": "Succeeded"}}' @@ -1059,7 +1112,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection approve Connection: @@ -1071,31 +1124,29 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:23:57.7340273+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:23:57.7340273+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:59:19.6621655+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:59:19.6621655+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152/operationStatuses/privateendpointconnections-840083eb-887f-49f0-800f-4db5a71b55ee?api-version=2019-12-01-preview&t=639247946379371482&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=SBl8G98hlq4jI_PnSKR_k7h7Rm-bkR9qA3hxfFY3DsXus0VXQ6wWzVYz_fbRDnRNoLpxU_cymFYqh1KeZEJQM0CbqpFJMMCmPyElGboXUe0M0KL7z7Ad_XwjrLfWVSzpgi9hPOlXpmWaSib5obcpo-iqQBdQira9MH9hN4wiGpgkrqEgvNLpCJGnRreQRZyvdGlxzgy4_aVuggdrBmJ-N3yCOaW0NzWPzhGvRxrdQv84WocJY_QAYyOUx-9DVTex-V4ikXIPSF0Lf2i3O3fM26aYOR_EULVs3y70-TfGdvU1IU87oKdrscg_bcjlyR8VI_lZnKuzqbfiQzQpB5XrBA&h=G-01nEjdKvcpeEq8qNcyEHM_WAaAbVjzQly09oSGlHI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d/operationStatuses/privateendpointconnections-ea7d1002-5251-458e-aade-b38c9a1a2102?api-version=2019-12-01-preview&t=639125963598027932&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=Fr0w6_sqC81h7apblZP7KI4Nk2Ln-Vw184Li2APdotSMJuJ-fXKF3pEfmu0zwFSQxECV3Z-XFRefttjdvW4CJ0KOMD3_WCf2sXRg-xIn2MkconCinV_3U0ytEVPS_78xhVtPc8OQ0FhtDj2GgX7DcqIBfGpvcMmrnqAh4itQNHvpcifzlrzWKQYDRHRf19ro72k-GV-5XOARC51HGDSXYSma78Bfwo9WmgVF6yx2SOdxW5IwwmEREr97GGz29VH-5tsC-Vbpv3F025InYVKc8jGxfpnDzuA5ab3UYa7b2wGCqNRPdyAiWcMSOygVDJsW-oinLgvtmyG11fou4r_cwg&h=V6W94ggmpLB9ynEgAJqCl4RA_1_uYmx5mdHvGoWuvqw cache-control: - no-cache content-length: - - '927' + - '873' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:23:57 GMT + - Fri, 24 Apr 2026 02:59:19 GMT expires: - '-1' pragma: @@ -1107,13 +1158,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/b30df5f1-13ff-4253-a884-f3bd099f2205 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/58de09eb-548e-40ea-9928-2ce05a084ad0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: B16D5D38763441B2A25376984C6B6EA9 Ref B: BN1AA2051013039 Ref C: 2026-09-12T07:23:57Z' + - 'Ref A: 9376873F85E04D6BADE8D983941E65D1 Ref B: SG2AA1040515031 Ref C: 2026-04-24T02:59:19Z' status: code: 201 message: Created @@ -1123,7 +1174,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection approve Connection: @@ -1131,21 +1182,19 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1153,7 +1202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:07 GMT + - Fri, 24 Apr 2026 02:59:29 GMT expires: - '-1' pragma: @@ -1165,11 +1214,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/b9ab1fa5-1e82-4047-853b-4d205f29cd38 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/378d02e8-351c-4997-94ea-033f1e6780c8 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A25210C1170D4D99A40FE5A0DC8753BD Ref B: BN1AA2051015053 Ref C: 2026-09-12T07:24:08Z' + - 'Ref A: EFCE9BDC950147A99920930B7B9F57EF Ref B: SG2AA1070304034 Ref C: 2026-04-24T02:59:29Z' status: code: 200 message: OK @@ -1179,7 +1228,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -1188,13 +1237,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-09-12T07:22:54Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_acr","date":"2026-04-24T02:58:00Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1203,7 +1251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:07 GMT + - Fri, 24 Apr 2026 02:59:30 GMT expires: - '-1' pragma: @@ -1217,7 +1265,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9BE17CA754E04F989D927C64E5D0581F Ref B: BN1AA2051012033 Ref C: 2026-09-12T07:24:08Z' + - 'Ref A: 58EF3C9D2A504FE2A6FDE5F721386676 Ref B: SG2AA1070302040 Ref C: 2026-04-24T02:59:30Z' status: code: 200 message: OK @@ -1230,7 +1278,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -1243,19 +1291,18 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"8869d256-4795-4dea-9a92-78fe1c81d0d4\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"3ab6fa7d-b935-43e8-9014-ddc7dbcba357","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"8869d256-4795-4dea-9a92-78fe1c81d0d4\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting - Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.17281aa1-d6c5-4c59-ac87-10373fb13ddf"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"bfa8f244-5dfc-43eb-8f41-faf4cadd1721\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Updating","resourceGuid":"9bf9893f-7565-4a2b-930d-d21d0c8a7a6c","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"bfa8f244-5dfc-43eb-8f41-faf4cadd1721\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.2079c907-6bc4-494d-96f6-eb43792a7b4e"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI cache-control: - no-cache content-length: @@ -1263,7 +1310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:08 GMT + - Fri, 24 Apr 2026 02:59:31 GMT expires: - '-1' pragma: @@ -1275,18 +1322,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a3b9daaa-1022-4b16-813d-47c83fbe2ee9 + - 112c589d-2efc-4ebe-bfe2-0c2303b197ef x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/d3a40683-1a3f-460e-a0cc-5da02f279bb9 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/57c915b2-fce7-4d73-a249-90a53fa77148 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, - etc x-msedge-ref: - - 'Ref A: 26EF4367220D434586482CAD22100A6A Ref B: BN1AA2051013051 Ref C: 2026-09-12T07:24:08Z' + - 'Ref A: 2D731449763E4A4CAA43892FC72DF31E Ref B: SG2AA1070302034 Ref C: 2026-04-24T02:59:31Z' status: code: 201 message: Created @@ -1296,7 +1340,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -1305,10 +1349,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI response: body: string: '{"status":"InProgress"}' @@ -1320,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:10 GMT + - Fri, 24 Apr 2026 02:59:32 GMT expires: - '-1' pragma: @@ -1332,15 +1375,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8688eccf-2db5-44e8-bf81-493e18f78ddd + - f4499e74-18b3-4e5f-8e6c-d7ce776ad4cd x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4b6dc171-03c9-4463-8c61-7ed9b00c7bc7 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/b7deae38-99e6-4364-8a96-297f0802e542 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 6CF32255F4C343D0A331D140C8BC9674 Ref B: BN1AA2051015033 Ref C: 2026-09-12T07:24:10Z' + - 'Ref A: 7AE3BE95152842CBB8BA9675BA2AA94C Ref B: SG2AA1040520042 Ref C: 2026-04-24T02:59:32Z' status: code: 200 message: OK @@ -1350,7 +1391,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -1359,10 +1400,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI response: body: string: '{"status":"InProgress"}' @@ -1374,7 +1414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:20 GMT + - Fri, 24 Apr 2026 02:59:43 GMT expires: - '-1' pragma: @@ -1386,16 +1426,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35d22e1b-55e2-4497-b7a0-486d77d3fa91 + - 446fffe9-acdf-4170-825c-1bde24a50da3 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b34cd8d8-1f92-462a-8b84-44a34eb59c27 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/e25485c5-f78d-4eef-8231-cdb95878313b x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, - etc x-msedge-ref: - - 'Ref A: 7DF3FA71754F4F31954C50B69EAEEEB9 Ref B: BN1AA2051015035 Ref C: 2026-09-12T07:24:20Z' + - 'Ref A: 4AF9A2C790334861BFA02D676F142FF7 Ref B: SG2AA1070301054 Ref C: 2026-04-24T02:59:43Z' status: code: 200 message: OK @@ -1405,7 +1442,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -1414,10 +1451,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/c2db5202-c359-4147-af6a-555bf9c458a3?api-version=2025-05-01&t=639247946497417312&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=K2XtDLEjADke6dNcEv29tkI61N-C9o2FfgwdyUWeuZndQRJpRxN3vlc9eLkrqOoE0GpBC3VDFbj2iUo0UDPNFiso61KBVvE74IBoQOkzlBmE63NgLNXjx81V8DaxTbfNGulMkFvOKshDrBdXjau9YTl9gMZZDbbsirSOlln4Geo9walU3JCaUhM2pQ623NPAU_2docTY1_BAcvUON9XrJEBXjpOJ_LI5CFqJS68T4hd8EThWe_3UjCMdgeNwRBi2kXYj2j068Lj1qtiHe85FEIavF_MmbJEtWmc30kgXlLiAThTyzNJv93bWaaTiy9MfFYDjDWdNW7EKwREhv4vHRg&h=WxD1qM6O_ALE9jZrv5eMfHR0ekXwPLkPXHHfK9CkQVU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/f432fbf6-ca27-44e6-bd21-e1375a9be53e?api-version=2025-05-01&t=639125963722910090&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=XKMCMifz-krZ8mo-Z0ikTfQeck4ZFpby_Qn08_99ompQefyIqI5pKFXJ2z49mRTlIrBDV7Va1u0J9zWULGqmOOW9BW_4F14T1IrpcWU0zEM6N7Mi-zI9wbbjzT08l_Egg-cL6_rGGUplDLHJrczGnMrH-fvaM85STmVRSZagiO3z71MQsGGtSJYYq5G9C0gW5aMy3vZW8FSFi1ZuF2KCWqi3Q8WLjHcN91aVYhq1VVv4uspEA_6E6oQ9pikhaCemVphWsDVptyB-L4_xz3qO1OHqwysNPhToe6vDGwWqDnlFowFPQGhjtisQf28eQuQ4LN5GsSUns_6HmydA_J-SaA&h=MPyJ_U5ziQGxoO2WYIjJrVnzp_gATflq_1G2J5mpNtI response: body: string: '{"status":"Succeeded"}' @@ -1429,7 +1465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:41 GMT + - Fri, 24 Apr 2026 03:00:03 GMT expires: - '-1' pragma: @@ -1441,25 +1477,23 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e36715e6-afe4-49a9-8cb9-f5219e5944d5 + - 692fa5b5-7e52-4460-8f5d-11e9eb50ec56 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f9d3c57c-08d8-44f0-b369-0a7671dea22a + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/southeastasia/8468022a-898a-4927-bfb5-c6d778e085b2 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc x-msedge-ref: - - 'Ref A: 90822F1043B74D818A13DC37480C7CB5 Ref B: BN1AA2051013045 Ref C: 2026-09-12T07:24:41Z' + - 'Ref A: FFD4A10DEB804271905FAD8B9448EF68 Ref B: SG2AA1040519023 Ref C: 2026-04-24T03:00:03Z' status: code: 200 - message: '' + message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint create Connection: @@ -1468,13 +1502,12 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007?api-version=2025-05-01 response: body: - string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"f9468a26-3492-40da-bbe4-2b282ab2a182\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"3ab6fa7d-b935-43e8-9014-ddc7dbcba357","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"f9468a26-3492-40da-bbe4-2b282ab2a182\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.17281aa1-d6c5-4c59-ac87-10373fb13ddf"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' + string: '{"name":"priv_endpoint000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007","etag":"W/\"75ba1164-5b7f-44bd-9cee-408dfbf6f3ad\"","type":"Microsoft.Network/privateEndpoints","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"9bf9893f-7565-4a2b-930d-d21d0c8a7a6c","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"priv_endpointconn000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008","etag":"W/\"75ba1164-5b7f-44bd-9cee-408dfbf6f3ad\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","groupIds":["registry"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.2079c907-6bc4-494d-96f6-eb43792a7b4e"}],"customDnsConfigs":[],"ipVersionType":"IPv4"}}' headers: cache-control: - no-cache @@ -1483,9 +1516,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:42 GMT + - Fri, 24 Apr 2026 03:00:04 GMT etag: - - W/"f9468a26-3492-40da-bbe4-2b282ab2a182" + - W/"75ba1164-5b7f-44bd-9cee-408dfbf6f3ad" expires: - '-1' pragma: @@ -1497,13 +1530,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3c14b131-0ec9-4d47-ba57-83030bffb6f7 + - 7eda869e-552a-4fa5-a14e-54eb977b7004 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.2, etc x-msedge-ref: - - 'Ref A: CB11539F4DE041F1BA9A38C706BB283A Ref B: BN1AA2051014045 Ref C: 2026-09-12T07:24:42Z' + - 'Ref A: DD63B8EBA2DB4524B6A70F09905534CF Ref B: SG2AA1040518034 Ref C: 2026-04-24T03:00:04Z' status: code: 200 message: OK @@ -1513,7 +1544,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection list Connection: @@ -1521,21 +1552,19 @@ interactions: ParameterSetName: - -g --name --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1543,7 +1572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:42 GMT + - Fri, 24 Apr 2026 03:00:05 GMT expires: - '-1' pragma: @@ -1555,11 +1584,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/53f7cdc7-ab06-4156-be91-756f2dec8fbf + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/28e41ec9-2420-42f5-8d8c-f98bc757c329 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1EF9FD043B5142D0BF90D20004AA12B7 Ref B: BN1AA2051014049 Ref C: 2026-09-12T07:24:42Z' + - 'Ref A: DFFED08FDC8B4EA6AB6FD0668D4AF38A Ref B: SG2AA1070305042 Ref C: 2026-04-24T03:00:05Z' status: code: 200 message: OK @@ -1569,7 +1598,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection reject Connection: @@ -1577,21 +1606,19 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1599,7 +1626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:43 GMT + - Fri, 24 Apr 2026 03:00:05 GMT expires: - '-1' pragma: @@ -1611,18 +1638,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/5f79912b-c96f-4530-90dd-68d5f46eabb6 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/fb490051-8eac-4796-8da1-47f041e3ca22 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CCB6540A01F844C6ACF49FFBCFE5D180 Ref B: BN1AA2051014031 Ref C: 2026-09-12T07:24:43Z' + - 'Ref A: 1B2AA43FCB1F4717BA271B35551BE056 Ref B: SG2AA1070303042 Ref C: 2026-04-24T03:00:06Z' status: code: 200 message: OK - request: body: '{"type": "Microsoft.ContainerRegistry/registries/privateEndpointConnections", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b", - "name": "testreg000002.7345782e68ed40399dc40124a8b6a23b", "properties": {"privateEndpoint": + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566", + "name": "testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"}, "privateLinkServiceConnectionState": {"status": "Rejected", "description": "somedescription"}, "provisioningState": "Succeeded"}}' @@ -1630,7 +1657,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection reject Connection: @@ -1642,31 +1669,29 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:24:43.9089231+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:24:43.9089231+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T03:00:07.6091208+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T03:00:07.6091208+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b/operationStatuses/privateendpointconnections-fd4a90d0-40bb-4ae7-a56c-ce1986be24bd?api-version=2019-12-01-preview&t=639247946841590015&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=mwJ_l85AEJfHZdCWeouVlcP9pBRoTvPcFvTuYpu0ZVgGVy8zujKjZ7HLO7E-UJEvvm6fARaw3fXPvtlamAjNCKYbdS6hQx-_7w_-t0JaBHzXj6uz9h2QDzLEJchHqAj-881k0B8cxAcr8K9BUXSz2igLfAupjoqafVkZu0lF-raYQblNcMB8JOnZ6igKGjbuYiVIMNQk3LOI1UmvSDi4yg7qZIx_iOTV5opYN_4dlnlNLdZ8WgiDdt-dfCEA7PWI55IpLC30IxKKi_3854HZFkYh3sTnWItIWYsvUtKAkf_EJ3rdy_hsx8U7SwigRgzVXQAZVzUmexl2WLdVKAWXLg&h=nEtA0d6ORcTITwFd_n0CfzdlgvW8Q1pBcaG9fWsf5GU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566/operationStatuses/privateendpointconnections-cc28d072-f0ba-46b4-9716-f95c91be0523?api-version=2019-12-01-preview&t=639125964077653654&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=g0vVvjcD0QJjiTg7sHGz5pmctHZ-Gz4pYmRROEZecHvwwGmIcX3dBdJfEoG9zrgpNjvkY4jEWAr-vbc2LGnpPylt_ZlEu26CGpxcyDRd64wIKCpiMbnY-nq5rCkYrIqqHOCJlLYGlAfWMqVWjg322fkmazj7HCv6MjUYStT6ydwi9BYZ7eTWSKDe_XpS283OTjELzTj_MijQ8yilRP4YI7pDmzqk1bhh-01Hf2TAYS-aN0ThEYhvPIPUUwl1K5npQ3fOxdZqpS2z_nRtVg916snxMESZMFa3ba-L6is8JNja_F2wW69JExEwJ1n-suTMv8C6d0odfgHp_Qa6vQ_WKg&h=SaG9xDLqGxemSjXfhFMtpBRjzDhJHKq6epVwh3P_xwA cache-control: - no-cache content-length: - - '927' + - '873' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:43 GMT + - Fri, 24 Apr 2026 03:00:06 GMT expires: - '-1' pragma: @@ -1678,13 +1703,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/2447e62b-9260-46c2-9240-c58d01420fcd + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/b8164c1d-2b3e-4442-a24a-6514774ceb80 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 42F88B949E0842CAA837037C54215672 Ref B: BN1AA2051015051 Ref C: 2026-09-12T07:24:43Z' + - 'Ref A: 0E0D654A1EB947628AD0DEE1DABBCB6C Ref B: SG2AA1070303042 Ref C: 2026-04-24T03:00:06Z' status: code: 201 message: Created @@ -1694,7 +1719,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection reject Connection: @@ -1702,21 +1727,19 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1724,7 +1747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:54 GMT + - Fri, 24 Apr 2026 03:00:17 GMT expires: - '-1' pragma: @@ -1736,11 +1759,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/b892063b-f3b9-44e3-92c8-d9381c671dc9 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/3a5b0002-2d14-43f5-b017-459fefc740ef x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9C68F5AFFB6948BBABA79BD6B6CAF3CD Ref B: BN1AA2051015011 Ref C: 2026-09-12T07:24:54Z' + - 'Ref A: 90099DCFF45C414898B1086C572C033A Ref B: SG2AA1070306040 Ref C: 2026-04-24T03:00:17Z' status: code: 200 message: OK @@ -1750,7 +1773,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection list Connection: @@ -1758,21 +1781,19 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b","name":"testreg000002.7345782e68ed40399dc40124a8b6a23b","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","name":"testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1780,7 +1801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:24:54 GMT + - Fri, 24 Apr 2026 03:00:18 GMT expires: - '-1' pragma: @@ -1792,11 +1813,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/2c2b4471-4fd0-42ee-8cdb-edfd65836d3d + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/fe967a9f-888b-4dcc-873d-1810d64da3f9 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BABEAED7F22E456E84A323D8F2869020 Ref B: BN1AA2051013025 Ref C: 2026-09-12T07:24:54Z' + - 'Ref A: 2C38B2DC90B643E1B886D89F3CC5FD7F Ref B: SG2AA1070304040 Ref C: 2026-04-24T03:00:18Z' status: code: 200 message: OK @@ -1806,7 +1827,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection delete Connection: @@ -1816,10 +1837,9 @@ interactions: ParameterSetName: - -g --resource-name -n --type -y User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.7345782e68ed40399dc40124a8b6a23b?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.52c41c6ee2c4433f8fe4df74d0cc8566?api-version=2019-12-01-preview response: body: string: '' @@ -1829,18 +1849,17 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2026 07:24:55 GMT + - Fri, 24 Apr 2026 03:00:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-7078eddd-6a58-4eff-98b7-8ded545fc0c6?api-version=2019-12-01-preview&t=639247946952656225&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=OVERW80bxtvia8nr7yukXa6AXRAM1nx9QTJ16BcFM1GLOBVQu7E-y6yySgqih-kbPLny-i06dFo2OJx0BIMIQGnFLYjSCIbjH1_Fgd2ubCJH8MSszqGB6e6gJX3TZyk4gf86gW7rNN3lE1VADHH-8AzgqHgI1RY8A2VCCsS0Tvt7ANm-8x83EZHE1YeJBGq5VELknkvOvsWkCai4fqybhLu780X7WsXwjzkfYqQXVg1Rewr0UYZaq1EVE9hx2agf15dufuZUDLEEIwPvZWlzMIpo1qQKRA20JiC1GNeeq_HL-PDL3g_0v3iOg_55tu2Hgo0N8llMM_WFrUI8sPx8Aw&h=IYxVhZqkVo-XVBdHc1sXPy0Z1lJ8brdtDAw4Iv5YJQ8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-07b9dbff-0da8-484d-9080-a9042a8f8d62?api-version=2019-12-01-preview&t=639125964199741220&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=fKSAtjxBnaINVNhsK8g3T7sOBH83uM_Zy7SMCUoo_CCySShFQr8hGo2Np6o_wY9E0CcbLZLw0_UmAZhy8EsYT0j8ZyKM1Q3SQI60eYojzKkzf3IYOzuqmf3Gw9DNKEGBFTAalk0NBOAlhPCcWbd8EuEMbWMbZQMwhL-zqx13Dx6g6fTiC_rsrACadNx2hhg9P1nU9bR8-IXvgfMwXqnURHERgej1I3pw6GXbZLqYDq6zXH22iylWLCQ5SKrtXwAkH1D0kXjzFle6jfvseyZ9ClnBHz290uyOnxYaJfjwah_t1SPek8F-YH5vbJJGjKLrzMmF3vOLjKicsegQaM3h1A&h=NQs6_Kk2XDY98FvGpjRpyRYLt-tZsLk7pmhKE3KSeR4 pragma: - no-cache strict-transport-security: @@ -1850,13 +1869,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/e9167740-fdf2-4114-83d1-f7c1469fd324 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/dbb87948-47a1-4eb3-96be-a14cf97d6310 x-ms-ratelimit-remaining-subscription-deletes: - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: D366C8E648E340D4A04CAB2F18C6ED68 Ref B: BN1AA2051014031 Ref C: 2026-09-12T07:24:55Z' + - 'Ref A: BD8B71371D454138A89638C8ECF86074 Ref B: SG2AA1040515042 Ref C: 2026-04-24T03:00:19Z' status: code: 202 message: Accepted @@ -1866,7 +1885,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection list Connection: @@ -1874,21 +1893,19 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1896,7 +1913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:25:25 GMT + - Fri, 24 Apr 2026 03:00:49 GMT expires: - '-1' pragma: @@ -1908,11 +1925,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/9ab846ce-22e4-426c-8a31-d8fa1df40d21 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/e1d7d083-c135-4f8e-8be2-ea6f430c69b8 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CA91A74AE67245D9B74C54D6E495DE5F Ref B: BN1AA2051012029 Ref C: 2026-09-12T07:25:25Z' + - 'Ref A: 977F99ADD0474EC98BC0E067F7A232E6 Ref B: SG2AA1040512054 Ref C: 2026-04-24T03:00:50Z' status: code: 200 message: OK @@ -1922,7 +1939,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection show Connection: @@ -1930,21 +1947,19 @@ interactions: ParameterSetName: - -g --resource-name -n --type User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152","name":"testreg000002.3fa96cea7b404db893f437ac636e7152","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d","name":"testreg000002.526438cee8124264b99a084f8287f37d","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: @@ -1952,7 +1967,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:25:25 GMT + - Fri, 24 Apr 2026 03:00:51 GMT expires: - '-1' pragma: @@ -1964,11 +1979,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/562934ba-474a-4136-a4df-6c545be95b70 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/34c63735-6e8c-4beb-8252-24a04e49ced1 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9E644C3F353D4C88A63C19342575D1D3 Ref B: BN1AA2051015033 Ref C: 2026-09-12T07:25:25Z' + - 'Ref A: 8463205EAA3549069049FFA0F1CE9191 Ref B: SG2AA1040519040 Ref C: 2026-04-24T03:00:51Z' status: code: 200 message: OK @@ -1978,7 +1993,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-endpoint-connection delete Connection: @@ -1988,10 +2003,9 @@ interactions: ParameterSetName: - -g --resource-name -n --type -y User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.10 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.3fa96cea7b404db893f437ac636e7152?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.526438cee8124264b99a084f8287f37d?api-version=2019-12-01-preview response: body: string: '' @@ -2001,18 +2015,17 @@ interactions: 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2026 07:25:25 GMT + - Fri, 24 Apr 2026 03:00:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-d2c0027f-72e4-4eff-9066-f23395bf12aa?api-version=2019-12-01-preview&t=639247947264358286&c=MIIHlDCCBnygAwIBAgIQaX_ZHFEoU7sz0HCXjYKicjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMDE0NDQyOFoXDTI3MDIwNTIwNDQyOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCmo6XnCcxYgqezw6xq8wogVij_CLvm25QJIKuvv5q4kAxbnvRWLCcl7I8zNofjDg9vjFXsIe44WqLx2P9eCA17Zj-b15gMMZ7DvT3XSQVqflPvNWZYvH-Hs_q-asiKwqzed7dVRhnc7Fre4ZS1gB3kxJldJi_0SUdZMBUGdQsnPt1NHe7cjFmvLLu4V5y5h-Opl8TJZeIfOv_1HxytPNqy4Lk7qhtmSwKezW7UCZyuqB8qHXjsivolPCqJYOxJqTSWBNUlr4_Eyx1ZXkWialHRy5d1HOI0r9n12CabF1Oyr1r7e0VXz4qwPaVYuGvU2TaXVw4ah-n-1Hz6WW9yDlKZAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS8NVzR1PSHnmoESwmWF5O3nE8LuDAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xNS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQB6c1LNPLshpU-AYEyyHSPFFoMZGtO18Zuggl2ykMtDVbGFVLukymohkYRBUZi3k4zPrLI51NerUtl6W39DvHsOhUIGPauk9Ijx-WZ7nWtPvRqHwJwhEbZ_knicfLF0h_CIAxiQIan-hnwvJDUMW6N-2S072SPtC1-JqseHyMOJmIJGEuJfL-ucsnSGBMog4t3UuDwGuAnyT-OF-QEBKfG4L2qanCJSo6uqQxda08-r1CdCbhK9v5YiWu1Q97mPvShPVLIIXbXydEBjpsPCbE0xKGJB1YJjGfwG74U6pXlhrv9-sTiEsj9I9wqWv8jzycmhxlN_p24eVq6rGjq4nU0d&s=bPFInS4k8yqGG6ookcE1W9CaYbnBpZ-fEjjwteZ_AW_48OWzQslgP8sffI1ee__gvusAyhWCIewGvL4P2OlrechAJiaY7yUMBvSELFaJVO1e8igqj_KSdPC3t8PZ2fwPUumaRl1RInslqtDpoIUdG4WhqnxkoMPFfBiWCDXbDnlg_VFtMPYANkvlZitD78yjiCuMQgpc4gTQA0etd5WYarVPH4N0Y-j7zNijZWRZT6vKKWAJmx7FLNXgsJKq9__hUZMnmjCfiOMGfiYVL4UirLUL2VjMihWgh6UVKKSRlMuGArfFiIo-CnAKE5bN2f1jVS7lHNsfXr0TJ8MTrNY81w&h=ro14YqeIAjvuRZI28TNFvAYSpc2olYfTc0OPtQczi0w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/privateendpointconnections-b6687c1e-d76e-4683-b783-3bac7986a74e?api-version=2019-12-01-preview&t=639125964524901407&c=MIIHxDCCBqygAwIBAgIRAMRpkKdRWhWugxycwJTrwE0wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNjIxMTYzOVoXDTI2MTAwMjAzMTYzOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7Xc9AeQtjVzLBsmb02CAFQe0eb8_tS42dpPi7CRyNLajzokRblc2MXPl_-aAo65BzBZRSRFe29NOERHKda7m3Kdyjj9xeeKfMe4Stf-G8aGI83Q1QhKKOjYx1I1Gb7Ues4WldpcNNn9w42SV8nWE29bx_Lqq6w3oQTFQrf2mnGRegsVTNjOMIxsfPNA-t32pG4zsnkxTfs66UokpdlfI5K-V8rUw3FYytQGqD_7kidQ_4WQFXa1H7DIqv14ePhIpEloUr3uwcgwovYQylI2jnSpds866jxx8jDyWqKI_dQhtKzGePIPMcKiEZLWZSMBYf34Dxoh52SLiIKB__IpytAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSr5bqFBCOJYj3_8ROJAAzOtTntDzAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzc2L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNzYvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS83Ni9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBqPSAHbf_opPyMLbk1VzVSfRHW5DA7ieRh55DJH1hCGV-WPAw145BaFgXxNjHdle_NsF4WFxq0n2nhJtERb4q9P9OEUxUuxpO9rRZcGpDQQHn3Fexp-Fj1917PYHXC-dqfTyYqcPdZqdxij1MQkl34_Bi9sONorQc9aavBvQtI8HYjUJTY3c-55pAUVkiqF2rpz3y1MLtVXgwyAiXZw7duzgDsj6_jPvM3jlnPYMRbAX0R6qQjhwQKNwpSWU4E6teiydGvoMIjtxre0xNg2FjtoaTkOGXSQswIBr00PbgBfTIWRvvGo6yG7nOl1U8izZBVxEaHIGI6CJy9wLRFxhfL&s=EeDSth-TSo-Ld-GEQZ32HBmRdJ7uDCJDQbvEkpoKKYPvSffZ3JBHKYi_rIw3VU1j-sM10N9SNPk96vkbaI2sKO2zFWiNUwQU0oqrt-MJVBDJDpw8Rkuj9wN6DYgRDKioRsuqk7u5SIIuPv4jxIu550kWEnMkc0ap1Iu5E5ECKER1m2sP6YNtSYckxRcWcxlKsDOAdSeAT2xlKCzGJWyq0cD1ynG-OXahiU2b8jc4sCG9HXLNGHV9DBO2Nch0F_5GmJaJFj5z494FODMncuJIbK5CJbcUQT-SOgI1f-QqkvrlCaU-7ocwIIFv8zVR5b-BPMs57DRrxhumRR26QL25BQ&h=uK8UdcVFHNZftbLOGHBJkx5xKSPl8svr1v_4OoRy7Bg pragma: - no-cache strict-transport-security: @@ -2022,13 +2035,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/centralus/dce62887-fe7f-49f2-b48d-3c0b3b095e43 + - tenantId=ed94de55-1f87-4278-9651-525e7ba467d6,objectId=4c73e7a5-a580-4613-82cf-af0b98695e15/centralus/28700524-eebd-410d-86f4-b3d4301adcf9 x-ms-ratelimit-remaining-subscription-deletes: - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: DEC880E8464A4C839A498E65092FBA07 Ref B: BN1AA2051015037 Ref C: 2026-09-12T07:25:26Z' + - 'Ref A: F290795D7A4B42AD8841FDB997A461EB Ref B: SG2AA1040513029 Ref C: 2026-04-24T03:00:51Z' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml index eff3f638332..0b92f51e9fa 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -13,13 +13,12 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sa_plr000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001","name":"cli_test_sa_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_link_resource_acr","date":"2026-09-12T07:25:26Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001","name":"cli_test_sa_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_link_resource_acr","date":"2025-05-16T04:49:04Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:25:29 GMT + - Fri, 16 May 2025 04:49:08 GMT expires: - '-1' pragma: @@ -42,47 +41,48 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C0A75E93710B4771B1C1C0EBE6E0F3D7 Ref B: BN1AA2051015031 Ref C: 2026-09-12T07:25:29Z' + - 'Ref A: EE9A6FDB160B4EA7A9B2909A01C784F6 Ref B: TYO201151005036 Ref C: 2025-05-16T04:49:08Z' status: code: 200 message: OK - request: body: '{"location": "westus", "sku": {"name": "Premium"}, "properties": {"adminUserEnabled": - false}}' + false, "anonymousPullEnabled": false}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: - keep-alive Content-Length: - - '93' + - '124' Content-Type: - application/json ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-12T07:25:30.3215242+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-12T07:25:30.3215242+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-09-12T07:25:30.3215242Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-12T07:25:37.3830474+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-12T07:25:37.3830804+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T04:49:10.6391991+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T04:49:10.6391991+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T04:49:10.6391991Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T04:49:18.2384796+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T04:49:18.2385379+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2025-03-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI cache-control: - no-cache content-length: - - '1784' + - '1543' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:25:37 GMT + - Fri, 16 May 2025 04:49:18 GMT expires: - '-1' pragma: @@ -94,13 +94,165 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/c81321ee-9744-4372-ac35-d80b871c4991 + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/09f256b8-4487-4740-a477-3b95c85b7a80 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 991AF1400F204BB78455884713D478A2 Ref B: BN1AA2051015051 Ref C: 2026-09-12T07:25:29Z' + - 'Ref A: DFE1581ADF9A4A70BBEBBA3F79225B66 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:09Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI + response: + body: + string: '{"status":"Creating"}' + headers: + api-supported-versions: + - 2025-03-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677596144404&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=GP9gCW6zVMnIlV7K0aiubvjSgRphj7iHNfyoCsis1_sPQgApnNKpm-7BwgBkgHMQoAxBOjD5nxDnBoDbbhoNm7bVTUNtu3RtGJ8UHE5NWK1LjJpnqJENyuBn8RF9FRJTM0oWp9Nyck0vyj82EBK5BWKOveYVpfI0kigUA2_H3AXzFO-2lfB9YQsGAbsl4N7Z6_c6YRG1XQHmBbD0uKUzNs0W3TjLY6O2JikcgyChnrnWDbt4CvhHNcvIV0_rMBzVwnsOLsgR071V1zmIjG7lM4XnUQHFqg_MpGoNtj7nk39Qg-iv_hMzUH7Pmos5DoMOrxv2zWbqaKJ3deOfxVDMjA&h=W1vW_RmncebmhD7HoBid0gJT5IBrfuC2O4ZEyy5JEq0 + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 May 2025 04:49:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/8cebbfb5-4811-4744-82ff-291bc57f66df + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' + x-msedge-ref: + - 'Ref A: 456035E97B434EC5A393C065144ED791 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2025-03-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677710099664&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=SN_xadJ8s4N-x00DmcIyx5m_80tvpBr_bsjoeqCiZZ12g2Ziz0FVT0FJB9tou_Q8oD_Vhkyv7kJjmR0IHePPmtkB0-954e98NJB0C3vVg2h-yoVWBed89NZziH5rp8E-JjSanKMRo9CGKLC2l8BuTbNkbb_oQmfsV2b4MOXTKopV8gVF33UUrLkZUHggXU6Sar-jtn_u5vT2l7S_Qy34Up6zLc2e-7tzlYxXyuK9BoccMq_2bLLzeEFhevpeBD7PM5wc3S-9mFwkkfv9KCwMtnSQrbsOBokgZHEZIwYo3oVkLDOJaD2rD3EE4pMTZl6XO4JjLEcuHUP1Eiue38fjCQ&h=bqBFIb2jy_eE88_7PwX7HP1JuLx5NzSt6n5lGBGuPHE + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 May 2025 04:49:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japaneast/ab6fc804-a69b-4974-9d76-ebcba964a2e3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 738B91F3D2404E3F828DF08B71AF0A65 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + response: + body: + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T04:49:10.6391991+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T04:49:10.6391991+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T04:49:10.6391991Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T04:49:18.2384796+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T04:49:18.2385379+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + headers: + api-supported-versions: + - 2025-03-01-preview + cache-control: + - no-cache + content-length: + - '1544' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 May 2025 04:49:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' + x-msedge-ref: + - 'Ref A: 37F9B397B81047289FA16CAE3269CB38 Ref B: TYO201100117051 Ref C: 2025-05-16T04:49:31Z' status: code: 200 message: OK @@ -110,7 +262,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network private-link-resource list Connection: @@ -118,8 +270,7 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.72.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateLinkResources?api-version=2019-12-01-preview response: @@ -135,7 +286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2026 07:25:38 GMT + - Fri, 16 May 2025 04:49:33 GMT expires: - '-1' pragma: @@ -147,11 +298,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/bf0e0bd9-ba7e-47b1-8e46-a428473b39ae + - tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=d44a2991-98c6-47c3-b59b-2b30d72cfcc2/japanwest/ae74a964-7cff-49de-8e27-c647e33c60f7 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6056E163CB054A298B8B61B97034E156 Ref B: BN1AA2051012017 Ref C: 2026-09-12T07:25:38Z' + - 'Ref A: A755EB0B4F7143E5A8DBE80EEDCFABC7 Ref B: TYO201100113047 Ref C: 2025-05-16T04:49:32Z' status: code: 200 message: OK From 4b6544e63c8f4a81ebf47d13adfd29fd76d5ec49 Mon Sep 17 00:00:00 2001 From: Azure CLI Team Date: Mon, 14 Sep 2026 23:57:03 +0000 Subject: [PATCH 12/19] Rerun tests from instance 7. See test_results_None_latest_7.parallel.xml for details --- .../latest/recordings/test_container_acr.yaml | 2201 +- .../test_container_acr_env_var.yaml | 10007 ++++--- ...erapp_manualjob_private_registry_port.yaml | 2973 +- ...ljob_registry_acr_look_up_credentical.yaml | 2890 +- ...st_containerapp_private_registry_port.yaml | 22820 ++++++++++++++-- .../test_containerappjob_registry_crud.yaml | 6363 +++-- .../recordings/test_tag_update_by_patch.yaml | 10415 +++---- 7 files changed, 39555 insertions(+), 18114 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml index 661c5b8d49a..ec69f514206 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -13,313 +13,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:12 GMT + - Mon, 14 Sep 2026 23:51:53 GMT expires: - '-1' pragma: @@ -331,9 +407,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: DEB706BE95EF40B7A15EC0CAFE34A074 Ref B: BY1AA1072318054 Ref C: 2026-03-24T04:51:13Z' + - 'Ref A: 0F5F1ADFD2474D83A31AD18BF8799BA3 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:51:54Z' status: code: 200 message: OK @@ -343,7 +419,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -351,27 +427,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '1779' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:13 GMT + - Mon, 14 Sep 2026 23:51:54 GMT expires: - '-1' pragma: @@ -385,9 +462,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 7B3AEB6CD6AF455B9E01BA8DA9EF8954 Ref B: SJC211051203045 Ref C: 2026-03-24T04:51:13Z' + - 'Ref A: AA0122918B9E438B8EB9FE2EDEC7184B Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:51:54Z' x-powered-by: - ASP.NET status: @@ -400,7 +477,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -412,23 +489,24 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:51:55.5200894+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:51:55.5200894+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-14T23:51:55.5200894Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:02.3983774+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:02.3984096+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1622' + - '1708' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:21 GMT + - Mon, 14 Sep 2026 23:52:02 GMT expires: - '-1' pragma: @@ -440,13 +518,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/7bcba73f-eb17-4fbd-a79e-46537cefb9ef + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/dc40d5e1-eed9-4885-9cb6-1978fdda794f x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '199' x-msedge-ref: - - 'Ref A: A57B3BDF7F804690BBC72E1B7D8772EF Ref B: BY1AA1072318040 Ref C: 2026-03-24T04:51:14Z' + - 'Ref A: F4E0E9CB4B504554B3D6B7738231BF90 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:51:55Z' status: code: 200 message: OK @@ -456,7 +534,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -464,23 +542,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:51:55.5200894+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:51:55.5200894+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-14T23:51:55.5200894Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:02.3983774+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:02.3984096+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1622' + - '1708' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:21 GMT + - Mon, 14 Sep 2026 23:52:02 GMT expires: - '-1' pragma: @@ -492,9 +571,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 03EB10E81F3E48419EB661B93C714EC2 Ref B: BY1AA1072317031 Ref C: 2026-03-24T04:51:22Z' + - 'Ref A: 2F6A0C2E07754D8286DD6F137922D02A Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:52:02Z' status: code: 200 message: OK @@ -504,7 +583,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -514,15 +593,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"3DeLPP7Qo6EapOhHvgQi6KMMnmQUWqV2lVV6RLin05jp8fm9t6yKJQQJ99CIACYeBjFEqg7NAAACAZCRYVKI"},{"name":"password2","value":"76eJTWg7alhWScWr6beSr1RJTzRllsZeG6FcxR9EWaJpxWrqYCnIJQQJ99CIACYeBjFEqg7NAAACAZCR4NcD"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -530,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:22 GMT + - Mon, 14 Sep 2026 23:52:02 GMT expires: - '-1' pragma: @@ -542,13 +622,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/17096a55-4895-4b47-9203-d5d5e79bb569 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9a203feb-b681-49fd-8617-60bc696b6836 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 8CAF524FCC7F489786E497DD16038F5A Ref B: BY1AA1072319040 Ref C: 2026-03-24T04:51:22Z' + - 'Ref A: 2DA2F4938F2B42E6B03358DBECD342E0 Ref B: BN1AA2051014031 Ref C: 2026-09-14T23:52:02Z' status: code: 200 message: OK @@ -558,7 +638,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -566,316 +646,392 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '39103' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 04:51:22 GMT - expires: - - '-1' - pragma: + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:52:02 GMT + expires: + - '-1' + pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains @@ -884,9 +1040,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 7DC2A10262794C9396DE8036F9D7A4FF Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:23Z' + - 'Ref A: C96591D72F66453EA48907BDFB8DEEC6 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:52:03Z' status: code: 200 message: OK @@ -896,7 +1052,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -904,27 +1060,28 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '1779' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:23 GMT + - Mon, 14 Sep 2026 23:52:03 GMT expires: - '-1' pragma: @@ -938,9 +1095,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 2AB000AE9B184301A93A1A86641A87FB Ref B: SJC211051204039 Ref C: 2026-03-24T04:51:23Z' + - 'Ref A: D70F504A02BE42F0B7DFCC8E67D6E236 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:52:03Z' x-powered-by: - ASP.NET status: @@ -952,7 +1109,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -960,313 +1117,389 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:23 GMT + - Mon, 14 Sep 2026 23:52:03 GMT expires: - '-1' pragma: @@ -1278,9 +1511,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C3C8CE0D4223415E83C24F54CC82DFE3 Ref B: BY1AA1072317025 Ref C: 2026-03-24T04:51:23Z' + - 'Ref A: 290758E3459149228A7AB8984DD39041 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:52:04Z' status: code: 200 message: OK @@ -1288,7 +1521,7 @@ interactions: body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "***"}], + "value": "3DeLPP7Qo6EapOhHvgQi6KMMnmQUWqV2lVV6RLin05jp8fm9t6yKJQQJ99CIACYeBjFEqg7NAAACAZCRYVKI"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}]}, "template": @@ -1301,7 +1534,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1313,29 +1546,30 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:04.8268372Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:04.8268372Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw cache-control: - no-cache content-length: - - '4101' + - '6911' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:24 GMT + - Mon, 14 Sep 2026 23:52:04 GMT expires: - '-1' pragma: @@ -1349,11 +1583,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/9ab4c0af-91b8-4a54-99bb-ebe133c8638c + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/45becb6d-33ce-4049-a867-d2d13be11ccb x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 644D80A1A74840A2B07FCCE93306269A Ref B: BY1AA1072317040 Ref C: 2026-03-24T04:51:24Z' + - 'Ref A: AD21773DE3D34204932041FFF054543E Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:52:04Z' x-powered-by: - ASP.NET status: @@ -1365,7 +1599,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1373,18 +1607,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1392,7 +1627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:24 GMT + - Mon, 14 Sep 2026 23:52:05 GMT expires: - '-1' pragma: @@ -1406,11 +1641,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9d04871a-e50a-458d-a954-236c5d2cd223 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b37fd092-5afb-424b-b370-029ba9e9f069 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 110420A4F9504E7AA2348355E0730D37 Ref B: BY1AA1072315054 Ref C: 2026-03-24T04:51:24Z' + - 'Ref A: EAC647A045A0450F9BC2B44140E0EEBE Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:52:05Z' x-powered-by: - ASP.NET status: @@ -1422,7 +1657,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1430,18 +1665,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1449,7 +1685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:27 GMT + - Mon, 14 Sep 2026 23:52:07 GMT expires: - '-1' pragma: @@ -1463,11 +1699,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/17779ed2-2d04-47cd-baae-cc3dd00d2951 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0e216a34-af26-4f56-a5df-cfaa9d6412e4 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 508CA5FF4376425483768453E84749A3 Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:27Z' + - 'Ref A: 2091AC52584640088DFC1CC551E1CA75 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:52:07Z' x-powered-by: - ASP.NET status: @@ -1479,7 +1715,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1487,18 +1723,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1506,7 +1743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:30 GMT + - Mon, 14 Sep 2026 23:52:10 GMT expires: - '-1' pragma: @@ -1520,11 +1757,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4aea88da-ad7a-475d-8f45-1b9b5409eb60 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/6045fd4d-23b9-4c75-8883-aeaf01176d7a x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8A75FC56D25E42C2AAA8FA94EE73BB13 Ref B: SJC211051201009 Ref C: 2026-03-24T04:51:30Z' + - 'Ref A: C378ADF9C3AA475C8C9110809612F8C4 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:52:10Z' x-powered-by: - ASP.NET status: @@ -1536,7 +1773,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1544,18 +1781,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1563,7 +1801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:32 GMT + - Mon, 14 Sep 2026 23:52:13 GMT expires: - '-1' pragma: @@ -1577,11 +1815,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7a793285-3a60-489d-9844-d5dd666e4604 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a770d47d-8949-4ab8-a9e9-1765f44993eb x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 96DC966BF7D045E79F6CD129E0DD2E27 Ref B: BY1AA1072320060 Ref C: 2026-03-24T04:51:32Z' + - 'Ref A: 7186E45357E544F18A8E9F951469F572 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:52:12Z' x-powered-by: - ASP.NET status: @@ -1593,7 +1831,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1601,18 +1839,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1620,7 +1859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:35 GMT + - Mon, 14 Sep 2026 23:52:14 GMT expires: - '-1' pragma: @@ -1634,11 +1873,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d7bb09ce-e7e6-4338-bcad-2cdbb82cebeb + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/15057184-2e7e-4238-8032-d21f98434829 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 849F59C2FA57440E8AD40478E3C992FC Ref B: SJC211051201047 Ref C: 2026-03-24T04:51:35Z' + - 'Ref A: 0113C70B2CA24EC39B00F42F735B2297 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:52:15Z' x-powered-by: - ASP.NET status: @@ -1650,7 +1889,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1658,18 +1897,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"Succeeded","startTime":"2026-03-24T04:51:24.4460644"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"Succeeded","startTime":"2026-09-14T23:52:04.8762702"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1677,7 +1917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:37 GMT + - Mon, 14 Sep 2026 23:52:17 GMT expires: - '-1' pragma: @@ -1691,11 +1931,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6cb4d0b3-b530-4cce-94dc-802456f9e503 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1315db35-c574-4ad0-9457-8a11af5b99db x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 6551EFFD1C284D70AF67504A2CB9E086 Ref B: SJC211051203053 Ref C: 2026-03-24T04:51:37Z' + - 'Ref A: DD1EE6DD5FF141E4AC0A2AE14B5BBC6E Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:52:17Z' x-powered-by: - ASP.NET status: @@ -1707,7 +1947,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1715,27 +1955,28 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000005--p4wv4sk","latestReadyRevisionName":"containerapp-e2e000005--p4wv4sk","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:04.8268372","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:04.8268372"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000005--b821oy9","latestReadyRevisionName":"containerapp-e2e000005--b821oy9","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4621' + - '7431' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 04:51:38 GMT + - Mon, 14 Sep 2026 23:52:17 GMT expires: - '-1' pragma: @@ -1749,9 +1990,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9D678719740D452999571AFF4367604F Ref B: BY1AA1072319029 Ref C: 2026-03-24T04:51:38Z' + - 'Ref A: E2DFA49D52E0484D811D4C78A2402CCE Ref B: BN1AA2051012017 Ref C: 2026-09-14T23:52:18Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml index f2d2df16cba..1259b6c45f8 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -13,313 +13,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:11 GMT + - Mon, 14 Sep 2026 23:52:52 GMT expires: - '-1' pragma: @@ -331,9 +407,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F85FCD0C47AD43578E0CE37D5CD1DFA6 Ref B: BY1AA1072318025 Ref C: 2026-03-24T05:55:12Z' + - 'Ref A: 9DA4EA416DCB4EB498CC78FE05B27A6A Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:52:52Z' status: code: 200 message: OK @@ -343,7 +419,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -351,27 +427,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '1779' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:12 GMT + - Mon, 14 Sep 2026 23:52:52 GMT expires: - '-1' pragma: @@ -385,9 +462,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 887910DE91FA49C6B3F4D73E1706ED4E Ref B: BY1AA1072319036 Ref C: 2026-03-24T05:55:12Z' + - 'Ref A: C71FE0C0C8D74CCD99B9267B5D2BD26A Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:52:52Z' x-powered-by: - ASP.NET status: @@ -400,7 +477,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -412,23 +489,24 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-14T23:52:53.6903628Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133661+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1619' + - '1708' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:21 GMT + - Mon, 14 Sep 2026 23:52:54 GMT expires: - '-1' pragma: @@ -440,13 +518,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/310d4c57-8d43-45cc-a111-38d58da250a8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4ff4f41e-536b-4d76-904f-385f98fe5a9c x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '199' x-msedge-ref: - - 'Ref A: 8A63F46DEF9341B2A84341B74D6705A3 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:55:13Z' + - 'Ref A: 15E77EC3099C44958347B51F2BAF499F Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:52:53Z' status: code: 200 message: OK @@ -456,7 +534,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -464,23 +542,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-14T23:52:53.6903628Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133661+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1619' + - '1708' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:22 GMT + - Mon, 14 Sep 2026 23:52:55 GMT expires: - '-1' pragma: @@ -492,9 +571,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 148900C360A5448FB4F31B1A9F3C7505 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:55:22Z' + - 'Ref A: 29990EFB2F184F34A115C1D86E5EBBDD Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:52:55Z' status: code: 200 message: OK @@ -504,7 +583,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -514,15 +593,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"},{"name":"password2","value":"44MlXQs2y9DxN27LnOgrGEDRuFzuDk52DePhmpAeAZ0sJSF1f4E4JQQJ99CIACYeBjFEqg7NAAACAZCRloSI"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -530,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:22 GMT + - Mon, 14 Sep 2026 23:52:55 GMT expires: - '-1' pragma: @@ -542,13 +622,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/cd571352-9681-4da7-a353-ed79d31b3dd2 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4074f991-ef3f-49e8-9320-b35c7483f337 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: F7BE3154E03F48118223DA69FF5F85D1 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:22Z' + - 'Ref A: 8CDC255369FB41038CC423B2E07EB206 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:52:56Z' status: code: 200 message: OK @@ -558,7 +638,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -566,707 +646,389 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '39885' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:55:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 03CA59EFEBA84E46B942C528E2177387 Ref B: SJC211051201039 Ref C: 2026-03-24T05:55:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '1726' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:55:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 543995D6B84544589AA3C8E3B1FBD029 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:55:23Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --environment --registry-username --registry-server --registry-password - User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:23 GMT + - Mon, 14 Sep 2026 23:52:56 GMT expires: - '-1' pragma: @@ -1278,94 +1040,76 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 784676E3AC39442792976D285A6FCEC6 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:23Z' + - 'Ref A: 3D026A2FF73C41A783BCA80395CE1C2F Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:52:56Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", - "value": "***"}], - "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": - [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", - "passwordSecretRef": "containerapp000002azurecrio-containerapp000002"}]}, "template": - {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/k8se/quickstart:latest", - "name": "containerapp-e2e000003", "command": null, "args": null, "env": null, - "resources": null, "volumeMounts": null}], "initContainers": null, "scale": - null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, - "tags": null}' + body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: - keep-alive - Content-Length: - - '1032' - Content-Type: - - application/json ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4099' + - '1779' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:24 GMT + - Mon, 14 Sep 2026 23:52:56 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/afab1123-b379-4e37-903c-7226dae20243 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: B041C54A3B1E4872B6D191B5F8EA7586 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:55:23Z' + - 'Ref A: 1512215F4D8D4BF7B779E0FAAF7D147C Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:52:56Z' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1373,56 +1117,489 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' - headers: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:52:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A41E3AEE99934E348FB22A1C32596D82 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:52:57Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", + "value": "D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"}], + "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": + [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", + "passwordSecretRef": "containerapp000002azurecrio-containerapp000002"}]}, "template": + {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/k8se/quickstart:latest", + "name": "containerapp-e2e000003", "command": null, "args": null, "env": null, + "resources": null, "volumeMounts": null}], "initContainers": null, "scale": + null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, + "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1032' + Content-Type: + - application/json + ParameterSetName: + - -g -n --environment --registry-username --registry-server --registry-password + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:57.7090432Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU cache-control: - no-cache content-length: - - '278' + - '6911' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:24 GMT + - Mon, 14 Sep 2026 23:52:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8befd579-9809-491e-9229-f3954f734f20 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c6b1e2bd-f333-47c4-abb6-b18008028aaf + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' x-msedge-ref: - - 'Ref A: 3BE01733670748C0BD9922549B4E1E84 Ref B: SJC211051205039 Ref C: 2026-03-24T05:55:24Z' + - 'Ref A: 39DCF84A82A742FCAB02EA71099F23CD Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:52:57Z' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1430,18 +1607,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1449,7 +1627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:26 GMT + - Mon, 14 Sep 2026 23:52:57 GMT expires: - '-1' pragma: @@ -1463,11 +1641,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/73aa0456-62d4-49bd-a16a-f32bc93fd2aa + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6f3958e5-b608-432e-9101-abfb51f11b44 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8968CDB2E8EB413B81AA7329038A1739 Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:55:27Z' + - 'Ref A: 801F990458444B12823EB782ABEA24DE Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:52:58Z' x-powered-by: - ASP.NET status: @@ -1479,7 +1657,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1487,18 +1665,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1506,7 +1685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:29 GMT + - Mon, 14 Sep 2026 23:53:00 GMT expires: - '-1' pragma: @@ -1520,11 +1699,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f384d921-10e9-4df0-a929-fc688daa9456 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e9944899-e179-45d2-b599-90cc4ed8dc74 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C3551CBBFA5C4A05BB45343A562E5489 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:29Z' + - 'Ref A: 400BDF0C48F24F03ACE6119385CD3ECE Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:53:00Z' x-powered-by: - ASP.NET status: @@ -1536,7 +1715,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1544,18 +1723,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1563,7 +1743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:31 GMT + - Mon, 14 Sep 2026 23:53:02 GMT expires: - '-1' pragma: @@ -1577,11 +1757,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/14f0815b-8720-40ef-a73b-4f70b164a8ba + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/316de36e-2f28-4286-a50b-6c90154f1278 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: BAD809E0866B4C13AE593E0F1749D04C Ref B: BY1AA1072319062 Ref C: 2026-03-24T05:55:31Z' + - 'Ref A: CD1AADBEF58C4C86A974F357CAEC7612 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:53:03Z' x-powered-by: - ASP.NET status: @@ -1593,7 +1773,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1601,18 +1781,19 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1620,7 +1801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:34 GMT + - Mon, 14 Sep 2026 23:53:05 GMT expires: - '-1' pragma: @@ -1634,11 +1815,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/753fa0f1-1e55-4bff-8bf0-e908ca4d8116 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/78985f5f-6d6a-4a27-8d70-5b56f96d8a62 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 802DF80DE3A94F4D95876FA067045321 Ref B: SJC211051203027 Ref C: 2026-03-24T05:55:34Z' + - 'Ref A: F5C195BF139449EBA4E7FC30F25338F6 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:53:05Z' x-powered-by: - ASP.NET status: @@ -1650,7 +1831,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1658,26 +1839,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"Succeeded","startTime":"2026-03-24T05:55:24.2097378"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:36 GMT + - Mon, 14 Sep 2026 23:53:07 GMT expires: - '-1' pragma: @@ -1691,11 +1873,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/c798deaa-2d86-4123-81dc-da246a186722 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9f09cc09-f91c-4ebc-8cbd-5521a3fea773 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 53F3ED521F9A48FF878F2740B6BE4B30 Ref B: SJC211051204007 Ref C: 2026-03-24T05:55:37Z' + - 'Ref A: 8F0336E750A24ECCB85F16901233C083 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:53:08Z' x-powered-by: - ASP.NET status: @@ -1707,7 +1889,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1715,27 +1897,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"Succeeded","startTime":"2026-09-14T23:52:57.7792521"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4619' + - '277' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:36 GMT + - Mon, 14 Sep 2026 23:53:10 GMT expires: - '-1' pragma: @@ -1748,10 +1930,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8063bf9c-a8ce-42a5-8220-1bf624a1ceda x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: E11E818D845445E385872F2CEC0F7D28 Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:55:37Z' + - 'Ref A: 1B0B5D0678AD42889CC7CDC251510DE0 Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:53:10Z' x-powered-by: - ASP.NET status: @@ -1761,337 +1945,56 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - - containerapp update + - containerapp create Connection: - keep-alive ParameterSetName: - - -g -n --min-replicas --max-replicas --set-env-vars + - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:57.7090432"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--y4kedib","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '39103' + - '7431' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:37 GMT + - Mon, 14 Sep 2026 23:53:10 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F6F8C1723EEB4C4F89BA3CFEA8F9CAA3 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:55:37Z' + - 'Ref A: 0278BAE973744D49853783CF152DEFEC Ref B: BN1AA2051013031 Ref C: 2026-09-14T23:53:10Z' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -2101,7 +2004,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2109,313 +2012,389 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:38 GMT + - Mon, 14 Sep 2026 23:53:11 GMT expires: - '-1' pragma: @@ -2427,9 +2406,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C221207E5F6C43BB932BCDC8EE955207 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:55:38Z' + - 'Ref A: F0E42CD66AB64737897946430F745859 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:53:11Z' status: code: 200 message: OK @@ -2437,9 +2416,9 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2447,50 +2426,465 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '4619' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:55:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 5876958253C04DE187693AAFC2986E76 Ref B: SJC211051201017 Ref C: 2026-03-24T05:55:38Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"template": {"containers": [{"image": "mcr.microsoft.com/k8se/quickstart:latest", + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:53:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 662EEA1DE2DD46A1B1EE2A5243A7B4C3 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:53:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --min-replicas --max-replicas --set-env-vars + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:57.7090432"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--y4kedib","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '7431' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:53:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5E67B98C676048A8A70730916C4033B7 Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:53:11Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"containers": [{"image": "mcr.microsoft.com/k8se/quickstart:latest", "name": "containerapp-e2e000003", "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage": "2Gi"}, "env": [{"name": "testenv", "value": "testing"}]}], "scale": {"minReplicas": 1, "maxReplicas": 1}, "revisionSuffix": null}}}' @@ -2498,7 +2892,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2510,7 +2904,8 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -2521,19 +2916,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:55:39 GMT + - Mon, 14 Sep 2026 23:53:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=OiX-ev0V-zoCue3svj0ssGPepKn9Gt9GNxDMsVGR0GuwzZXOn_ADMUHruls2YutFR59GyxuiTSybVF5zV13cXZghECiPGMt7L1CuWvJ6eVNUAIPtiMUF09Np7r90mVRbxiOhQGpCNWwf22BhRaIMCJ_oyLtt6LR8qbH4w2GFZ5-VM-4zMT6nXmoHaGuQtzrew27vCbv-X6fMiuJIT0zFAGPrktgTCj7axOKoJBASmXL4dzy2_KOtd4W6syfGx86c74AYXzQGw9w84oH7Z_E8u9eoZ5dTqXE3ygLdDD4YcwI73VvURo4SB4SuqFR8ljg-EdZ3-vO8FsZjIOhLAd9cnA&h=C5jpKW3JuJlz-0knFsza4SLcG6_eaPp1dBuPoWqH3GA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&t=639250267924798798&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=D6BCVlTuBXWIHQXwD-AUeA5J-qiH5ImauhSZNYek8lkjnAOmQz6703A0Cqr-SwCQ7Vs-PMICjIpmDooP7jhIYDm1QUdzKVWgP-KWQulzl6AM_MuM5wG-uSaklYoUsrnSyrPZfHxeaQV6v5tR4TFb0iTJo02_FDIqQV7Qz6_mIeJTh0Q_eMwI1FACRhxGw1czV1l07R3Qbee4huS8Fifcd7YjXF7cFx-JI12o_3psV2xcUG9pmgbQU0931cGGG1vc2dBL3gj7IRVuZCAy54pM1I1259EhWRfWqU7PEm7hXRY00S6yF-8nwEpOf2Xyj3QUEbmfpKS9qhkBH7KeNhavhA&h=Q02IaUmVIMJg__IolurlFyWXGarXF76P9_RgmW2dcns pragma: - no-cache strict-transport-security: @@ -2543,11 +2938,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/b7e74ace-331e-42a9-90ef-40d8c2876c5d + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/459d6aad-66fb-473f-9654-874c59a63f74 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 5C876BD65A8C4050A3694E8B6D662EC1 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:55:39Z' + - 'Ref A: 152A701DD8184FEFB7B5AE17F00BB271 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:53:12Z' x-powered-by: - ASP.NET status: @@ -2559,7 +2954,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2567,18 +2962,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2586,7 +2982,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:39 GMT + - Mon, 14 Sep 2026 23:53:12 GMT expires: - '-1' pragma: @@ -2600,11 +2996,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/091a44c2-aa37-45f4-a818-47b78080a7cc + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a15be2f8-b9f7-4373-a882-041f06925a6e x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 97AC88E040434658A1E9E7E9B28BD62D Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:39Z' + - 'Ref A: C96D6F0B0E0948F6B3B9225A63CA78DB Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:53:12Z' x-powered-by: - ASP.NET status: @@ -2616,7 +3012,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2624,18 +3020,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2643,7 +3040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:42 GMT + - Mon, 14 Sep 2026 23:53:14 GMT expires: - '-1' pragma: @@ -2657,11 +3054,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/be56815f-12f6-4c47-b788-5c3be718ca96 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d51fe909-1dcc-4ed7-8522-46b31f5b1365 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: B9CE90C233884E97915A06945841E788 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:42Z' + - 'Ref A: AC236444D1434BB68D2F429030074C6C Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:53:15Z' x-powered-by: - ASP.NET status: @@ -2673,7 +3070,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2681,18 +3078,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2700,7 +3098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:44 GMT + - Mon, 14 Sep 2026 23:53:17 GMT expires: - '-1' pragma: @@ -2714,11 +3112,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8516f274-e462-40e8-9f5c-1633497725dd + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/67516af0-b9e3-4780-be68-43c1681abc02 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 389BD75BCF074D03B3FBD348A05D88C8 Ref B: SJC211051204033 Ref C: 2026-03-24T05:55:44Z' + - 'Ref A: BEE74D1BF3E640BEBDD8BFAF4DBF8B0B Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:53:17Z' x-powered-by: - ASP.NET status: @@ -2730,7 +3128,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2738,18 +3136,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2757,7 +3156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:47 GMT + - Mon, 14 Sep 2026 23:53:19 GMT expires: - '-1' pragma: @@ -2771,11 +3170,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/5af52663-9944-407d-a85a-48180b7167e4 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5869b54a-1900-4348-aeb5-cc97de302b60 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 51647A54749044CE98DEC234813E878B Ref B: SJC211051204045 Ref C: 2026-03-24T05:55:47Z' + - 'Ref A: A7140A0EA24849AEB2DAFB6B58C6DB6D Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:53:20Z' x-powered-by: - ASP.NET status: @@ -2787,7 +3186,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2795,18 +3194,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2814,7 +3214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:49 GMT + - Mon, 14 Sep 2026 23:53:22 GMT expires: - '-1' pragma: @@ -2828,11 +3228,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/945a3cc0-063e-426f-9977-0b5184dd44a0 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/57d85881-c603-4697-a3e6-1bbb395f7ed4 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 1C3A14844F564B38B6989EEB1C2307B7 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:55:49Z' + - 'Ref A: DA3645FBA1C9476CB781B88F19548DE1 Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:53:22Z' x-powered-by: - ASP.NET status: @@ -2844,7 +3244,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2852,18 +3252,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"Succeeded","startTime":"2026-03-24T05:55:39.6255863"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"Succeeded","startTime":"2026-09-14T23:53:12.4535733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2871,7 +3272,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Mon, 14 Sep 2026 23:53:25 GMT expires: - '-1' pragma: @@ -2885,11 +3286,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/db8d0720-dd43-46b8-8869-6af35ab63048 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0ef8c446-09b0-4a2b-9c91-ae6316060edc x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 36C6A752F297453A9C190DEA0B27E18F Ref B: SJC211051201023 Ref C: 2026-03-24T05:55:52Z' + - 'Ref A: DB3D9EE95883459DB12D95E2500E5AAF Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:53:25Z' x-powered-by: - ASP.NET status: @@ -2901,7 +3302,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -2909,27 +3310,28 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:12.3236266"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4661' + - '7472' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Mon, 14 Sep 2026 23:53:25 GMT expires: - '-1' pragma: @@ -2943,9 +3345,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: DDD8789F90D94B9E8E61447B9497312E Ref B: BY1AA1072320062 Ref C: 2026-03-24T05:55:52Z' + - 'Ref A: C9F4A67876324678A27DECC71F63FDE3 Ref B: BN1AA2051014023 Ref C: 2026-09-14T23:53:25Z' x-powered-by: - ASP.NET status: @@ -2957,7 +3359,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret list Connection: @@ -2965,313 +3367,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Mon, 14 Sep 2026 23:53:25 GMT expires: - '-1' pragma: @@ -3283,9 +3761,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3868DD2BCC6C447389CF8E197A0F6DC0 Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:53Z' + - 'Ref A: 92D9902F9EC34AB2BCEC7EB522717575 Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:53:25Z' status: code: 200 message: OK @@ -3295,7 +3773,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret list Connection: @@ -3303,27 +3781,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:12.3236266"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4661' + - '7472' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:52 GMT + - Mon, 14 Sep 2026 23:53:26 GMT expires: - '-1' pragma: @@ -3337,9 +3816,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F1C13AB984D342E08FACC489B275FF76 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:55:53Z' + - 'Ref A: 0CD2D573731248F58670142066309ED6 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:53:26Z' x-powered-by: - ASP.NET status: @@ -3351,7 +3830,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -3359,337 +3838,413 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '39885' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 24 Mar 2026 05:55:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 466A474B38C147C5B4566EE3C0618A11 Ref B: SJC211051205049 Ref C: 2026-03-24T05:55:53Z' - status: - code: 200 - message: OK -- request: + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:53:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B52F9DABB16B474586F6A24F98D2C0B2 Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:53:26Z' + status: + code: 200 + message: OK +- request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -3697,27 +4252,28 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:12.3236266"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4661' + - '7472' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:53 GMT + - Mon, 14 Sep 2026 23:53:26 GMT expires: - '-1' pragma: @@ -3731,9 +4287,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A7AE8C5C3C4B4421B89661404B4BEF7E Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:55:53Z' + - 'Ref A: D161B5E2CEBB4CEE8E7761894A84549B Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:53:26Z' x-powered-by: - ASP.NET status: @@ -3745,7 +4301,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -3755,18 +4311,19 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3774,7 +4331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:55 GMT + - Mon, 14 Sep 2026 23:53:27 GMT expires: - '-1' pragma: @@ -3788,13 +4345,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/11b564e7-976e-4d50-852d-430d807a6526 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/174cda14-708c-4824-b308-253b5f5bce10 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 8EE9D307D17F46D1B803C4838B4D1330 Ref B: SJC211051204047 Ref C: 2026-03-24T05:55:54Z' + - 'Ref A: 809ABD3FF1254ADD9E3860F2E74F13D5 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:53:27Z' x-powered-by: - ASP.NET status: @@ -3803,11 +4360,12 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "East US", "systemData": {"createdBy": "test@example.com", "createdByType": - "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", - "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:39.3791927"}, - "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", - "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "East US", "systemData": {"createdBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", + "createdByType": "Application", "createdAt": "2026-09-14T23:52:57.7090432", + "lastModifiedBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", "lastModifiedByType": + "Application", "lastModifiedAt": "2026-09-14T23:53:12.3236266"}, "properties": + {"provisioningState": "Succeeded", "runningStatus": "Running", "managedEnvironmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", @@ -3821,30 +4379,64 @@ interactions: "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", - "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", - "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", - "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", - "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", - "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", - "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", - "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", - "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", - "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", - "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", - "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", - "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", - "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", - "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", - "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", - "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", + "20.75.182.233", "52.188.26.111", "4.157.110.133", "20.242.213.7", "20.75.223.5", + "4.246.246.168", "20.241.203.96", "57.151.24.126", "52.191.16.245", "40.121.127.182", + "172.214.71.203", "134.33.210.99", "48.206.248.192", "134.33.210.101", "20.253.102.18", + "172.171.86.142", "20.81.104.195", "172.214.71.222", "48.194.103.129", "48.195.188.44", + "52.186.33.216", "52.191.239.15", "20.241.246.84", "172.214.123.235", "128.203.66.61", + "4.157.233.139", "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", + "52.226.252.104", "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", + "4.246.255.52", "52.249.202.205", "135.237.72.218", "40.76.168.71", "134.33.132.247", + "135.237.61.79", "20.241.203.94", "52.191.23.227", "48.194.102.105", "48.202.133.14", + "51.8.221.179", "52.186.34.47", "57.151.62.229", "20.232.253.10", "20.241.205.165", + "48.194.103.134", "48.206.106.48", "172.214.2.3", "74.179.212.41", "128.203.123.4", + "48.216.135.228", "40.76.132.252", "4.156.62.147", "20.242.133.14", "13.92.75.107", + "48.194.117.106", "20.242.218.246", "20.185.213.94", "135.234.219.180", "20.121.253.21", + "52.255.211.68", "135.234.253.122", "20.242.238.207", "128.203.108.15", "74.179.199.219", + "128.203.106.197", "13.92.74.156", "52.146.85.169", "52.226.196.86", "135.234.249.68", + "134.33.212.222", "134.33.213.92", "20.237.93.245", "40.88.235.179", "52.191.23.224", + "20.253.98.81", "40.88.192.71", "20.237.24.181", "128.203.105.225", "74.179.210.187", + "48.202.212.175", "40.88.192.73", "172.171.62.28", "40.88.233.159", "134.33.213.118", + "51.8.239.21", "135.234.219.223", "4.156.119.224", "52.146.85.168", "52.191.94.237", + "51.8.239.129", "135.234.219.80", "20.88.185.204", "57.151.62.77", "134.33.212.186", + "48.206.106.49", "74.179.198.240", "52.186.34.57", "48.194.54.148", "20.127.248.50", + "20.241.171.30", "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", + "13.82.216.169", "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", + "20.169.229.46", "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", + "20.169.229.92", "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", + "40.90.243.232", "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", + "172.210.91.191", "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", + "57.152.55.92", "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", + "172.210.90.119", "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", + "172.171.186.158", "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", + "4.157.231.174", "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", + "20.121.176.173", "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", + "20.242.207.230", "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", + "20.237.38.135", "20.62.141.31", "51.8.47.218", "104.45.171.209", "20.231.232.154", + "57.152.2.80", "135.237.11.87", "57.151.46.244", "172.212.15.63", "74.179.244.93", + "4.156.59.40", "4.156.59.85", "48.216.148.42", "134.33.255.190", "51.8.225.81", + "135.237.10.218", "48.216.155.49", "172.214.119.100", "48.194.103.86", "172.171.52.9", "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", - "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], + "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.31.204", + "52.186.33.225", "20.242.139.243", "52.224.72.149", "20.242.230.200", "52.224.140.98", + "48.194.18.18", "20.102.0.242", "20.81.112.111", "20.121.246.203", "20.81.50.198", + "52.226.147.213", "172.171.182.143", "57.152.79.75", "135.237.57.10", "48.202.133.118", + "48.194.18.110", "172.171.87.168", "51.8.52.86", "20.253.97.235", "40.121.120.116", + "52.249.209.201", "52.234.160.205", "40.121.120.76", "172.171.128.9", "20.241.171.60", + "20.246.146.125", "20.253.117.162", "52.186.33.238", "48.195.175.75", "20.253.113.195", + "52.224.28.121", "52.146.82.53", "4.255.110.46", "20.253.97.234", "172.210.99.147", + "20.246.147.115", "20.237.104.246", "48.206.106.61", "52.191.23.220", "104.45.170.18", + "48.194.42.110", "135.237.59.73", "135.237.110.0", "20.242.218.239", "51.8.47.223", + "57.152.79.158", "135.237.44.220", "134.33.211.216", "135.234.159.160", "20.253.119.252", + "20.185.212.210", "48.194.103.131", "135.234.216.9", "52.191.201.41", "52.186.102.222", + "52.188.137.180", "4.255.111.148", "51.8.225.189", "172.212.121.239", "20.232.61.25", + "172.171.146.138", "52.226.230.169", "52.224.141.126", "48.206.105.102", "52.226.247.167"], "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": - "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": - "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": + "containerapp-e2e000003--y4kedib", "latestRevisionFqdn": "", "customDomainVerificationId": + "C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB", "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", "value": - "***"}, + "D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"}, {"name": "newsecret", "value": "test", "keyVaultUrl": "", "identity": ""}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": @@ -3862,41 +4454,42 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: - keep-alive Content-Length: - - '5097' + - '8078' Content-Type: - application/json ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM cache-control: - no-cache content-length: - - '4325' + - '7136' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:55 GMT + - Mon, 14 Sep 2026 23:53:28 GMT expires: - '-1' pragma: @@ -3910,11 +4503,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/e4627207-58ef-4427-a6c3-4b2369eb1f34 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/14cb9780-9ad8-4262-9043-e73a14459b7c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 8FC07E1B367E4862AA2AC34321F0CE97 Ref B: BY1AA1072318062 Ref C: 2026-03-24T05:55:55Z' + - 'Ref A: DFF13AA3B39141108B4BCA984C8E6440 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:53:28Z' x-powered-by: - ASP.NET status: @@ -3926,7 +4519,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -3934,26 +4527,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:56 GMT + - Mon, 14 Sep 2026 23:53:27 GMT expires: - '-1' pragma: @@ -3967,11 +4561,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/cd0d9c91-24fa-4273-b382-463b525735fe + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2f93b297-9e4a-4cce-a5fb-3c6816db2ffe x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C3E8134529584186A81D7578B1FA70AC Ref B: BY1AA1072318060 Ref C: 2026-03-24T05:55:56Z' + - 'Ref A: DA2D75342566407FBF73D99735F87EE8 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:53:28Z' x-powered-by: - ASP.NET status: @@ -3983,7 +4577,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -3991,26 +4585,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:55:58 GMT + - Mon, 14 Sep 2026 23:53:30 GMT expires: - '-1' pragma: @@ -4024,11 +4619,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/28d356eb-f8f8-4ef3-a998-85f5b6f4e5a2 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d17c0f7a-4260-4638-94e6-0cdf4b4a4614 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F44C52974FCF45F3AD96AD8891A2179F Ref B: SJC211051201045 Ref C: 2026-03-24T05:55:58Z' + - 'Ref A: 1BF3179AEEEC447293AB7E3E47F75683 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:53:31Z' x-powered-by: - ASP.NET status: @@ -4040,7 +4635,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -4048,26 +4643,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:00 GMT + - Mon, 14 Sep 2026 23:53:34 GMT expires: - '-1' pragma: @@ -4081,11 +4677,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/0de5384e-2426-4071-bb90-912cb0ce516b + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b8dfb909-57ff-45cd-afd8-bce88d331575 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: E6DADEE961EC4C3EB591E37F165F1FF7 Ref B: SJC211051205011 Ref C: 2026-03-24T05:56:00Z' + - 'Ref A: 1DFA10CDCE924F74A646F9129F09EC94 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:53:33Z' x-powered-by: - ASP.NET status: @@ -4097,7 +4693,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -4105,26 +4701,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:02 GMT + - Mon, 14 Sep 2026 23:53:36 GMT expires: - '-1' pragma: @@ -4138,11 +4735,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/e2312522-0df5-4178-9200-544aa5102489 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/6a5cf143-922b-4cb6-9305-679a70a9efe1 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: CBEE3B84D5194D3FA61E1D861AAB363C Ref B: BY1AA1072317029 Ref C: 2026-03-24T05:56:03Z' + - 'Ref A: 1624825F2C2E476DBCA140E1CD2AF6F1 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:53:36Z' x-powered-by: - ASP.NET status: @@ -4154,7 +4751,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -4162,26 +4759,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:05 GMT + - Mon, 14 Sep 2026 23:53:38 GMT expires: - '-1' pragma: @@ -4195,11 +4793,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c9a8bf35-6262-45dd-a8cb-a3d3ea278526 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4c51e112-1f9e-4b02-bbea-427ef7992a34 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A9B8271806C0464F944A4C2B754EB8BE Ref B: SJC211051204025 Ref C: 2026-03-24T05:56:05Z' + - 'Ref A: 1654839391EF466C9818193F81D505F2 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:53:39Z' x-powered-by: - ASP.NET status: @@ -4211,7 +4809,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -4219,26 +4817,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"Succeeded","startTime":"2026-03-24T05:55:55.897585"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"Succeeded","startTime":"2026-09-14T23:53:28.4367352"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '276' + - '277' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:08 GMT + - Mon, 14 Sep 2026 23:53:41 GMT expires: - '-1' pragma: @@ -4252,11 +4851,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9f349a5d-3577-4e46-8eeb-5d24181c5fa6 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0c786d8e-77ac-44c8-81fa-8a361c49f0b6 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4EE0DEF8C3D6412CB4CE71E445B62105 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:56:08Z' + - 'Ref A: DD92E333FE644CD393CC35DEA4F3C869 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:53:41Z' x-powered-by: - ASP.NET status: @@ -4268,7 +4867,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret set Connection: @@ -4276,27 +4875,28 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '7493' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:08 GMT + - Mon, 14 Sep 2026 23:53:41 GMT expires: - '-1' pragma: @@ -4310,9 +4910,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: CCC01C783D574577AA8501B30A001860 Ref B: SJC211051203053 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: 12126C16E06C4D14B1087F7A9C8D9845 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:53:41Z' x-powered-by: - ASP.NET status: @@ -4324,7 +4924,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret show Connection: @@ -4332,313 +4932,389 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:08 GMT + - Mon, 14 Sep 2026 23:53:42 GMT expires: - '-1' pragma: @@ -4650,9 +5326,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 6038F898746C41AA9A89E8B256D036F1 Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: 9CF52F6C8E09437BB29674EB441DC710 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:53:42Z' status: code: 200 message: OK @@ -4662,7 +5338,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret show Connection: @@ -4670,27 +5346,28 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '7493' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:09 GMT + - Mon, 14 Sep 2026 23:53:42 GMT expires: - '-1' pragma: @@ -4704,9 +5381,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9C4E884AA8B4470EBE209FC2BA55208F Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: 85F15374C95F4658AC2E464DA0A09BCD Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:53:42Z' x-powered-by: - ASP.NET status: @@ -4718,7 +5395,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret show Connection: @@ -4728,18 +5405,19 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -4747,7 +5425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:09 GMT + - Mon, 14 Sep 2026 23:53:42 GMT expires: - '-1' pragma: @@ -4761,13 +5439,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/da4138f1-e787-439b-a80f-7f43415a263b + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7e95e4c2-80e4-4ef0-8d62-a020b9ab87e4 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 05F6652B679A4680B104BA81D538E845 Ref B: BY1AA1072317036 Ref C: 2026-03-24T05:56:09Z' + - 'Ref A: 40B65E57EA444157B2D3ADA51B90DC51 Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:53:43Z' x-powered-by: - ASP.NET status: @@ -4779,7 +5457,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret remove Connection: @@ -4787,313 +5465,389 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:09 GMT + - Mon, 14 Sep 2026 23:53:43 GMT expires: - '-1' pragma: @@ -5105,9 +5859,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3904BCFA04A74EDC9D306749BDAB337C Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:10Z' + - 'Ref A: F5C0F2D654F54BB6A820215E7BC56E62 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:53:43Z' status: code: 200 message: OK @@ -5117,7 +5871,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret remove Connection: @@ -5125,27 +5879,28 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '7493' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:10 GMT + - Mon, 14 Sep 2026 23:53:43 GMT expires: - '-1' pragma: @@ -5159,9 +5914,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 00C600BB9AE6418B8F08CC34161515A2 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:56:10Z' + - 'Ref A: CBF0F3D936CC4C21AEBE08342B09DD79 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:53:43Z' x-powered-by: - ASP.NET status: @@ -5173,7 +5928,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret remove Connection: @@ -5183,18 +5938,19 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -5202,7 +5958,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:10 GMT + - Mon, 14 Sep 2026 23:53:43 GMT expires: - '-1' pragma: @@ -5216,13 +5972,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8e2e9a85-aeba-435c-8c88-9f89f355079a + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/011e52db-66c9-4fcd-a4d6-9c4cb457bd7c x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 41BDCDD27D774B498C9CAB78E9AF9137 Ref B: BY1AA1072319042 Ref C: 2026-03-24T05:56:10Z' + - 'Ref A: E6D2A1D6D4994B4C8FC413E14D6503F3 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:53:44Z' x-powered-by: - ASP.NET status: @@ -5231,11 +5987,12 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "East US", "systemData": {"createdBy": "test@example.com", "createdByType": - "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", - "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:55.7796029"}, - "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", - "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "East US", "systemData": {"createdBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", + "createdByType": "Application", "createdAt": "2026-09-14T23:52:57.7090432", + "lastModifiedBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", "lastModifiedByType": + "Application", "lastModifiedAt": "2026-09-14T23:53:28.3358779"}, "properties": + {"provisioningState": "Succeeded", "runningStatus": "Running", "managedEnvironmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", @@ -5249,28 +6006,62 @@ interactions: "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", - "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", - "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", - "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", - "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", - "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", - "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", - "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", - "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", - "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", - "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", - "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", - "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", - "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", - "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", - "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", - "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", + "20.75.182.233", "52.188.26.111", "4.157.110.133", "20.242.213.7", "20.75.223.5", + "4.246.246.168", "20.241.203.96", "57.151.24.126", "52.191.16.245", "40.121.127.182", + "172.214.71.203", "134.33.210.99", "48.206.248.192", "134.33.210.101", "20.253.102.18", + "172.171.86.142", "20.81.104.195", "172.214.71.222", "48.194.103.129", "48.195.188.44", + "52.186.33.216", "52.191.239.15", "20.241.246.84", "172.214.123.235", "128.203.66.61", + "4.157.233.139", "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", + "52.226.252.104", "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", + "4.246.255.52", "52.249.202.205", "135.237.72.218", "40.76.168.71", "134.33.132.247", + "135.237.61.79", "20.241.203.94", "52.191.23.227", "48.194.102.105", "48.202.133.14", + "51.8.221.179", "52.186.34.47", "57.151.62.229", "20.232.253.10", "20.241.205.165", + "48.194.103.134", "48.206.106.48", "172.214.2.3", "74.179.212.41", "128.203.123.4", + "48.216.135.228", "40.76.132.252", "4.156.62.147", "20.242.133.14", "13.92.75.107", + "48.194.117.106", "20.242.218.246", "20.185.213.94", "135.234.219.180", "20.121.253.21", + "52.255.211.68", "135.234.253.122", "20.242.238.207", "128.203.108.15", "74.179.199.219", + "128.203.106.197", "13.92.74.156", "52.146.85.169", "52.226.196.86", "135.234.249.68", + "134.33.212.222", "134.33.213.92", "20.237.93.245", "40.88.235.179", "52.191.23.224", + "20.253.98.81", "40.88.192.71", "20.237.24.181", "128.203.105.225", "74.179.210.187", + "48.202.212.175", "40.88.192.73", "172.171.62.28", "40.88.233.159", "134.33.213.118", + "51.8.239.21", "135.234.219.223", "4.156.119.224", "52.146.85.168", "52.191.94.237", + "51.8.239.129", "135.234.219.80", "20.88.185.204", "57.151.62.77", "134.33.212.186", + "48.206.106.49", "74.179.198.240", "52.186.34.57", "48.194.54.148", "20.127.248.50", + "20.241.171.30", "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", + "13.82.216.169", "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", + "20.169.229.46", "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", + "20.169.229.92", "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", + "40.90.243.232", "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", + "172.210.91.191", "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", + "57.152.55.92", "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", + "172.210.90.119", "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", + "172.171.186.158", "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", + "4.157.231.174", "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", + "20.121.176.173", "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", + "20.242.207.230", "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", + "20.237.38.135", "20.62.141.31", "51.8.47.218", "104.45.171.209", "20.231.232.154", + "57.152.2.80", "135.237.11.87", "57.151.46.244", "172.212.15.63", "74.179.244.93", + "4.156.59.40", "4.156.59.85", "48.216.148.42", "134.33.255.190", "51.8.225.81", + "135.237.10.218", "48.216.155.49", "172.214.119.100", "48.194.103.86", "172.171.52.9", "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", - "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], + "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.31.204", + "52.186.33.225", "20.242.139.243", "52.224.72.149", "20.242.230.200", "52.224.140.98", + "48.194.18.18", "20.102.0.242", "20.81.112.111", "20.121.246.203", "20.81.50.198", + "52.226.147.213", "172.171.182.143", "57.152.79.75", "135.237.57.10", "48.202.133.118", + "48.194.18.110", "172.171.87.168", "51.8.52.86", "20.253.97.235", "40.121.120.116", + "52.249.209.201", "52.234.160.205", "40.121.120.76", "172.171.128.9", "20.241.171.60", + "20.246.146.125", "20.253.117.162", "52.186.33.238", "48.195.175.75", "20.253.113.195", + "52.224.28.121", "52.146.82.53", "4.255.110.46", "20.253.97.234", "172.210.99.147", + "20.246.147.115", "20.237.104.246", "48.206.106.61", "52.191.23.220", "104.45.170.18", + "48.194.42.110", "135.237.59.73", "135.237.110.0", "20.242.218.239", "51.8.47.223", + "57.152.79.158", "135.237.44.220", "134.33.211.216", "135.234.159.160", "20.253.119.252", + "20.185.212.210", "48.194.103.131", "135.234.216.9", "52.191.201.41", "52.186.102.222", + "52.188.137.180", "4.255.111.148", "51.8.225.189", "172.212.121.239", "20.232.61.25", + "172.171.146.138", "52.226.230.169", "52.224.141.126", "48.206.105.102", "52.226.247.167"], "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": - "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": - "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": + "containerapp-e2e000003--y4kedib", "latestRevisionFqdn": "", "customDomainVerificationId": + "C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB", "configuration": {"secrets": [{"name": "newsecret", "value": "test"}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": "containerapp000002azurecrio-containerapp000002", @@ -5287,19 +6078,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp secret remove Connection: - keep-alive Content-Length: - - '4905' + - '7886' Content-Type: - application/json ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -5312,7 +6104,7 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -5320,7 +6112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:10 GMT + - Mon, 14 Sep 2026 23:53:44 GMT expires: - '-1' pragma: @@ -5332,11 +6124,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/61d8b356-d6f9-4b78-a688-de202ce08734 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9c191a27-48e4-4753-a38d-f8bfb5ae8a47 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 816599FAEA9040529498C23C0DB57675 Ref B: SJC211051204007 Ref C: 2026-03-24T05:56:11Z' + - 'Ref A: 21865ABFAF0544AE8829B83AF8024447 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:53:44Z' x-powered-by: - ASP.NET status: @@ -5348,7 +6140,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -5356,313 +6148,389 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:11 GMT + - Mon, 14 Sep 2026 23:53:44 GMT expires: - '-1' pragma: @@ -5674,9 +6542,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: BFE51125256A4FF593D00AA543B49B09 Ref B: BY1AA1072316062 Ref C: 2026-03-24T05:56:11Z' + - 'Ref A: FD6CF2B26C6D47A19EDD8DD037702678 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:53:44Z' status: code: 200 message: OK @@ -5686,7 +6554,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -5694,313 +6562,389 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:11 GMT + - Mon, 14 Sep 2026 23:53:45 GMT expires: - '-1' pragma: @@ -6012,9 +6956,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3512FA170F1C403CB2F3FB534F148289 Ref B: SJC211051204037 Ref C: 2026-03-24T05:56:11Z' + - 'Ref A: 231FF277B0434CF08788659B71714302 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:53:45Z' status: code: 200 message: OK @@ -6024,7 +6968,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6032,27 +6976,28 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4682' + - '7493' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:12 GMT + - Mon, 14 Sep 2026 23:53:45 GMT expires: - '-1' pragma: @@ -6066,9 +7011,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 866E0B3AA9474449B8CEB1CC89614392 Ref B: BY1AA1072318036 Ref C: 2026-03-24T05:56:12Z' + - 'Ref A: 2107AFEBC37347D59769E7D437E66F0B Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:53:45Z' x-powered-by: - ASP.NET status: @@ -6083,7 +7028,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6095,7 +7040,8 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -6106,19 +7052,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:56:12 GMT + - Mon, 14 Sep 2026 23:53:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=l-N9Vi3l9-TX_yOuu0QM4TcCIh9TNah7vnMU7t9wfU4plH-1xT11_xNhfceZ3-7flZBf4VtHOkqQSdbsxdwSESXpK4tKza1TT2D6KBseZI2gua_goueOdXclqPuqDpyfc1xFB94vLgBoxaburE9LsrUjIx4UHAsAx4mf0yNAE83dv32qWFTPwkoO4cM-MD5OU8bqOLWHCNmeRtLFnLFoInTRh8szc4lRcvw6jotcyiZ7yLQVjyET4jl-JlF_xOh_cY5ErFmf1lqTiGoCjlpSE4m5cVqCaZaZLUpaqqFqmH6yVhBwAN7vuBwHmo2cIbnVUEGEJ-aAL-d5oeqcmyidHg&h=pmoREmszgFD1_OGHIqPB5EsqTa58JsD3ZbxXmff0r7g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=maoMITsp3HTqJj0qKoHrlfac2NEDaxEqE6GsAvj3Ysy1xIPds0iEBhb4qBch46B7ftrWXO_ZPL8KBiwR9Q6qsvhXdsJeU7iuatEdQ5wZ7f9JjgAJofeps0lrH3kq1BNHN_RMwotZs5lFJOpNPlFSAKvwu0EvnabW2HKHrhqZypCeefgS53xLUQAtZwZboes049lVFwPXvzu-LadmeOtaWRdOvAFhQg2Hx6mfqyk_6S898Ma92h1ajq3w1-2Rm0_lD-0_BBWtdEFwfDb6ByEXMG1NR9MJEDfisJOBM5ilfEoD5w899YmnYtVxUx580EiX4-Rcvr5dCtwGHA21fwvr9w&h=vc6WTvoleJAKs5cqzc3Ja5YJcgbAw1DO0TjwgpvVf4I pragma: - no-cache strict-transport-security: @@ -6128,11 +7074,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/673adef0-8a4a-4ae7-90fa-459031cbda47 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8f90254f-7d86-4567-bf48-5689dae8d7c0 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 50349BF7FCED4677B7718B2E21CDACFF Ref B: SJC211051205025 Ref C: 2026-03-24T05:56:12Z' + - 'Ref A: 0D6BF9A9015844DE9F9E16FD6A4C960A Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:53:45Z' x-powered-by: - ASP.NET status: @@ -6144,7 +7090,65 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --min-replicas --max-replicas --replace-env-vars + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:53:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6c59f474-aa5f-4ca4-aef2-707fa30e8eaf + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 85D161E871FB4C7B93AE434E30D5DD95 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:53:46Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6152,18 +7156,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -6171,7 +7176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:13 GMT + - Mon, 14 Sep 2026 23:53:48 GMT expires: - '-1' pragma: @@ -6185,11 +7190,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f1d73c06-d328-4481-bd02-d6cb554d2ed0 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2eb7ad87-dfb5-4bce-abea-cf9d964c44b6 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C85F4A1CBAE749AB95A369BE2FE653A4 Ref B: BY1AA1072315054 Ref C: 2026-03-24T05:56:12Z' + - 'Ref A: B10A4CDFA82C492FBF48DC2E93AFEB6A Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:53:49Z' x-powered-by: - ASP.NET status: @@ -6201,7 +7206,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6209,18 +7214,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -6228,7 +7234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:15 GMT + - Mon, 14 Sep 2026 23:53:50 GMT expires: - '-1' pragma: @@ -6242,11 +7248,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ab77b96a-55ff-4d3d-88a7-d4ceb38b6649 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b60a4961-2cd0-4747-ab11-6eac16c4d7c7 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 929C22EE3A894C58BFBEDB39B1C6F948 Ref B: SJC211051203039 Ref C: 2026-03-24T05:56:15Z' + - 'Ref A: 0C6CE73F618845FA97AFAA24BAEE815A Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:53:51Z' x-powered-by: - ASP.NET status: @@ -6258,7 +7264,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6266,18 +7272,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -6285,7 +7292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:17 GMT + - Mon, 14 Sep 2026 23:53:53 GMT expires: - '-1' pragma: @@ -6299,11 +7306,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/8c7e3e3b-9339-4236-8282-0ac9b47ab4ec + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0e1112b0-5ea7-491d-afc3-103fa6af4c75 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: BC38B9AD13DF436DBBD44334B085D9D4 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:18Z' + - 'Ref A: 66DF0429E97849D5BF802B13CDDEFBDB Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:53:54Z' x-powered-by: - ASP.NET status: @@ -6315,7 +7322,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6323,18 +7330,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -6342,7 +7350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:20 GMT + - Mon, 14 Sep 2026 23:53:56 GMT expires: - '-1' pragma: @@ -6356,11 +7364,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/138620fe-f8a3-42d1-b4f7-cf00708613fa + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4f651429-472a-4aec-9e0b-4dbd3693a626 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A97A32F8D13148EA9B55A5612807DDA2 Ref B: SJC211051201025 Ref C: 2026-03-24T05:56:20Z' + - 'Ref A: D6A324ACF5D84269808CADE8A3FDD865 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:53:56Z' x-powered-by: - ASP.NET status: @@ -6372,7 +7380,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6380,18 +7388,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"Succeeded","startTime":"2026-03-24T05:56:12.7125034"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"Succeeded","startTime":"2026-09-14T23:53:46.2844302"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -6399,7 +7408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:22 GMT + - Mon, 14 Sep 2026 23:53:58 GMT expires: - '-1' pragma: @@ -6413,11 +7422,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5e65ca00-a2e0-43ce-9e54-f06f1a5be6ae + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d9ce8dfe-91aa-4c95-89d4-f3583690fc24 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9276638915DC4EED942414019D1DCF38 Ref B: SJC211051203019 Ref C: 2026-03-24T05:56:23Z' + - 'Ref A: 0460FF3D12FC4207892550AFB503829D Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:53:59Z' x-powered-by: - ASP.NET status: @@ -6429,7 +7438,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6437,27 +7446,28 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:46.1602093"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4683' + - '7494' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:23 GMT + - Mon, 14 Sep 2026 23:53:59 GMT expires: - '-1' pragma: @@ -6471,9 +7481,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: B57503384A9F4B7BB36952039BC66D51 Ref B: BY1AA1072317040 Ref C: 2026-03-24T05:56:23Z' + - 'Ref A: 802E73FF1A2C43E599D5213D0CE042E1 Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:53:59Z' x-powered-by: - ASP.NET status: @@ -6485,7 +7495,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6493,313 +7503,389 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:23 GMT + - Mon, 14 Sep 2026 23:53:59 GMT expires: - '-1' pragma: @@ -6811,9 +7897,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 5F16576371564FF4BBEB56A9598B2BCF Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: 55B1BE679F134E22BC057D9135036B72 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:53:59Z' status: code: 200 message: OK @@ -6823,7 +7909,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -6831,313 +7917,389 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:24 GMT + - Mon, 14 Sep 2026 23:53:59 GMT expires: - '-1' pragma: @@ -7149,9 +8311,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: B7E7B0AC0D5F4273816CB34096E6AEA0 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: 6E7F2EDF993C4B0CA23D4C6945439D48 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:54:00Z' status: code: 200 message: OK @@ -7161,7 +8323,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7169,27 +8331,28 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:46.1602093"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4683' + - '7494' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:24 GMT + - Mon, 14 Sep 2026 23:54:00 GMT expires: - '-1' pragma: @@ -7203,9 +8366,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 052B2DF708074132B5A2338ACBC4FE65 Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: 28E2B9868229417F8D377AEF467CF19D Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:54:00Z' x-powered-by: - ASP.NET status: @@ -7220,7 +8383,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7232,7 +8395,8 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -7243,19 +8407,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:56:25 GMT + - Mon, 14 Sep 2026 23:54:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=nGnObUS2fzfEzjaPvemoLxSKDlfTkJCahp05Q2qA-eXnVJZwM8KuzADfuoW1Eu5e3Lb2IjScnIwMBNaBRe6RYlV-6Wx6nHWsyTXoQogkM5-Q3lWQ-Z-v9wtrTrcLjg-qY8VUKdIVHr2aYyvif-opISYgG1UF-_9QLGksw8_eqbG368ZzlVFq--uhh_u9vm-ChgXmxAxqhURZj6Ncl5Bs3KaDa4oPVCzB_te1ibwXFOetcPFm-BNsXFJRXt4jQ-FbGH5E5SyiWuWbOxpqpaixpMi_Jjck9wjSGZ6BVsHNLPAelX1Ta0B8ZoMlh8brrWtwGP-CwQ3TOd_RLy_K5L6qdQ&h=B-ERuNnmQhnJ7wz89GCBR3A7pv7KjBBYxn2GzWq24Wg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=qgIZod6fRJHihMtT8OYe3G13PwoNoHU77WmlMJ13BwFqMD0plG2fno-6bgLyRCexL2OcslJ54MzfeKYKd-ZjayQhwXIkGDzC-PQkTC02_SZ-daKbDRNqc3glPsWoH2FtUcJUbV7yBDsAFC7jEryM1LZqxruXmkzvu-kySmErTweMcLvLxEs7BJsxPW1bDUr6MpW3z21Q6LV71yYJe-oXPufaApScezDYxUqQFf5tmK8-YUjU_42v6fvKKOmWQ88EY_nlw7LqJZPHgSy9OvZC4ZkI_y6u8jA2CWwnD0-oscS5WnGsTZ19i-g1YYrzz1oqym_X04l3M5aLeQL065BhTw&h=z92zgqFY94AfMWO0f-Uz-FJ9Uckk9mtNpx1sEpuaBzA pragma: - no-cache strict-transport-security: @@ -7265,11 +8429,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/644b3668-11d5-4fc1-945f-e2d788b6b71e + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e453e965-3d70-40de-b464-0a29004dfd93 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: F124A9D6074E4E8E8B4B390D15943D5E Ref B: BY1AA1072315025 Ref C: 2026-03-24T05:56:24Z' + - 'Ref A: DECE99C113CF4F99A78386CBD1DF7D89 Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:54:00Z' x-powered-by: - ASP.NET status: @@ -7281,7 +8445,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7289,18 +8453,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -7308,7 +8473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:26 GMT + - Mon, 14 Sep 2026 23:54:01 GMT expires: - '-1' pragma: @@ -7322,11 +8487,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1d741503-7667-4e92-a836-5c35e0ee1a6d + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/07085135-e06f-4fb7-930c-f363b43d5b06 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C23740FAE9194EB8B8633D0624232D30 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:56:26Z' + - 'Ref A: 3EF4C5A6517241CFA4BD5FDFA48E801B Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:54:01Z' x-powered-by: - ASP.NET status: @@ -7338,7 +8503,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7346,18 +8511,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -7365,7 +8531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:28 GMT + - Mon, 14 Sep 2026 23:54:03 GMT expires: - '-1' pragma: @@ -7379,11 +8545,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/3f7dc4ea-9be6-41e5-9542-3b2aded364d8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/43abe9fd-2353-40b8-b0f4-5f69f18e91a8 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: EAE9CD227D3B46EE93FBB094BD519488 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:28Z' + - 'Ref A: D6D03336A7A647CEA15223E46E622279 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:54:04Z' x-powered-by: - ASP.NET status: @@ -7395,7 +8561,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7403,18 +8569,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -7422,7 +8589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:31 GMT + - Mon, 14 Sep 2026 23:54:06 GMT expires: - '-1' pragma: @@ -7436,11 +8603,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/e6428943-ab1b-4af5-8286-1b1601b4b46f + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cfe2eb86-310b-4d51-84a5-e2102affcc19 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A51578B47C7F43E18CD66F04A94E55D7 Ref B: SJC211051201047 Ref C: 2026-03-24T05:56:31Z' + - 'Ref A: D1493984C9414926BBE98B57FC21957D Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:54:06Z' x-powered-by: - ASP.NET status: @@ -7452,7 +8619,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7460,18 +8627,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -7479,7 +8647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:33 GMT + - Mon, 14 Sep 2026 23:54:08 GMT expires: - '-1' pragma: @@ -7493,11 +8661,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/58824e6e-f0bf-4615-9342-e424d737ef50 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/20eb47f0-0c1c-4754-b218-cd0d072be78c x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F025D55194CE4297AB0881E8DBB14934 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:56:34Z' + - 'Ref A: 1E1866D6E69540269374A8B15C4A445A Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:54:09Z' x-powered-by: - ASP.NET status: @@ -7509,7 +8677,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7517,18 +8685,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -7536,7 +8705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:36 GMT + - Mon, 14 Sep 2026 23:54:11 GMT expires: - '-1' pragma: @@ -7550,11 +8719,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/e7c8a6fe-b0b0-4f62-9cf3-681088abba32 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d83ca64f-6fc9-42d2-b3bc-3c66d1565c63 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4C649878B57F45A5B51C8C1B88BAC0FF Ref B: BY1AA1072320025 Ref C: 2026-03-24T05:56:36Z' + - 'Ref A: FDF930F42ECF449A8534A4F6793A049B Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:54:11Z' x-powered-by: - ASP.NET status: @@ -7566,7 +8735,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7574,18 +8743,19 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"Succeeded","startTime":"2026-03-24T05:56:25.8970205"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"Succeeded","startTime":"2026-09-14T23:54:01.3000733"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -7593,7 +8763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:38 GMT + - Mon, 14 Sep 2026 23:54:13 GMT expires: - '-1' pragma: @@ -7607,11 +8777,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/470adce1-4b33-445f-a6e6-47ee0472fb82 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9d9aae66-d73c-411c-a02f-df4e2add25c9 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: D46AAE94DAF04CCBBD9BDDFCDDE3B288 Ref B: BY1AA1072315062 Ref C: 2026-03-24T05:56:38Z' + - 'Ref A: 6FBBDB5032DC47FE96B44CC5773FC3C2 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:54:13Z' x-powered-by: - ASP.NET status: @@ -7623,7 +8793,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp update Connection: @@ -7631,27 +8801,28 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:25.6259606"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:01.1109774"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '4637' + - '7448' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:56:39 GMT + - Mon, 14 Sep 2026 23:54:14 GMT expires: - '-1' pragma: @@ -7665,9 +8836,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 73A95C8B6DC442C1B32BF6BCBD52D953 Ref B: SJC211051205045 Ref C: 2026-03-24T05:56:39Z' + - 'Ref A: 3B78D283BFDF466BA1C15243650C48E4 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:54:14Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml index 5994906ab1c..b9712feb3f7 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -13,313 +13,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:34 GMT + - Mon, 14 Sep 2026 23:54:16 GMT expires: - '-1' pragma: @@ -331,9 +407,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 81DF483E783C4D98933C5543A57F49B7 Ref B: BN1AA2051015039 Ref C: 2026-04-09T18:46:35Z' + - 'Ref A: FEFD30B925334C8086A2C2FFB24D7E37 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:54:17Z' status: code: 200 message: OK @@ -343,7 +419,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -351,27 +427,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '1779' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:36 GMT + - Mon, 14 Sep 2026 23:54:17 GMT expires: - '-1' pragma: @@ -385,9 +462,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: B3844DBEEF01430999E2AF077AAD7CF2 Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:46:37Z' + - 'Ref A: 03F20158F7CC40619BD6345894EC791B Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:54:17Z' x-powered-by: - ASP.NET status: @@ -400,7 +477,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -412,23 +489,24 @@ interactions: ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1681' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:49 GMT + - Mon, 14 Sep 2026 23:54:25 GMT expires: - '-1' pragma: @@ -440,13 +518,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/98d11168-e94f-45d5-a6bb-a63e6b018f0b + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/81440836-aea4-4891-ace7-3dc91491a0ca x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '199' x-msedge-ref: - - 'Ref A: 2C4F85ADDD2A4A8989516354E85B068A Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:46:40Z' + - 'Ref A: 2665E81C7B5F44D69FAF21CE3D301C64 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:54:18Z' status: code: 200 message: OK @@ -456,7 +534,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -464,22 +542,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdb4rv5c4z3oyncmfh5clduumtxs3vwru5fboct4tlk6kad5qwdjs4nlgoucaafy7o/providers/Microsoft.ContainerRegistry/registries/containerappd46vnkk5c6aq","name":"containerappd46vnkk5c6aq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}}]}' headers: cache-control: - no-cache content-length: - - '6965' + - '1230' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:51 GMT + - Mon, 14 Sep 2026 23:54:26 GMT expires: - '-1' pragma: @@ -491,9 +569,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 5D0DD95D11064C2183A55E115718AB53 Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:46:51Z' + - 'Ref A: DAA266C56FAB4C4E8EEA7DE82A197414 Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:54:26Z' status: code: 200 message: OK @@ -503,7 +581,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -511,23 +589,24 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1681' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:54 GMT + - Mon, 14 Sep 2026 23:54:26 GMT expires: - '-1' pragma: @@ -539,9 +618,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 80A4186B485446ADB2F5D43C48DF40DE Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:46:53Z' + - 'Ref A: 6C09C00AE2784DD081DCA3FB028584B3 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:54:26Z' status: code: 200 message: OK @@ -551,7 +630,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -559,22 +638,24 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acrouvbstr6isw5ks3lbrkhd.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: + api-supported-versions: + - 2026-09-01-preview cache-control: - no-cache content-length: - - '20786' + - '1693' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:46:56 GMT + - Mon, 14 Sep 2026 23:54:27 GMT expires: - '-1' pragma: @@ -587,14 +668,10 @@ interactions: - nosniff x-ms-original-request-ids: - '' - - '' - - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C1FE7AD308FC4EB7A7D4C5BFE020CBCD Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:46:56Z' + - 'Ref A: 1955CB19F02F4A189EA48AEF0EA51DAA Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:54:27Z' status: code: 200 message: OK @@ -605,7 +682,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -617,9 +694,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -629,17 +707,18 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Apr 2026 18:46:59 GMT + - Mon, 14 Sep 2026 23:54:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268699504141&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=K1SSATW6ZCTTM-JcTSD6j2T5dMvYjfJ5T9Uu_JAM24Qy7EV0zskozNjJmb5CFFN5zwqEJ2ljsC_txJ1cC_S5M2Hbmodxx3J6fyWEgFTg-zqlWMsG2RkdcbnbxCUf0n8JGvc3keqCF20cXpBB7L8dCEc77Rdstv7d1-_zI1DOUC1zlGlWx6OJRZhWe29uhY6pqwUgIofm3rXZAvnd_8BuSTWKT82RR72g8aoeSfepH06cqd7leMSQrS1fjR-w9s96o1O7HW3_4pbvSuREptikatHxD0LWvQdHufpvIzAyiCYK72-9b0V3b4xhicKeE1kT2I1rz3LHTT3h-MqfXD2Qaw&h=b8O9Ioi9D4Eh5XDiheMgcx7T9s4nZdyMYIX0Orq_Hr4 pragma: - no-cache strict-transport-security: @@ -649,13 +728,64 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2a36d3ee-e3fe-4e51-ba97-733be268c807 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/69a3dc44-8332-423b-b7a0-c50b66bceb34 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' + x-msedge-ref: + - 'Ref A: AC3BEF3AD0284C90BC92A014A8D12711 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:54:28Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268699504141&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=K1SSATW6ZCTTM-JcTSD6j2T5dMvYjfJ5T9Uu_JAM24Qy7EV0zskozNjJmb5CFFN5zwqEJ2ljsC_txJ1cC_S5M2Hbmodxx3J6fyWEgFTg-zqlWMsG2RkdcbnbxCUf0n8JGvc3keqCF20cXpBB7L8dCEc77Rdstv7d1-_zI1DOUC1zlGlWx6OJRZhWe29uhY6pqwUgIofm3rXZAvnd_8BuSTWKT82RR72g8aoeSfepH06cqd7leMSQrS1fjR-w9s96o1O7HW3_4pbvSuREptikatHxD0LWvQdHufpvIzAyiCYK72-9b0V3b4xhicKeE1kT2I1rz3LHTT3h-MqfXD2Qaw&h=b8O9Ioi9D4Eh5XDiheMgcx7T9s4nZdyMYIX0Orq_Hr4 + response: + body: + string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '56' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:54:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268703747107&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=kjt94O9EZPO35iE67tiqadpt5phQD1Rg9EaKvb2SVFepH09R4NiAe99lEBn7eO6drq45H2nAzW4xk3h620uQh8y1yRSxsjQ3Kv3ILDmMgPQ0VyAnwRt7QGEFA01RAxoYYovsRBUxCNkPGBVGznuwK0vuhvP7hFk-OfGSykei8Xv3qPbZ_mQETElotswmrK5PMMXq7DDSbpy62wcBCRr5G3q6_fMvUBjalBTwNjybR0I0hczRH-lHHpY1pt-XlGtr66u0mFvV6N0HLOkM_8nj7xWvpS4rLJX41LQBfRdGuw0r8hAzAmqPbuVIt7HnSp3x-rzDieSi80qEwDVsoU3ZfA&h=FUkQClJZvDjsUAjDQegtgXC42Zt8BTzli92BWrJic0E + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/74393ad4-9adf-4a8f-9fc1-55ef97e61ed9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 65836825BBD84F259BA9D087A4696890 Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:46:59Z' + - 'Ref A: 4C477D4BFD084C39A37868A005257A39 Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:54:30Z' status: code: 202 message: Accepted @@ -665,7 +795,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -673,9 +803,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268703747107&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=kjt94O9EZPO35iE67tiqadpt5phQD1Rg9EaKvb2SVFepH09R4NiAe99lEBn7eO6drq45H2nAzW4xk3h620uQh8y1yRSxsjQ3Kv3ILDmMgPQ0VyAnwRt7QGEFA01RAxoYYovsRBUxCNkPGBVGznuwK0vuhvP7hFk-OfGSykei8Xv3qPbZ_mQETElotswmrK5PMMXq7DDSbpy62wcBCRr5G3q6_fMvUBjalBTwNjybR0I0hczRH-lHHpY1pt-XlGtr66u0mFvV6N0HLOkM_8nj7xWvpS4rLJX41LQBfRdGuw0r8hAzAmqPbuVIt7HnSp3x-rzDieSi80qEwDVsoU3ZfA&h=FUkQClJZvDjsUAjDQegtgXC42Zt8BTzli92BWrJic0E response: body: string: '{"status":"Succeeded"}' @@ -687,7 +818,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:02 GMT + - Mon, 14 Sep 2026 23:54:40 GMT expires: - '-1' pragma: @@ -699,11 +830,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1c4d9862-aa0b-4ddc-89b7-9440dc9968c8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/221142b1-558b-432c-a0d4-aef374e7a67e x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 5C210DB918394B91973684B8EA718635 Ref B: BN1AA2051013025 Ref C: 2026-04-09T18:47:02Z' + - 'Ref A: 8C7E8E13EE5C4B98A389F0E726335BC6 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:54:40Z' status: code: 200 message: OK @@ -713,7 +844,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -721,22 +852,22 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdb4rv5c4z3oyncmfh5clduumtxs3vwru5fboct4tlk6kad5qwdjs4nlgoucaafy7o/providers/Microsoft.ContainerRegistry/registries/containerappd46vnkk5c6aq","name":"containerappd46vnkk5c6aq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}}]}' headers: cache-control: - no-cache content-length: - - '6965' + - '1230' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:04 GMT + - Mon, 14 Sep 2026 23:54:40 GMT expires: - '-1' pragma: @@ -748,9 +879,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 969EE93254A04D409B992E7D64DBE1F6 Ref B: BN1AA2051014019 Ref C: 2026-04-09T18:47:05Z' + - 'Ref A: B067705ABF6B44F4925AC45D1AC1CC49 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:54:41Z' status: code: 200 message: OK @@ -760,7 +891,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -768,23 +899,24 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1681' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:07 GMT + - Mon, 14 Sep 2026 23:54:41 GMT expires: - '-1' pragma: @@ -796,9 +928,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 96153C972B9A4EE6AA1240D3C76A7F2E Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:47:06Z' + - 'Ref A: AED3F702BDAF49E79099DF8773613DDB Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:54:41Z' status: code: 200 message: OK @@ -808,7 +940,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -818,15 +950,16 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000002","passwords":[{"name":"password","value":"EA2EgihsSDWIwYyA4fjweCocAvq4T9h5FCkCDz6xZf5npd3PttL4JQQJ99CIACYeBjFEqg7NAAACAZCRIHDM"},{"name":"password2","value":"2dVinKe6DygBJTYrmNHaepTxGlPaKXRt4Pt5mQRKkHcvI7AVjfB5JQQJ99CIACYeBjFEqg7NAAACAZCRG3ZB"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -834,7 +967,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:09 GMT + - Mon, 14 Sep 2026 23:54:42 GMT expires: - '-1' pragma: @@ -846,13 +979,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/d003e1a0-c5c1-4722-857f-15ca515817b0 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/0d1f539a-c503-415a-9834-2175a59812ed x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 1D7D7F7E39F4420B958C04A12856D9FF Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:47:09Z' + - 'Ref A: 7DDC71F8F34D4DDFAFF7D30420A96853 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:54:42Z' status: code: 200 message: OK @@ -862,7 +995,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -872,313 +1005,389 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:11 GMT + - Mon, 14 Sep 2026 23:54:42 GMT expires: - '-1' pragma: @@ -1190,9 +1399,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8717E93CE85241DD8621CED1BF48EFBB Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:11Z' + - 'Ref A: D900DF7CCC1B4B06A03A278B5D56F0B3 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:54:43Z' status: code: 200 message: OK @@ -1202,7 +1411,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1212,27 +1421,28 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '1779' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:13 GMT + - Mon, 14 Sep 2026 23:54:44 GMT expires: - '-1' pragma: @@ -1246,9 +1456,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: EA334DE36513489BB40E1955127D65C6 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:47:13Z' + - 'Ref A: B2951B88B3FE4D5B89E1ADFA5BCE89E1 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:54:43Z' x-powered-by: - ASP.NET status: @@ -1260,7 +1470,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1270,313 +1480,389 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:14 GMT + - Mon, 14 Sep 2026 23:54:44 GMT expires: - '-1' pragma: @@ -1588,9 +1874,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A33AF7EBE16C435D8B369243CC412549 Ref B: BN1AA2051012037 Ref C: 2026-04-09T18:47:15Z' + - 'Ref A: D5B0DB44B23643868A411667CDB53250 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:54:44Z' status: code: 200 message: OK @@ -1598,7 +1884,7 @@ interactions: body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000002azurecrio-443-acr000002", "value": - "***"}], + "EA2EgihsSDWIwYyA4fjweCocAvq4T9h5FCkCDz6xZf5npd3PttL4JQQJ99CIACYeBjFEqg7NAAACAZCRIHDM"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1612,7 +1898,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1626,30 +1912,31 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:45.1483249Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:45.1483249Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 cache-control: - no-cache content-length: - - '6762' + - '6781' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:18 GMT + - Mon, 14 Sep 2026 23:54:47 GMT expires: - '-1' pragma: @@ -1663,11 +1950,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/f9b94549-f461-470a-8227-dd57ca7699da + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/5a9560c2-0b41-4b59-9165-6baf4d690cad x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 093094C3F4DE41009F580DD914A369BF Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:16Z' + - 'Ref A: F2C57E20B2AD4AAA97F5443CD88E3D5F Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:54:44Z' x-powered-by: - ASP.NET status: @@ -1679,7 +1966,67 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd + CommandName: + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --environment --registry-server --registry-username --registry-password + --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count + --cron-expression + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04","name":"1462b6f5-42f3-4c6a-9e05-88241d8aea04","status":"InProgress","startTime":"2026-09-14T23:54:45.4292916"}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, + 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:54:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/94cb0411-c22a-4b1c-a0a5-27ac385ef64c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8DC3CBA8D67E477AA657F7B4303E842E Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:54:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1689,18 +2036,19 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"InProgress","startTime":"2026-04-09T18:47:17.6055813"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04","name":"1462b6f5-42f3-4c6a-9e05-88241d8aea04","status":"InProgress","startTime":"2026-09-14T23:54:45.4292916"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1708,7 +2056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:20 GMT + - Mon, 14 Sep 2026 23:54:49 GMT expires: - '-1' pragma: @@ -1722,11 +2070,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d5d49e6c-c6e9-498b-b9c3-a63ec8315ba1 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e90998cd-64e6-4fe9-81fd-2feb79633320 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9AE9F17A837D4A7593DAF12327BDDE84 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:47:20Z' + - 'Ref A: B0DFEB947B004C99AF9824964FC18858 Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:54:50Z' x-powered-by: - ASP.NET status: @@ -1738,7 +2086,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1748,18 +2096,19 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"Succeeded","startTime":"2026-04-09T18:47:17.6055813"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04","name":"1462b6f5-42f3-4c6a-9e05-88241d8aea04","status":"Succeeded","startTime":"2026-09-14T23:54:45.4292916"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1767,7 +2116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:23 GMT + - Mon, 14 Sep 2026 23:54:52 GMT expires: - '-1' pragma: @@ -1781,11 +2130,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/88c578ab-d53d-490e-8b5a-1d32ef22dd93 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/286088b0-b5c5-4b7d-8083-dc404d687251 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 7335F136400F487CA6BADB27B36308E4 Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:24Z' + - 'Ref A: 3EB4AAAE80484F328537830102704EDB Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:54:52Z' x-powered-by: - ASP.NET status: @@ -1797,7 +2146,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1807,28 +2156,29 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:45.1483249","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:45.1483249"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6759' + - '6814' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:26 GMT + - Mon, 14 Sep 2026 23:54:53 GMT expires: - '-1' pragma: @@ -1842,9 +2192,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: FFB7195E58DE4B80B3CA6B6CF47D2401 Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:25Z' + - 'Ref A: D7187DC6DDD5494185D4AF0D131A57FF Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:54:53Z' x-powered-by: - ASP.NET status: @@ -1856,7 +2206,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job show Connection: @@ -1864,313 +2214,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:27 GMT + - Mon, 14 Sep 2026 23:54:53 GMT expires: - '-1' pragma: @@ -2182,9 +2608,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 966F1477B51A42D4B7DDEE67DB90ADCF Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:47:28Z' + - 'Ref A: DEDE6580AB474A03A679E21B05BE5F01 Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:54:53Z' status: code: 200 message: OK @@ -2194,7 +2620,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job show Connection: @@ -2202,28 +2628,29 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:45.1483249","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:45.1483249"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6759' + - '6814' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:47:29 GMT + - Mon, 14 Sep 2026 23:54:55 GMT expires: - '-1' pragma: @@ -2237,9 +2664,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 16CBA3CFCE244C7492EB31B6B5F5D4B9 Ref B: BN1AA2051014031 Ref C: 2026-04-09T18:47:29Z' + - 'Ref A: 198F9E82522346B69C35AC3574B8CDD1 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:54:54Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml index 4ca8e0e1aaa..ae42c324861 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -13,313 +13,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:21 GMT + - Mon, 14 Sep 2026 23:54:58 GMT expires: - '-1' pragma: @@ -331,9 +407,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: D79E4ABE17ED479DA18AB68266456F42 Ref B: BN1AA2051014035 Ref C: 2026-04-09T18:39:21Z' + - 'Ref A: 649EA6A3C1E2496897CBF857B3D39D59 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:54:58Z' status: code: 200 message: OK @@ -343,7 +419,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -351,27 +427,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '1779' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:21 GMT + - Mon, 14 Sep 2026 23:54:58 GMT expires: - '-1' pragma: @@ -385,9 +462,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 100F81752CDD43F783029C74CAC1807E Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:22Z' + - 'Ref A: 433325E3DE894E86A087978C8580D0B0 Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:54:58Z' x-powered-by: - ASP.NET status: @@ -400,7 +477,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -412,23 +489,24 @@ interactions: ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1592' + - '1681' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:32 GMT + - Mon, 14 Sep 2026 23:55:06 GMT expires: - '-1' pragma: @@ -440,13 +518,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/e7859cc0-887c-46bc-8d6b-42554cb1b658 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/2fcb48bb-b699-42c7-b99d-374396be5968 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '199' x-msedge-ref: - - 'Ref A: ABB76CC525DC4ECC89A1B310523E84AB Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:39:24Z' + - 'Ref A: BE25002873C144C88C6F632EF97A2CCF Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:54:58Z' status: code: 200 message: OK @@ -456,7 +534,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -464,22 +542,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7xeqdiflrg4yjpvzinii67qstso4yykocskggsidtovzk72mvy56dwcxpd2za6d3k/providers/Microsoft.ContainerRegistry/registries/acr2busfcgnuii6m5h6ait3m","name":"acr2busfcgnuii6m5h6ait3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909Z"}}]}' headers: cache-control: - no-cache content-length: - - '6363' + - '1230' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:33 GMT + - Mon, 14 Sep 2026 23:55:07 GMT expires: - '-1' pragma: @@ -491,9 +569,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 52E5459154AD422EB7322ADCA46053CC Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:34Z' + - 'Ref A: 333376D60AE043D086032FD0DC9C491F Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:55:06Z' status: code: 200 message: OK @@ -503,7 +581,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -511,23 +589,24 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1592' + - '1681' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:36 GMT + - Mon, 14 Sep 2026 23:55:07 GMT expires: - '-1' pragma: @@ -539,9 +618,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 055CD56627984DFE806E3C4F204F0F91 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:39:35Z' + - 'Ref A: 7C1325705FAB497CA1FF4DA234DF5686 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:55:07Z' status: code: 200 message: OK @@ -551,7 +630,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -559,22 +638,24 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: + api-supported-versions: + - 2026-09-01-preview cache-control: - no-cache content-length: - - '19083' + - '1693' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:38 GMT + - Mon, 14 Sep 2026 23:55:08 GMT expires: - '-1' pragma: @@ -587,14 +668,10 @@ interactions: - nosniff x-ms-original-request-ids: - '' - - '' - - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A0C1E174972742D7B0110AD636B9F7A0 Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:38Z' + - 'Ref A: DFC0ED4B95EB44CF9F97AA6DE13258BF Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:55:08Z' status: code: 200 message: OK @@ -605,7 +682,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -617,9 +694,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -629,17 +707,18 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Apr 2026 18:39:39 GMT + - Mon, 14 Sep 2026 23:55:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269094188085&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=cEUgRlHVvMIM770-xBZu9kIKIshU5V7j_bur-_o6C_q0gqFlKoWoR_Lx2hfA1XQJu0mbWsiF9xrs7pnp1YoQljnSY7D-l1n_DAhuLLGgAw60saErVvKaoYNEfepkcM79Ml7EevsZ2rjm7UYbcMBny1qR9jykfK3PMKO9AFoYMTGzqislVhxasYlqgc4IVd074A0hOeE3OvOs9qSyowvQB00E7q7qSBPsMbrZr_x3digpM9hOnwkCJdU9lNTW1uqtkLIVfqliVKNX9LXWp3O8tXgTDj72cAYseGgZbI0VT6os9nTV9iA4BVbqPnvyu1Y7q2JcH58GnFXiEBN2x2NRwg&h=poNXc29O7Xmrk-pIJdwCGKxtJzsBhlScdTsQ2IzGjVg pragma: - no-cache strict-transport-security: @@ -649,13 +728,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d6ec942e-9589-4198-84e7-eb5d4c31a39c + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0f05795c-1814-4960-b12f-1b3925db276d x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 208C27AFA6854D4BA96E4E22B660581C Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:39Z' + - 'Ref A: BE738E297A5344D3BC46B15AE0741473 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:55:08Z' status: code: 202 message: Accepted @@ -665,7 +744,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -673,9 +752,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269094188085&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=cEUgRlHVvMIM770-xBZu9kIKIshU5V7j_bur-_o6C_q0gqFlKoWoR_Lx2hfA1XQJu0mbWsiF9xrs7pnp1YoQljnSY7D-l1n_DAhuLLGgAw60saErVvKaoYNEfepkcM79Ml7EevsZ2rjm7UYbcMBny1qR9jykfK3PMKO9AFoYMTGzqislVhxasYlqgc4IVd074A0hOeE3OvOs9qSyowvQB00E7q7qSBPsMbrZr_x3digpM9hOnwkCJdU9lNTW1uqtkLIVfqliVKNX9LXWp3O8tXgTDj72cAYseGgZbI0VT6os9nTV9iA4BVbqPnvyu1Y7q2JcH58GnFXiEBN2x2NRwg&h=poNXc29O7Xmrk-pIJdwCGKxtJzsBhlScdTsQ2IzGjVg response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -687,11 +767,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:41 GMT + - Mon, 14 Sep 2026 23:55:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269099351336&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=oU9PA_7DCX4Xx_PE1MeE7qeX3I5VrKd_1Lz_N34xOQND6zw0hZXKCN6uYebFS8ICaOvlYp6RFhMQvILB94dzULj8pzRhEkodZXuta0nJ0Spuj3WIT0fQt_R_4IYcJpImpbodbU4VbSpvpXsV1wRcJVj8XWgIjX2wNIdo0ZMhgzY2WhO08ooS5-M3pSmEYb0p_-H56-bL_CdgFRdWgqa9BHBH81A_ZF7HeStRj1a8I5Z1mF6_m8hr4EuqiqjZkPEP2539ewcNc9NkKsnENLuFz8gzQpDR80fGe-EH1UqfXnT2Jlo10y-_GvZqleCuGf4jMSL2rn5W8Pq6KkJgiJiuVg&h=gwZdJoGwO0qdYMqXanUr3NnH0mnej7qkQ4wsHsyQ594 pragma: - no-cache strict-transport-security: @@ -701,11 +781,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/55671bb4-e502-4109-b3a4-2d9d8a15f4a8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/93389441-b410-4918-a7a9-61fe8556eef1 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: FE9C3EF657EE4579AF7E2BCBFF379AA3 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:39:41Z' + - 'Ref A: 0C1452B2DB5742D6B01053C707789B79 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:55:09Z' status: code: 202 message: Accepted @@ -715,7 +795,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -723,9 +803,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269099351336&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=oU9PA_7DCX4Xx_PE1MeE7qeX3I5VrKd_1Lz_N34xOQND6zw0hZXKCN6uYebFS8ICaOvlYp6RFhMQvILB94dzULj8pzRhEkodZXuta0nJ0Spuj3WIT0fQt_R_4IYcJpImpbodbU4VbSpvpXsV1wRcJVj8XWgIjX2wNIdo0ZMhgzY2WhO08ooS5-M3pSmEYb0p_-H56-bL_CdgFRdWgqa9BHBH81A_ZF7HeStRj1a8I5Z1mF6_m8hr4EuqiqjZkPEP2539ewcNc9NkKsnENLuFz8gzQpDR80fGe-EH1UqfXnT2Jlo10y-_GvZqleCuGf4jMSL2rn5W8Pq6KkJgiJiuVg&h=gwZdJoGwO0qdYMqXanUr3NnH0mnej7qkQ4wsHsyQ594 response: body: string: '{"status":"Succeeded"}' @@ -737,7 +818,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:52 GMT + - Mon, 14 Sep 2026 23:55:20 GMT expires: - '-1' pragma: @@ -749,11 +830,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/bd6cccd9-9a0a-483d-9b5d-e1112d3434d6 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e0d181a9-1760-435a-abde-5f8122cd48b8 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 71803075B0394E0696867BAEF523461C Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:52Z' + - 'Ref A: FD6BA1BDA02147F3B88D6F4D5B87C4A4 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:55:20Z' status: code: 200 message: OK @@ -763,7 +844,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -772,313 +853,389 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:53 GMT + - Mon, 14 Sep 2026 23:55:20 GMT expires: - '-1' pragma: @@ -1090,9 +1247,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 86D2A59EF3D04A31B46BF4B61E5D4F11 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:39:54Z' + - 'Ref A: 80F432B564234FE892B08E253ACBECF4 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:55:21Z' status: code: 200 message: OK @@ -1102,7 +1259,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1111,27 +1268,28 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '1779' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:54 GMT + - Mon, 14 Sep 2026 23:55:20 GMT expires: - '-1' pragma: @@ -1145,9 +1303,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4C59E4AF517E4ACEBFBE7C2896A307BB Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:55Z' + - 'Ref A: 701F5504157643C59348DE3942247E9F Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:55:21Z' x-powered-by: - ASP.NET status: @@ -1159,7 +1317,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1168,313 +1326,389 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:56 GMT + - Mon, 14 Sep 2026 23:55:21 GMT expires: - '-1' pragma: @@ -1486,9 +1720,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: AA230AA512F94FCF833078E7FF1AD076 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:39:56Z' + - 'Ref A: EA50FCF5F1774766A4CD0E0789BFD794 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:55:21Z' status: code: 200 message: OK @@ -1498,7 +1732,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1507,22 +1741,22 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7xeqdiflrg4yjpvzinii67qstso4yykocskggsidtovzk72mvy56dwcxpd2za6d3k/providers/Microsoft.ContainerRegistry/registries/acr2busfcgnuii6m5h6ait3m","name":"acr2busfcgnuii6m5h6ait3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909Z"}}]}' headers: cache-control: - no-cache content-length: - - '6363' + - '1230' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:57 GMT + - Mon, 14 Sep 2026 23:55:22 GMT expires: - '-1' pragma: @@ -1534,9 +1768,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9AC1E5DF27A84B179AEEA970BD938B7C Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:57Z' + - 'Ref A: 245DA05D8F4148D98C50494DA87B23F3 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:55:22Z' status: code: 200 message: OK @@ -1546,7 +1780,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1555,23 +1789,24 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1592' + - '1681' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:39:59 GMT + - Mon, 14 Sep 2026 23:55:22 GMT expires: - '-1' pragma: @@ -1583,9 +1818,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8E88063BCB744109834A12B9738E1D0B Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:59Z' + - 'Ref A: 269058AC198C4E7090C046FD2B4EE93F Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:55:22Z' status: code: 200 message: OK @@ -1595,7 +1830,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1606,15 +1841,16 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"DBLpbniaYkfY0jp9PSuY8q9LOr9h3rSDUPUsj89kJSIoWwQwsX9vJQQJ99CIACYeBjFEqg7NAAACAZCRv24T"},{"name":"password2","value":"Evhbzq9va6SZQpKYMoSnMx9WGegvQx4AEV4QCANdJEKuxUTOVb7ZJQQJ99CIACYeBjFEqg7NAAACAZCRriYb"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -1622,7 +1858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:01 GMT + - Mon, 14 Sep 2026 23:55:24 GMT expires: - '-1' pragma: @@ -1634,13 +1870,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3218cb1b-7714-43c3-911e-77df9149fcdd + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/2b1b7f50-3e72-467b-854f-34dae89d76e8 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 700ADF7EE3E34DB49784D78D4BA76AA1 Ref B: BN1AA2051014025 Ref C: 2026-04-09T18:40:01Z' + - 'Ref A: 7DBDBF0EF6CF4ABC84AB0CA4EAE2F33D Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:55:23Z' status: code: 200 message: OK @@ -1648,7 +1884,7 @@ interactions: body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "***"}], + "DBLpbniaYkfY0jp9PSuY8q9LOr9h3rSDUPUsj89kJSIoWwQwsX9vJQQJ99CIACYeBjFEqg7NAAACAZCRv24T"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1662,7 +1898,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1675,30 +1911,31 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:25.1647634Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:25.1647634Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I cache-control: - no-cache content-length: - - '6710' + - '6801' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:05 GMT + - Mon, 14 Sep 2026 23:55:25 GMT expires: - '-1' pragma: @@ -1712,11 +1949,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2b2af31d-3904-49aa-8c31-cbdd5ce263b9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/496ed975-9453-4783-be23-b94ce64eda9e x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: E0FCBF5CE2E84377A600596BCE208499 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:40:02Z' + - 'Ref A: 174F2D4A0CEF46A09587FA3E9638FBCA Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:55:24Z' x-powered-by: - ASP.NET status: @@ -1728,7 +1965,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1737,18 +1974,19 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007","name":"8ed449f3-e362-459d-ac95-4b27fdd99007","status":"InProgress","startTime":"2026-09-14T23:55:25.4447406"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1756,7 +1994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:06 GMT + - Mon, 14 Sep 2026 23:55:26 GMT expires: - '-1' pragma: @@ -1770,11 +2008,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2f5ee287-de12-4045-a480-6ddd550c16fa + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2091372a-0daa-41cf-87bf-090060f0680c x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 0280B490106341D88CFBEB937445EAE3 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:40:06Z' + - 'Ref A: 8A4E89CA4D9E47158ADD01F4BD73B96A Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:55:27Z' x-powered-by: - ASP.NET status: @@ -1786,7 +2024,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1795,18 +2033,19 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007","name":"8ed449f3-e362-459d-ac95-4b27fdd99007","status":"InProgress","startTime":"2026-09-14T23:55:25.4447406"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1814,7 +2053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:09 GMT + - Mon, 14 Sep 2026 23:55:29 GMT expires: - '-1' pragma: @@ -1828,11 +2067,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/cae3d9c2-99d2-443f-a256-0d45a1a811d4 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0e97ff60-e4c0-446f-886e-2a1162ef5751 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 425F1797C326411098C34645F653B0CD Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:40:10Z' + - 'Ref A: CEA052AB1C874477A51095ABE8308554 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:55:29Z' x-powered-by: - ASP.NET status: @@ -1844,7 +2083,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1853,18 +2092,19 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"Succeeded","startTime":"2026-04-09T18:40:03.8491944"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007","name":"8ed449f3-e362-459d-ac95-4b27fdd99007","status":"Succeeded","startTime":"2026-09-14T23:55:25.4447406"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1872,7 +2112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:12 GMT + - Mon, 14 Sep 2026 23:55:32 GMT expires: - '-1' pragma: @@ -1886,11 +2126,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7217f9cb-3ece-440a-b441-6a09ebd2c092 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7e9e7802-789a-44e6-9eec-44cd9f62e74e x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 04716B3FF17C4B8781604E4B9184B5A5 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:13Z' + - 'Ref A: 290A1E1613D04B3AAA95280C0D2EC6CB Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:55:32Z' x-powered-by: - ASP.NET status: @@ -1902,7 +2142,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1911,28 +2151,29 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:25.1647634","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:25.1647634"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6743' + - '6798' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:14 GMT + - Mon, 14 Sep 2026 23:55:32 GMT expires: - '-1' pragma: @@ -1946,9 +2187,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: B84F3253837E4C72860E5BC974F43DC7 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:14Z' + - 'Ref A: 7F3C1344551D432A9AC71C03064F11FB Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:55:32Z' x-powered-by: - ASP.NET status: @@ -1960,7 +2201,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job show Connection: @@ -1968,313 +2209,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:16 GMT + - Mon, 14 Sep 2026 23:55:32 GMT expires: - '-1' pragma: @@ -2286,9 +2603,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 18DEF2BCDF744F248D088A28AE173CD5 Ref B: BN1AA2051015051 Ref C: 2026-04-09T18:40:16Z' + - 'Ref A: 1BEA096E1DAF44B89329438A0E8B825D Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:55:33Z' status: code: 200 message: OK @@ -2298,7 +2615,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job show Connection: @@ -2306,28 +2623,29 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:25.1647634","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:25.1647634"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '6743' + - '6798' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:40:17 GMT + - Mon, 14 Sep 2026 23:55:34 GMT expires: - '-1' pragma: @@ -2341,9 +2659,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 5CE77785D034439397FAC293550F7FEC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:40:17Z' + - 'Ref A: D09DAF97EEC046A3BA56AD50CADEA559 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:55:33Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml index 73325194a10..583b6834f1b 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -13,313 +13,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:46 GMT + - Mon, 14 Sep 2026 23:38:33 GMT expires: - '-1' pragma: @@ -331,9 +407,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 935694BF77FE4F489DA734B06EAD4422 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:32:46Z' + - 'Ref A: 8743E2F74A1F4D2D9412312AE8E14B12 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:38:34Z' status: code: 200 message: OK @@ -343,7 +419,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -351,84 +427,74 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''client.env_rg_eastus'' could not be found."}}' headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '1721' + - '112' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:47 GMT + - Mon, 14 Sep 2026 23:38:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + x-ms-failure-cause: + - gateway x-msedge-ref: - - 'Ref A: 5DF609807C014522A61BCFAF26C14FB6 Ref B: BN1AA2051015021 Ref C: 2026-04-09T18:32:47Z' - x-powered-by: - - ASP.NET + - 'Ref A: D22FC0E2596F4A1994128134CDF0E4E8 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:38:34Z' status: - code: 200 - message: OK + code: 404 + message: Not Found - request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": - true}}' + body: '{"location": "eastus"}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - - acr create + - group create Connection: - keep-alive Content-Length: - - '90' + - '22' Content-Type: - application/json ParameterSetName: - - --sku -n -g --admin-enabled + - -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/client.env_rg_eastus?api-version=2024-11-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus","name":"client.env_rg_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}}' headers: - api-supported-versions: - - 2026-01-01-preview cache-control: - no-cache content-length: - - '1595' + - '237' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:32:57 GMT + - Mon, 14 Sep 2026 23:38:37 GMT expires: - '-1' pragma: @@ -439,109 +505,17258 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/ab59e23b-3481-45b7-be3c-a155148dd568 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' - x-msedge-ref: - - 'Ref A: 9D22F35D42194E88980BD08345D78EF0 Ref B: BN1AA2051012011 Ref C: 2026-04-09T18:32:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6365' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 09 Apr 2026 18:32:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '199' x-msedge-ref: - - 'Ref A: C406F4E866A442E486CBEFE2C002240E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:32:59Z' + - 'Ref A: CCAFB9A6FE404515A17D645B26CD1CAE Ref B: BN1AA2051015045 Ref C: 2026-09-14T23:38:35Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - - acr import + - containerapp env create Connection: - keep-alive ParameterSetName: - - -n --source + - -g -n --logs-destination User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2026-01-01-preview - cache-control: - - no-cache - content-length: - - '1595' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 09 Apr 2026 18:32:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 994E1C1E580F470B9C737B9BDFD39866 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:38:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C0782C5CB0EA4E8199DECF503E890C72 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:38:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F8661F0B0C8740D093DA18645A982533 Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:38:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B08DB1F88DBB45E3932B52ED11B45330 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:38:39Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/managedEnvironments/env-eastus'' + under resource group ''client.env_rg_eastus'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '236' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: CE177108198A49CE8B8079E4CF2C9976 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:38:39Z' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": null, + "logAnalyticsConfiguration": null}, "customDomainConfiguration": null, "workloadProfiles": + [{"workloadProfileType": "Consumption", "Name": "Consumption"}], "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '339' + Content-Type: + - application/json + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":null},"daprConfiguration":{"version":null},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + cache-control: + - no-cache + content-length: + - '1734' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0ea039e6-6de3-4fd7-bfe4-d825ae5bd4f3 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-msedge-ref: + - 'Ref A: F7879FA325D648299E8548DD8A3E1EE0 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:38:39Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/dac9e185-c89c-471f-b9dc-45fb5b870158 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6C4A595F616646E98FCCCCE84FD27B6C Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:38:42Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/084a5efd-6566-4e7b-8ac8-4acfc425f568 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C683AE0740CE4C079D20238BD496BD4B Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:38:44Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/63145dff-2f57-4c1f-b3c3-a6b939d990ec + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: FA647CB479064A81A2CD1ABAD608CAC6 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:38:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/33fdbf38-f3a0-4f5c-b957-f58c875bb563 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: AEA494D0EE344961889555B51464746E Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:38:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/54afd7e0-863c-4480-bd84-600272e29e11 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: AB6BA69BC24B49F1B0ABC2B6E5B3E6ED Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:38:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/737a38f2-c8ef-4795-b89e-53cf9f349312 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C8C5A99BCD2643ACA27C0122B3AB5E4C Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:38:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/52d17a97-90b4-4709-ad3f-dd829894f498 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E31CC1D117B54726BD77103A88D944A1 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:38:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/07a42578-ceca-4473-9648-c25c3a30bca0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F00CA577986F4A29A4FBEB8C8A2B1428 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:39:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/98ad3fe0-b7ee-4025-b3c1-5eb6263d97c1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1A45B17BC9574F5C9CED228D4701DC74 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:39:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/afcbf0d6-816f-40d9-aa22-69e1a0ab04eb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C16644D798EC48DCB3A45C33B54C2106 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:39:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2ce05576-8107-4f9e-9e75-6a015d1beb4a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 80C7295F98CA4641A35B894874B4A6BD Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:39:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e5b29cc6-2590-4b67-ad0c-0fc5fd728e26 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A74ABA84F3A14303AF708B5A2B5777D5 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:39:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9c07897a-2bf5-44f4-8933-23bb2be5ad5e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4FF5FA7F95A840ED8C5F6FE5E55893CB Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:39:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/81f2f965-f2a9-4a97-9818-aa66694ccbc9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4BD0D7D5B3B349BEBD4F028FB00BCC7B Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:39:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2768b83d-f215-48dd-8881-439323ba54b4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A2D4D38852B147D8803484B7EDECD72F Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:39:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3833764d-f011-47cc-9fcb-0021083c88d7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6B66AA7E923C46229F14FBA410DCE19E Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:39:21Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/58a4c70f-2e3d-4cf7-a0c5-ba0c1b2786da + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6A7F75F6D6154F659D2DF39EE514C27F Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:39:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/057a68f4-7898-4c8e-b668-f03cb8e7e42c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1B59D91DFC604EB6B7CB9A979BBBD388 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:39:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0a5f7de2-0be0-4aea-9505-0ba90510908e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9CB3E710A70A4660A5B16A605B12DA3C Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:39:28Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/168e4e06-3922-433d-9377-402b7e867f32 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 161AE7BFC0C246EBB87A4618311FCECA Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:39:31Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/84ce01c8-6156-484a-b5f6-da5a2b0703fe + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3B129429B8544A6489B436A7241FE5CD Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:39:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ecb1b19c-2a88-4fef-98aa-93234c98044b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B065C0DA52BA4247B94E46F922F1DA10 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:39:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/17d09b33-8ad8-4d77-856a-36e46866ebad + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5ED7706022B447EDAE89D2816C05C364 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:39:38Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/91cc4934-23b4-4745-bd1d-1ff9f7c8f10d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4459FA4297B9419E9032A06E3DF69103 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:39:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c21d952a-22e9-496f-af74-19e9c2dc5c31 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: CC7126981B5F41078F06952EA9F198B2 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:39:44Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/38253584-6323-46d9-99ea-f2efeef23b88 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: CF1DC41381A14F1090A1B776F1E68DA5 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:39:46Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/1371f6c8-bdff-4ca6-8322-f1f72ab57580 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C619B3DF12C74D87A0F4B0533E96298E Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:39:49Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3e731374-a4d2-4efe-9281-8514f05f1c73 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 72753CF6DF5F4802B1452912E781EA21 Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:39:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6a0eebf4-4152-46f6-a937-103169cdab4a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4DAFC11D5AF24086A9BAE98016CC406A Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:39:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/97bf5722-71b0-47cd-8e7b-0910d71ff0ae + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E39E7802BFA94DA590213D20F8A85B78 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:39:56Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:39:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3a510b21-3cb9-4c23-ae56-3e759b8f4912 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 86B141FD7E474561BF162B16945F04A4 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:39:59Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1eba1cbe-c108-4c9e-a482-f625985e0c62 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A3DF988631B54DE3B0D9F867C00AC3FB Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:40:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e57bfeb5-3b17-402f-972f-7aa6c715123a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BF65CA14F5024B90AF74A9A61573140C Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:40:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3f9d55ff-a4b8-4f3e-a9e2-21eb3bd6e1b6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BAF1A19FDEA644B094A7B0180BD891A2 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:40:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a871ad35-e2fa-4911-bd73-3dfb2458de47 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9BFCD6F55BAC4E448EF52C9C1157F2B8 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:40:09Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f5008a3a-80d9-41b4-80a7-73d1803cb969 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 22A365A880F9423DA5608EADF9257B77 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:40:11Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/1d2ec76b-c11b-498f-9e64-4b08306d76b1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9EC36279012147C6B6315E24F88E2A47 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:40:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e0bd4902-d62d-4db4-b9c4-b3fe21ffb0cb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 66D09C22A4634611800CC91CFF7B08F0 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:40:17Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e4765c20-d827-4d3b-9446-22c73a7b93f3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 11CACD82330247BFB511984C1FEB48EE Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:40:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/36540a3d-c579-4c01-bae2-a736a2c3427d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9D4B76CBD712415781DB678C7D1CA07A Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:40:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f5e337bd-6f87-4c07-80a7-e8ec7e590a99 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E49C73653A364AEABF08C688839D7AC4 Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:40:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d2abb396-f6f6-45af-8268-4289e80d249d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 242CD080A8D14F8F91D0D5E27DB4F64C Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:40:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/277b64a8-04ec-41da-9dc5-c9932b197824 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DC44D1C7E9B1450A9CF346847A2F7DE5 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:40:29Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3058ecc2-9d98-4091-b605-bc06a286e784 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BC54C98EDBAD4EB3834F73DB298EE851 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:40:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/54e5299d-bb66-4a94-a75f-ca0c1853fd7f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A57B9890EEAA46A7B289D11A01889265 Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:40:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/dab8c254-a7d2-4588-b846-291453c44875 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 17776453022B40DDBCE6CA752AD24A99 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:40:37Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/369c56d9-5cc8-4bb5-b0ff-de1130c2f364 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 902960AF39D246C6AD0344581B6A1A7A Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:40:39Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3f38e7f6-df37-4a4f-b13e-23931c183515 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2C9F656A0EEA4BB6B4E0A75EA816A339 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:40:42Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/61faf995-e088-41a9-a61c-554c23c30f41 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 97A9BBDDFA7F49ABB8522A28BE080CB1 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:40:45Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/60566ec4-12b5-48a1-adf7-1035f19e0dcb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 50F39EB589EB49A3AD76FC6D77CE3C49 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:40:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0caa0326-19ff-45c7-b7bc-3c095be3470a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BFCCF3FB0BFB45848B6E8B84D2E3D7F6 Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:40:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/eee1e42f-57e0-4cc7-9e67-a5df7611b3c9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3F81C1BC8A5C4634A77D23CC3AB22268 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:40:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/299aebe1-4a24-4572-8a93-fff0336c9175 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 572E533C4BB743159E5B685EC4E57CD5 Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:40:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:40:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b8479b64-fade-4328-bec1-a860f55c47a6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 62AF20F9E27B4F67A2D4697559006294 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:40:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/966a0f66-f9b7-49ea-ba31-c576dbb58a31 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 41A8354AA865416B9621672E74A80D1E Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:41:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/17674582-693b-41d9-8f50-5dddedaa4694 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D9FCE073F4114D549E2D08E0C942D9AB Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:41:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/577c3d4d-b487-4310-b954-c5782e0d1df0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1CC0F2A82D8D4BF798F2BC0256C7B087 Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:41:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1c322e1d-ddd9-437f-bba6-062017b5f264 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D2D0DFD0492B4842B66368A0564C30A1 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:41:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9a646cb2-04b8-410d-8e0c-54913d8513a5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2A7A2EAC510C4223BC036BEE176C2648 Ref B: BN1AA2051015045 Ref C: 2026-09-14T23:41:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9d286dc9-1952-4e13-a168-4fdc02c9ee45 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8218BF3EE1244FDDB484F4500E18132D Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:41:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3912de73-0f9e-4bc1-ab77-2fecaa9c859a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D07219F7521A445F8D824C1ED353E6E8 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:41:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0088bc7d-8d99-4f94-8277-c8169c7121a1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8AD283F2F9FF4E72AD2B8FBFAC6CBE67 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:41:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f8d8eaa6-1c19-4bc6-ae42-845c2f6fd810 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EFE932685880486987B0F99D5CDAA022 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:41:21Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4667ff4a-7068-4b02-a010-2024bd87ab65 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 62D6CFED635B4DD8B494E6D0E5AF2846 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:41:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/fb84538c-750c-432d-bc6f-8c91310221e0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5BBE3DD54C6040A685D61622257ED3AF Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:41:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/acb9e9a6-3401-4ba8-a75f-f3ae4618c9d5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8ABC2423D0FC4370889DFBDC9F0DC155 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:41:29Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5ebcc8d4-cec7-4619-8a12-23f6bb2a9a6f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 068DB6DD669F4DDEBC95A0D7BB170394 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:41:31Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c85d26dc-ad54-4ff2-b22e-bde3aaea6762 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BC7E36A4355B481085B486348B8C45AC Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:41:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0b99bbdd-bfa7-451a-99a0-9f439479a757 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6ADCBE75C1BF42D68E1C45DE5CAE9151 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:41:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4dbb1053-7784-4309-be2e-10d4d86316b3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: AB4EBCA6B6E947189CB304F66248999A Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:41:39Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4469d6f3-43c6-4e04-b80e-fc774e142b98 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5EC456A163424AE7B21C1B395FF4F848 Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:41:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/51e1cc65-104a-4bb1-bbf3-440b463682fd + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 390E117C83864974A3D2053F49348C15 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:41:44Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/98c32223-6ae8-42ec-aec0-c52bf163a489 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 41963AA975434FF1A26F1658EE5160B0 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:41:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d1dfa3c5-6b66-4a1b-945a-6ebe1b03bab4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D5D0A23BE5D644A599A2C02524537461 Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:41:49Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/63a1e58e-6c68-4bd3-a296-bb72eae726d1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7DD3973153B14835A48BED79B5DE96C0 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:41:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c1acf420-809c-4f63-bd87-81038031f1d1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8A3D3C9B42C64375A6585C5E4C83D32B Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:41:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e1b4186d-8d79-46d1-ac99-769ef1f3e3f0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3DAA44C828554090BFC9BC298387E47A Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:41:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:41:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a0be204d-12fb-4298-ad6a-2c81bcb4e7f1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1B08A0472EE649D08DDE617D2CF2E4B7 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:41:59Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d19c5012-abf1-48c7-aa4c-03a88c94a4b3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 806F61F547E14D46A51CDDD4F99A815F Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:42:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8c55887f-98e7-440e-b96e-a4e1a46215e7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E5BC2F3C0DDA441B83227EA8DBAA17C2 Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:42:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d2a4b049-c8c5-4307-b431-69f063bf2850 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 27517A97605F4EDC9FD82EFDE8E0E4E1 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:42:07Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/18d12c8a-ef76-4595-b01c-39e1216b87a5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 87BD293FDAD54F1B93EEC9ECE87D4C0B Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:42:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d9713f16-3f7d-4a30-b37f-dded2b8a48b1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BF89F577A90C4749925FE158A31611F6 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:42:12Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d38389d0-a420-4a16-bb9a-68b5b5c87fff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 58505F6EA2F74FCB8C64091796AE9769 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:42:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/690b2e39-df5b-432d-972d-d2d8e955a5d4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 22A98E1A9BF24EC893457EFB07D456EE Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:42:17Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/97b440db-9ae6-4eb0-a952-0f1ce7f3983b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 808A8001BE7A4B12B86AFD80814BA5BA Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:42:20Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/bb1f30fa-3fdd-40cf-b41f-6bf6af0769db + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7EFEFCF1F89447E3A00FEC164BBC05EA Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:42:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3aed6c6c-4167-4380-b825-9357c8fecc53 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 45AED6C511754C2684231AE233AC3B9A Ref B: BN1AA2051013031 Ref C: 2026-09-14T23:42:25Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0dbc848c-7c74-4baf-9e46-2fa12383541e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DF621EBFAEFC42C0B35A01576D95C9EB Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:42:28Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3addd9bd-a859-4f8e-acd0-4265c772c28a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BDFB5CCA2BDE4CBE90FED582186E9C06 Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:42:30Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1d891299-7c8c-4484-b16b-eea888e74e8e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D2159A3DEEAD48ADA5963A018C375F1D Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:42:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3c8fc75b-08b4-4dc2-8c8b-88d6f97a4bdc + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C9A13FD8E4204168A09A5C47D64079FC Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:42:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6e257b8a-1ee8-4b7b-8ba3-adc491ac42a9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E461F28B3501441A9BFC4F87A96339AE Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:42:38Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4ad46e90-1176-4293-9e35-fb6d35f84feb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E026FE3F7F78430FAF99FB725DDC0AA0 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:42:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/48dfac01-8926-4897-9c48-a80a67f3632b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F3E23CB5BC8341DC8356E5EA3599D112 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:42:43Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7863513a-d6a9-4e79-9426-367d65907b36 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A81EF4354C86404CA9F20660C3F0F793 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:42:46Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a1201d04-d14a-4d2a-a85d-ed40362f8449 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2DFD255A16C142BF8FEA1139BF71C601 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:42:49Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/80424f8b-0ca8-4385-8158-7b0ab03cef0d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8392F6C1F921456BBF68A91140EC5D27 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:42:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4fc7a745-201f-404f-a169-44b845adbeff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 262E0525DD864AF38077B885CB4BDE91 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:42:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a8fce480-224d-45ae-ba93-505bb30ace03 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 11F3C4C2F3D9451090016A4F46F522FF Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:42:56Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:42:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9f484da7-3b5b-4488-988a-20dbed112750 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: AFD1AC63157D4B94A46F9B93FAA6AF73 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:42:59Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0385bc4a-cfd7-47ce-b77f-6aaa88326c11 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B59236A6924D42939BBA334799CE7DB5 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:43:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/eb1370cd-9d4c-4d32-8a23-1470058a3f1c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D8E45EE2D711426A8751551576D0C56D Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:43:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c902eb94-b3f0-4502-ac53-3c13d406bbe0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C364B7D510514B1DB2F9A1D0A71AAB73 Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:43:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9ac858e5-8523-4b38-92a2-c47a0ee63506 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C3102409B09C4CC997492954122BD1A6 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:43:09Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5bfa31c9-241e-4cd2-b489-4fe124c46671 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B2F8AE9BFFCC47B6B313F91A7C206009 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:43:12Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a767fe84-f22a-4370-95fb-2f067bccaea2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7973320B525C42EF9C2E912E0A7A62D3 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:43:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ca833caa-7717-4ae7-aac0-6333d5b71d99 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 135CA2A0BC3F4F19B424890AB65315CB Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:43:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/361ef890-1c30-4fd4-b16b-459ac62f1d81 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4F8E0FB5CE194A5CA8500C8F7E802A30 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:43:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c8ce9226-76c4-4db1-b0b3-291077057025 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 222718E7630640A99D60FF272F70BD39 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:43:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d4547b3a-262e-46f7-9aec-20ea45e2cc99 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9A5DB7DC4F9E4425B4DFF0C3A4ACEFC2 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:43:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/af2a1f85-b504-498d-b2a1-75a64dcb3cf3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BB067046780B499EBA3C0D1B2375B1A6 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:43:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b8b99b52-8263-48b7-b2f6-c5b045c513d7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1172B79EDD374895B348DDDEFDCA14C7 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:43:30Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8e738a82-ec52-46da-80e0-4c60d45a2ce2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A233DA0FDDC24C208C1ED28C62D868D6 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:43:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3a451c26-9569-4a1f-8cb4-44485f45795d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C32715BFE9BB4D539E47C1AA77E9C988 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:43:35Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1dbf58cb-a34e-4809-82d2-4823999e9e45 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4AA90284B2BE49D980F630AACD90AB5C Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:43:37Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4e2fd147-a204-4159-8d7f-a211c2089ce6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8EEAF2334EE04D01953909C44D7F2BE7 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:43:40Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/547b5fec-1f33-41b4-ba25-64f84a0443d6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 305FCDB12BD34EB2885B143A25C9E092 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:43:43Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/26946918-b062-4d34-ac17-3bafd61fa7b6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0E8BEA0DB29C4967A0892FF68AB22BE0 Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:43:45Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5df92124-cfbd-4d2a-b82a-73120fbab7a5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A029C54968C145F38B46637D375430E9 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:43:48Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/bc721a6a-c2f2-4012-975c-6a18e078eb72 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0CC34E413C6A404C9B3D3121C8372CD2 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:43:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e8a79488-32c8-4a35-97fa-16a0e970421e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6FE5312579D448BB9C4A791546A3086B Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:43:53Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/93694691-0f11-4e95-b115-cf99be6dbe77 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DAB8B65AB5AA48EB8D3B34EC383C8D6A Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:43:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:43:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0794bb1d-110e-4330-b04e-7167d9567193 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B26AA218F1F64598B2F27142CA15C81D Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:43:58Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5d6e22b3-bce5-4c25-836c-eb47173e3a66 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 24AA672FBD5B48BC809CADB24AB4BDAA Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:44:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/075abf13-e1a4-4574-9594-ee6525b24e06 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2467C6DDDCC94CF1BB77A9290EFE418C Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:44:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/789fd557-33ca-42f3-a7a0-3e360e8b7e26 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 025AAC7D15CE435480A49638833CAC37 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:44:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7e56c507-d01d-4cc5-bba9-c7e9a1ba4839 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 81D8863B83DC477386785285B6448721 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:44:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d2f21cf3-6fe7-416b-8c01-d3393dfe9bc9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 84EDB54666394A96A6BEDC53161E9BCC Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:44:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2308c09d-5cea-4982-8b2a-76be2b1f6cdb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7473C86494C7443BA7557F17281F4434 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:44:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ec1422f0-2ec5-4cde-b8cf-036f46d95767 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E997206F0B374C80B82D651473119781 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:44:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/41a8dbdf-d2a5-4919-8681-a3396789f6ed + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 651591A2C4C544A78472C32C966BFD39 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:44:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7fe31fb4-947a-492c-ae51-327a7c9bd158 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 56A350BD87CD47BA906BCEEC40B689BB Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:44:20Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/647779e9-00a7-4663-9706-bf38278b12e0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D2C103C9AB5546D5A73CF5FCE646CE07 Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:44:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5e77cd5a-f5ef-4fe3-ac80-11cd3acf9a40 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 315D7BD602654C10AEC7916CACA875F5 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:44:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6c84dbbd-0e2a-4b14-b692-67869b99fae3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4AC86D7C577C45009154EF69F75F7C6B Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:44:28Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8ee40fa9-b21a-43ca-8921-8a235deb953e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EF0F67DD846244799700339BA58D781B Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:44:31Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8c98aed0-b240-4e36-bd26-c0db3fd271bb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 89D8BAA237424E3887D984CCA8E37B99 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:44:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e4acbaf5-82c8-4717-8f34-d8ff5af2caf5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 60D84FF1BF30419E9F740B0BF59164D8 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:44:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d4f2d9da-0f21-423a-820b-d26ab8475bea + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 20150FC587154E7F807C009C7D51B69F Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:44:38Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c0ac3c2a-b09b-4a11-a39b-f7ae98b26e62 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D51A7DC5CD124FA4B7EE67F874D484A9 Ref B: BN1AA2051012017 Ref C: 2026-09-14T23:44:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9676c2db-7a80-4a10-a712-6f3f237da755 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8D08413B62124778AFD576941298C91B Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:44:44Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/66491a08-6d10-4619-a75a-f7aca0bf14e1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A8BF64E2D7AB43D4AC629496CC0894E1 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:44:46Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/325e69ad-69c6-41af-b47e-2742af70bfd7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 08EF6F8D30BA4AD9A1095D3678CCC2B3 Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:44:49Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/691aaf9e-12b4-4f52-97ce-6c8886e0ce40 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A4C833BB8A564B84B7747BC5A316308D Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:44:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5e82c763-9be1-4cf4-aff1-4c24a95670c4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 09D7824A42EC4C4A9CE856BE94BB32F0 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:44:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/040806c2-7130-41d3-afc9-154699adeea8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D78CA93390DA4FB7A2E3EF2A45AAFA8B Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:44:56Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:44:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7c4dfbea-a0c9-4fc9-ae2c-e4548a9bd7a8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 194EAC896504440EB86EECCE059F7765 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:44:59Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/fd8476d2-8623-4ba2-b2b0-bdd54ff99a01 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: AB78393C9B164D35A4BA6A7A9EB2F6C7 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:45:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/007d06e6-9cea-477c-b0c5-7f0ef9589c7a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7E8A5712EF264C16A190FAE7383270A9 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:45:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6a56aa11-fce5-4814-90be-e860141e73e0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 130D91F1D9B34A46B04DF50C3583FA00 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:45:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/89051dab-f43b-480e-989e-ba08af0b9bb1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 15600C60C41448AAA538938761E2B0E0 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:45:09Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a18bf587-67ee-4c83-8e8f-8c32b8b7dd10 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E2BCDB2CCF434DAEA6EF946A7C5F22AA Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:45:11Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/ec200b0c-9a91-4c45-bf4f-c906564dd431 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7C16941A447E4A03B602BDECC66BD8AC Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:45:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5f3ed51f-4f4a-45b5-962e-ea00f67b1025 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0FDE88219A94413F8E99E476B2A3FC4D Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:45:17Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a5ace027-fbfd-49d3-a99a-27e5c2dd1309 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C9B5C6BD701F45EBB5119ABAB24E7D32 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:45:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c7d21f9a-9fae-4060-8088-fb126419f2b8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1EE1140ECDD746C8A35F4961BB77CBFE Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:45:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9bd78dca-377d-4e09-acb3-7bf8c2c01ee0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DF6CDC6244ED439FB431F9171B1B6218 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:45:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/35ed4d38-cc8d-4ab8-8893-efeab786f4c4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E42490E5A1DF4B538613E8A411385247 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:45:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b59ececa-8559-4b96-a32c-5e359124ed4c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 23AB92BCA5C04FCB8CD8FA1F50EF230F Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:45:29Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5138a8b4-b0ab-4a34-8c56-259a0a0f980e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B3484F76681D460CB8B95933210BAD33 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:45:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/145071f1-5fd6-4bef-bff3-526108ac48b2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B6E9DE98247D4666B9D2F3E2FCAC1E33 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:45:35Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/333afa70-b7dc-4c39-a356-1e8d5dd38766 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2D716E661A5C4689B7A0A869196B944A Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:45:37Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6ceda030-28b0-4dfe-88b3-190e885186be + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3ECBCA69BF4642D4A5C0449D9CE11AC1 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:45:40Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/ecbc7577-106f-45fa-888b-448dd0ec6f81 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 81213C9B70274C4F9259DF9EDC54E5DD Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:45:42Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3a708a2c-8180-4fa2-8519-c6b6dbd1101a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 82F23FB0473F4CD7A79C54A2A804D7DA Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:45:45Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2cca347d-6d7b-434c-a4ab-5c1190960043 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9B54D5CACBA7497C9A2471915437EE39 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:45:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5366eac1-0ddf-48be-8758-73ddb4f22caa + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6C1CD595140446C9BAD6F99845E5E749 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:45:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/64746068-bbd4-494e-b0cf-6969c8c0bf21 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D10F223429CB4B89B242C3AF7571BB15 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:45:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b7afdba1-b88f-429d-98c5-322dee2e4982 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 43132B2C90F64997A18F0EC79117D622 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:45:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:45:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9a0e6224-4833-46eb-bd98-a7992faad80e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 99303729E9534380B742D64CFC1892E7 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:45:58Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/984525e6-7eec-4d9e-b762-e733e7119266 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 54BCD8B996C540BBAED31F8547151F73 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:46:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/fc36b495-5dce-43e6-a02c-9bfb28b84695 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6BC41E7F4F42429189FE7EBB7162704F Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:46:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/04702176-d12c-4323-bae3-f417eb0181f3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F7C2990A3BA246799F78CE5B605FE652 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:46:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/fb04c6e7-25a5-4634-8ce0-885072d22974 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A8393A080E4D49E6A6B9BEB68DF4FED4 Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:46:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0d1ea74b-b422-40fb-98e7-005135f30449 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E92D2246DD5F4EC2A24CBFA6C3C5F876 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:46:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/235cf3fa-d7f9-47a9-a4c4-249ab6ab2e4a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2E401542603E48D7962EA2A056C30ACF Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:46:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e2aafbf5-cb49-48e3-b798-1766b2ae8ad0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E54A5AA6B95D4F8B866012AC8C472F63 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:46:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2744bf92-1184-48c0-85fa-da3f627c87ba + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 159AC6D45FCF4EFBA189F6448BB978C4 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:46:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/ab983544-db89-4af0-acd0-29dc44cdc878 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DD683FA6031543F48EEC0D4C9937D079 Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:46:21Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/81df69ce-0ac5-4a53-8bc7-41f202052a67 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0A51299C9FD74DDF8833798CCB5DF290 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:46:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/75903991-f8ca-453a-8e6a-e8e86eebe8f5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A902572BE6114B71BA0C264920E7ED8A Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:46:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7348194d-f35d-49d0-b14b-059c5442e658 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 96A82189E2294F5EBB2AC7BBA4219D1C Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:46:29Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4af29195-1374-4266-8aa7-e8a65739f588 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E65561DA45664CCC9E7F697B45045869 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:46:31Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/55e4ff2d-e588-46b2-ac0a-2e3da8088b03 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A6660C6737CB4EC3A38D081396308B8D Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:46:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d4c86b09-7d49-484c-a034-36dedad9361b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C2C03EBB7B8541659985C4CC02B3D23D Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:46:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0c9d7054-f90f-4e53-b495-c35e94deae9f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 42F3D0DB3415422CBA98D08FB34FE1FD Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:46:39Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/295b58d4-2439-4836-858a-76dc426b0de9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6D62FC842177472E84C38D75F7E7731E Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:46:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/fcea1b16-f0af-442d-80b8-5e986934ac06 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DBFA8EB15DD84140B209BF7C71A9840C Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:46:44Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5ac8b8e9-c486-4186-94d5-f203392e0df0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D3B11311C8C04222AC83554E1393B1DF Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:46:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8a116b71-2a67-4dfa-9260-cd387da28081 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 07040AF17CB341318E9142B854488823 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:46:49Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2805ec3a-fec2-4f19-b48e-39000cc9e6c5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0D5467D79CEB4C4E97C52DD4E93E90A2 Ref B: BN1AA2051013021 Ref C: 2026-09-14T23:46:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/009bf7bd-7db0-4885-8fb0-6114859cb61e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EA3D86C405194B4AB26EBD8064056FF8 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:46:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f6398833-8d1f-4a8e-8755-505503f014a2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9B145EA595A8453BBDAF6B4405AFFD7D Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:46:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:46:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cf2707c9-1b40-4bac-80d3-849492403d02 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: AF547D2A209C4DCEBBF64297938695B5 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:46:59Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6e6de651-9597-440d-af90-345ff13e809d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9312BDAA014846168F823D1562DCCFA0 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:47:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2ea50480-3c18-4061-b2ae-81429d799a1d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2A0E2C635FAB47C98A1ED29FD63B49AC Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:47:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5805a4a4-cf80-45f0-a0f1-df3a269d3ade + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1D2981ED6FF048529DDC165EBA9D704A Ref B: BN1AA2051014031 Ref C: 2026-09-14T23:47:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0415869d-eb37-4f4c-a893-971e579427a5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 73D5602281B74F308E1504925FF03BA4 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:47:09Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c0c136b9-27e5-4794-918c-2a91a0a30c99 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4582641C438D4D51B9DC8AFADE5A777C Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:47:11Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d6351596-e8a2-44d7-a24f-6b3787095f97 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0075183E7C8547ADB7CDD8C0304DC0FD Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:47:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a5c868ef-7695-43f7-a69f-d4640b45f348 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 12A8CB3F57A9423DA61082AC42288BE3 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:47:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/682e8272-fc3e-4a71-9689-63efdb32a790 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F7AF1630DE6F4750A2CB03D52AD93595 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:47:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0d482eda-fa23-4468-9cb7-aec9c0e2dd3f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7EE0E0C8860C40C3BB405F0C2AD00ACB Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:47:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/30e1e634-de32-4126-b577-903687a2a501 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C1537EA6525346879B87594DB0DC1799 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:47:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/82903366-26ee-498f-87e6-c1183bb8ce11 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0327436C07A3424EB82A8A3F96054E7D Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:47:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/efe0e859-0af3-4fe4-9767-07fed26c0e3d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: FD1621BA028E4DD5B6717977E3FF8433 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:47:29Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5dc231e2-0331-47ef-b164-b90c80c3ebef + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D00C2776349F4697BD6277822E82F0CF Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:47:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3673ac95-859e-482e-b33d-d7dbb9fddfad + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E3D9FDC3D402400FA06431F00FA91BE9 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:47:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7857cae4-8907-4ad1-9a47-4e26b1f159b2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C0F205C8D63842CE921957A6F0643469 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:47:37Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d9a46f10-ece2-4656-9944-3db5fb201989 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C739231AF03542D9A9D67ED757BFC045 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:47:40Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/03784c00-597b-44bc-9f77-32539dc4d52c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 479FE8185C674C0AAF7E79244483EC86 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:47:42Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3dff3961-4ea4-4428-8bda-d26b8e80f748 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D3B943F45CF340DF9D6243A9A2EE3FE4 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:47:45Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0513d26c-1602-4786-9f03-ec237ba4412e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8877D856C4B64DF9B3F3FE3163AD02F8 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:47:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/eb19fece-0446-4133-bf2e-155779d14698 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B56EE9685554458CAC460D61CECB0FAB Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:47:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/fffc5a5b-6bc9-4aa7-859c-45629ce5af17 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 178A0B111BAA4E7D983FF8BD1E9F9403 Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:47:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e2fe3efa-e2d7-469d-ad50-af62677f87de + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 518AC6EBD46A426E83BDF398E683F5CF Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:47:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ac6c0859-6994-4425-8eb0-dc54facd2c40 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 074E7E3D4A364200AA365A2142721460 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:47:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:47:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4e3fca6e-9b75-4c4f-b623-8861e3198c89 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A8C70F72A2B74CFFAB913874F9C44896 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:48:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/f1f3df61-9a4b-4477-918a-dd2643e0b61f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 97B8E3C3D6E14B3297A10CAD9BD69BB4 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:48:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/22cc9adb-7859-41d8-a2aa-47c80ffa27dc + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0EB26E6D21DE4E24B95679C281A5F1FD Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:48:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8cdbc0c6-4acf-4fc2-b50c-d13be1d509fb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 032A06B1AA744BF4A417B56FCE88D246 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:48:08Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/41815337-d7f8-4a4d-975d-3fccfac9dd59 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 85D7BFF234084F11A91331DD39FA1237 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:48:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e7db5130-776b-408c-8205-046d2e2eeaa3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 97F28042B55B429C87E03CB44089613E Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:48:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/23ec133b-293c-47cd-97f3-0486ae0499d1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 13166904B8124748931EB30200EE599F Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:48:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4e0cad3e-107b-4cab-a39c-3b1526fb06be + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BD4993DDFF994A58BB14C476F7B5EB77 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:48:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/24ba9766-4738-4e77-b519-17f2069cabe8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F34F5F18528242C0A2362010B061752B Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:48:20Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e7dcfcde-ccb0-4a20-8703-9595ed5027df + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3C2C4719DF1B4AD289E8DBB218207ED1 Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:48:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/09f536df-527f-417b-8284-fc4ef9d7760b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0866CE93F3A04521B3B85B5B7A1EB282 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:48:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b20a911a-06a0-48d8-89ed-334ff0b30283 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DC2A4FB74BE0427796CCB76314B56A69 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:48:28Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cff5a786-f16e-4ca6-8cac-e0ef9f1ee3b2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 90C69EF404014A4C84DC258BFB256A65 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:48:31Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3ed4c72d-8b44-46f8-be07-3e1c84ae7686 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6AFC63008EDF427393513AD3E9E86465 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:48:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/f65ae473-56ce-43f1-884c-b99ef3e8d281 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: FE448E7DEF944F878386C24BDC4B19C9 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:48:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/89785371-af71-4ff8-b80c-d5ef3d3c9125 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 502DA5FA95684B8991E39575B62E0E87 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:48:38Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/76b9d3ec-b90a-4e19-a8d0-3b798f491eaf + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 005A415D3613441BB1BA8EE203AAE5B0 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:48:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4fd45152-ca43-479f-a82b-1b408cd47385 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A58518AA1E924783986136BFCDCC96DD Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:48:43Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/55ed210f-9c22-4903-b531-9ca8608870b1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 97C8712B0BB64AE4AA9E2110C834CC3D Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:48:46Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9255f72d-7745-4883-bc49-b0db76530427 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EB44E42BCE7148D6AA83C30C5A57FF47 Ref B: BN1AA2051012017 Ref C: 2026-09-14T23:48:48Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4fb48420-6850-40d6-8681-21cd162e910a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 74FC669B341443EC8737EC3175D7E64D Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:48:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8e590327-02d8-463e-8b39-1b0f55f51654 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: ED5B4C5C611346A4BAADDB32CDF68FCC Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:48:53Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2f307b61-82e1-4aa7-bd0d-8374c79b7782 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 70B6C069499144A081ED80C481BD140C Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:48:56Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:48:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/732c4742-71e3-49ec-815b-ed0872ccb281 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E1CE79638E384A61BF2C730BBE77581E Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:48:59Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2960b793-5bef-43fe-8076-df017cc3bd53 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D2978BAEF8494226820922AA276D7678 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:49:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f277c68b-f18f-4218-909a-88d1caeed7bc + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A73F93ED23CE47899DAA4C03DE7901C3 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:49:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/91b9bf47-6a39-467a-9e74-03e0e65f46c2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E5EACB3D08F84F90B085920B2404D28F Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:49:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4b08a4e0-3701-4f09-b84e-b712bc88107a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EC6EE5F6B6EA4040838EA173069063ED Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:49:09Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3617ca9d-d95f-495f-90ce-8b8566fa25e1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3A62A2833C68450483B540BCDC9B49C9 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:49:11Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/09f68e6a-6c3c-41c9-a30a-a4be8f2b9091 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 86A77971826340549724FBF7E85B3C6F Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:49:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3bc19575-7353-48d4-84cf-dee954d8b5fc + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 765C577CA4594D39B458E143021BE749 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:49:17Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/16a94028-3099-4df4-a2fe-98726a495e01 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E1A83325CCE846E5950F0D507C6DFD45 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:49:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/cb7ea29e-c85d-4060-b4a7-be5935c63234 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E880E4FEE6CD485B9FC28652733CEC93 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:49:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2b8655d5-0fc7-4867-b40f-e9c41a850875 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1BAD9266CD0940F6A84A2D44E1580A0C Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:49:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/259558b1-5d2b-48a3-a14d-637f098178b2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D53B74E991EC4D93A2E5E7D44AE7F849 Ref B: BN1AA2051013031 Ref C: 2026-09-14T23:49:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/263a9911-f7a5-42bb-9eb3-97f48dfa23d0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E26CDCB0AA1D4643B7BF3EA0B4A70C11 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:49:30Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"Succeeded","startTime":"2026-09-14T23:38:41.8302815"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '283' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/82810650-ca35-4425-830f-d97ca1ec75f8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8AB2D7F2B32541448E84CB289E1B09F6 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:49:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-destination + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '1779' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B94BE7ECBE034B0599A3D7220AE2A629 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:49:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9EA78CB20C534706932369AEA5234DFE Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:49:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp env show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '1779' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: E95E5914DCAD4023AEDECF5CA418BE55 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:49:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '90' + Content-Type: + - application/json + ParameterSetName: + - --sku -n -g --admin-enabled + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1681' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/b6cec40d-d027-45a4-a967-4fd2985740fc + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: FFA45D170EE34606B7A230A497938935 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:49:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '576' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 22EE75C8A3314BE3A97863FA7093B2C4 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:49:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1681' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: DACC7961348A4026AAD64B1FABA2D290 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:33:00Z' + - 'Ref A: B4704177AC96407B9E743541ABEED1A6 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:49:42Z' status: code: 200 message: OK @@ -551,7 +17766,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -559,22 +17774,24 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, - userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' + string: '{"value":[{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' headers: + api-supported-versions: + - 2026-09-01-preview cache-control: - no-cache content-length: - - '19086' + - '1693' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:02 GMT + - Mon, 14 Sep 2026 23:49:42 GMT expires: - '-1' pragma: @@ -587,14 +17804,10 @@ interactions: - nosniff x-ms-original-request-ids: - '' - - '' - - '' - - '' - - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8FFD0E23271F4E378A7504390687E463 Ref B: BN1AA2051015023 Ref C: 2026-04-09T18:33:01Z' + - 'Ref A: ADEA9BC33CD745CCB22F0A6A23743707 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:49:43Z' status: code: 200 message: OK @@ -605,7 +17818,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -617,9 +17830,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -629,17 +17843,18 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, + 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Apr 2026 18:33:04 GMT + - Mon, 14 Sep 2026 23:49:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265845095101&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=cdteZcc32tdWbPAeThUas39GDdfS8mnuHTz2FAsLHOWvYr4xfV18tH24YsvTMVqNg7Wv0uAJh7264c6Ytsqq4mvc9Zy68tN3Fv6bzBu91iyOebInZ1YKrL0cMO8exma6ZGiJAJauQFiD_eFwPzddtrMNhUBlUZi5USuUoCFnD4xPURErhUHlCqUpo0eZ3bkoV5R7vfwASgEiZqo37wlUjWgQgE6G9LRcIn2tTJC6NTSAk0naZEW8us-1dOeSYic59sCRl_fFMCqi2kuj2tyS4WyK-PKQ1aPVmnSB6O4d1zN1PnMd-EZwxUeFQxxh85bkElHctQ_Wm0OPxrHgwbezag&h=etPsvwo9Tgsb2NV8xqIFPK3wS7-P1dfEiz-3kcLOxlQ pragma: - no-cache strict-transport-security: @@ -649,13 +17864,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/c07d67de-0f42-4a8f-9101-4f4996a9c554 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/f6327066-70ec-4638-a2bd-e39e6e185e1f x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 1012E8D384A540D7B2B2D30B58232633 Ref B: BN1AA2051015029 Ref C: 2026-04-09T18:33:03Z' + - 'Ref A: 69190658517C487F8C4AA6D0F167B976 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:49:43Z' status: code: 202 message: Accepted @@ -665,7 +17880,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -673,9 +17888,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265845095101&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=cdteZcc32tdWbPAeThUas39GDdfS8mnuHTz2FAsLHOWvYr4xfV18tH24YsvTMVqNg7Wv0uAJh7264c6Ytsqq4mvc9Zy68tN3Fv6bzBu91iyOebInZ1YKrL0cMO8exma6ZGiJAJauQFiD_eFwPzddtrMNhUBlUZi5USuUoCFnD4xPURErhUHlCqUpo0eZ3bkoV5R7vfwASgEiZqo37wlUjWgQgE6G9LRcIn2tTJC6NTSAk0naZEW8us-1dOeSYic59sCRl_fFMCqi2kuj2tyS4WyK-PKQ1aPVmnSB6O4d1zN1PnMd-EZwxUeFQxxh85bkElHctQ_Wm0OPxrHgwbezag&h=etPsvwo9Tgsb2NV8xqIFPK3wS7-P1dfEiz-3kcLOxlQ response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -687,11 +17903,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:05 GMT + - Mon, 14 Sep 2026 23:49:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265853448591&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=ejyEVyYLoy0whxSsntC7CNAU4My-Ul9ORkZx4SpQv2IVkcW4hk9J0H-p8rvC446hnrD3i0X9jaW9Ri4CI4bhIzonreDJekR6j-6vji58BnrHSteDXdi5mZnw9hjXm8DqYh9hiqLJtV8HcC21d7UbAZ4svPj8b2YCGUUjbh_VoELryIPn-fv6DKcLHMs3ZBMle3wBN23v_ZyeFDfS8sgllZEMdd1BNQUOV31GlQqABTxoGTRV7r1vh5XbGTlxwRw9cWOLWhZZbafCmdTRsW4-H8DUSVODR-3WMFWScksW5YIedZ2M1Ruh2jpOJeVuV1dUXz4UWgaLRweiYIL2o9Qa3w&h=11ZP0AupYzgDBa3c5qMeGofxjIYU_RwORARNXScnlwI pragma: - no-cache strict-transport-security: @@ -701,11 +17917,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/522bd5fc-1bfb-4482-bc19-4ba9adaa6e17 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0aa7a1ff-ebf1-48a0-9168-930e2bb237ba x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9462B692FCA9409D9D16339D52E8616B Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:05Z' + - 'Ref A: CF80DD740BAB405DAC034D684527A14F Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:49:44Z' status: code: 202 message: Accepted @@ -715,7 +17931,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr import Connection: @@ -723,9 +17939,10 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265853448591&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=ejyEVyYLoy0whxSsntC7CNAU4My-Ul9ORkZx4SpQv2IVkcW4hk9J0H-p8rvC446hnrD3i0X9jaW9Ri4CI4bhIzonreDJekR6j-6vji58BnrHSteDXdi5mZnw9hjXm8DqYh9hiqLJtV8HcC21d7UbAZ4svPj8b2YCGUUjbh_VoELryIPn-fv6DKcLHMs3ZBMle3wBN23v_ZyeFDfS8sgllZEMdd1BNQUOV31GlQqABTxoGTRV7r1vh5XbGTlxwRw9cWOLWhZZbafCmdTRsW4-H8DUSVODR-3WMFWScksW5YIedZ2M1Ruh2jpOJeVuV1dUXz4UWgaLRweiYIL2o9Qa3w&h=11ZP0AupYzgDBa3c5qMeGofxjIYU_RwORARNXScnlwI response: body: string: '{"status":"Succeeded"}' @@ -737,7 +17954,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:16 GMT + - Mon, 14 Sep 2026 23:49:55 GMT expires: - '-1' pragma: @@ -749,11 +17966,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/a843b716-c68d-4d00-bbf7-8aba702d0ffa + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/341108eb-0c3d-46d0-8bdc-0ff6e55d343d x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8894CADC7C5B4832950EBDF9E6A80642 Ref B: BN1AA2051013029 Ref C: 2026-04-09T18:33:16Z' + - 'Ref A: 9016295DDDC6458BBB3A82166AA87459 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:49:55Z' status: code: 200 message: OK @@ -763,7 +17980,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr credential show Connection: @@ -771,22 +17988,541 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '576' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2A3525B42E6448A294AA3B1B2BA39C7D Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:49:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - acr credential show + Connection: + - keep-alive + ParameterSetName: + - -n --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '1681' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C54DC0863EE54D2D8E82FA2FE086588E Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:49:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --query + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview + response: + body: + string: '{"username":"acr000003","passwords":[{"name":"password","value":"3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"},{"name":"password2","value":"5I6MiKDmUKqW2yVtpXJ0JdRHRleox3JxdCULOIRVYFiVb0qo0FxhJQQJ99CIACYeBjFEqg7NAAACAZCRFdrW"}]}' + headers: + api-supported-versions: + - 2026-09-01-preview + cache-control: + - no-cache + content-length: + - '269' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:49:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/69d90aa0-168f-4cee-89b8-f895e2bf75cc + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 297736BE80A84E299CEF72C8C07A8024 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:49:57Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '6365' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:17 GMT + - Mon, 14 Sep 2026 23:49:57 GMT expires: - '-1' pragma: @@ -798,9 +18534,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 25013C196C964BD2A036CF7F2CCB5ECC Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:33:17Z' + - 'Ref A: 20CDFB5D553946E98B938793B5BA6529 Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:49:58Z' status: code: 200 message: OK @@ -808,101 +18544,57 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - - acr credential show + - containerapp create Connection: - keep-alive ParameterSetName: - - -n --query + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1595' + - '1779' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:19 GMT + - Mon, 14 Sep 2026 23:49:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 940C3E473F1443049CD3EC10C7214075 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:33:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr credential show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n --query - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview - response: - body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' - headers: - api-supported-versions: - - 2026-01-01-preview - cache-control: - - no-cache - content-length: - - '269' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 09 Apr 2026 18:33:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/db30c45f-f6a3-419a-a04c-8076870826b2 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '3749' x-msedge-ref: - - 'Ref A: 83E48A07885D4308A191192885072445 Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:33:20Z' + - 'Ref A: 0864C8C742A14EDAA642F0510F764266 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:49:58Z' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -912,7 +18604,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -921,313 +18613,389 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:22 GMT + - Mon, 14 Sep 2026 23:49:58 GMT expires: - '-1' pragma: @@ -1239,492 +19007,156 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: FCE26477FA874AE4BD33D82497129109 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:33:22Z' + - 'Ref A: C32230FC52DC4AF183C1B90135CE62CB Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:49:58Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "configuration": {"secrets": [{"name": "acr000003azurecrio-443-acr000003", "value": + "3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"}], + "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, + "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": + false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, + "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io:443", + "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-443-acr000003"}]}, + "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io:443/k8se/quickstart:latest", + "name": "aca000002", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: - keep-alive + Content-Length: + - '1192' + Content-Type: + - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:59.569086Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:59.569086Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw cache-control: - no-cache content-length: - - '1721' + - '7101' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:23 GMT + - Mon, 14 Sep 2026 23:49:59 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/318a5ed7-d0cd-4eb2-88d1-b8245e2a9307 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' x-msedge-ref: - - 'Ref A: 3F443B86EF314F78BAE30E2BFD947002 Ref B: BN1AA2051015025 Ref C: 2026-04-09T18:33:23Z' + - 'Ref A: C3E883DBD92044D298358D064594DF8B Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:49:58Z' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '39902' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 09 Apr 2026 18:33:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: DFEC64F36CEB4003829B4938A7FA4A3E Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:24Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "configuration": {"secrets": [{"name": "acr000003azurecrio-443-acr000003", "value": - "***"}], - "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, - "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": - false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, - "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io:443", - "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-443-acr000003"}]}, - "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io:443/k8se/quickstart:latest", - "name": "aca000002", "command": null, "args": null, "env": null, "resources": - null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": - null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: - keep-alive - Content-Length: - - '1192' - Content-Type: - - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7048' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:26 GMT + - Mon, 14 Sep 2026 23:50:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-async-operation-timeout: - - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3871540a-7a46-4dc6-a69b-de9b56d9fac2 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7f4f4883-4de5-45ea-a4cc-ecc776f48fb8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 12CDD39E935A4B7A8A5B7E8E1B6341D4 Ref B: BN1AA2051014023 Ref C: 2026-04-09T18:33:25Z' + - 'Ref A: 4408E85F6ECB47999E4B4E3C6FEBCF3A Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:50:00Z' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1733,18 +19165,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1752,7 +19185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:27 GMT + - Mon, 14 Sep 2026 23:50:02 GMT expires: - '-1' pragma: @@ -1766,11 +19199,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/4c88da92-c7ec-43b5-b317-33e9fde772a5 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d8995560-aa9b-4511-8ee2-75bd5fa1e8b4 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F9233BAF3569419996A0E1FA8088943F Ref B: BN1AA2051012017 Ref C: 2026-04-09T18:33:28Z' + - 'Ref A: F39AA01A1D7942BCA4DE99F6A394BC02 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:50:02Z' x-powered-by: - ASP.NET status: @@ -1782,7 +19215,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1791,18 +19224,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1810,7 +19244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:31 GMT + - Mon, 14 Sep 2026 23:50:04 GMT expires: - '-1' pragma: @@ -1824,11 +19258,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/060ef7e5-15bb-4fb2-8ec5-8a7adef9f3ea + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cbf9d257-5b9f-4721-a3ce-302a9db75c29 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F8B8363DA5BF4923B53875A2B05CC309 Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:33:31Z' + - 'Ref A: 6DF7E6DA8068401AA092670B20D93D36 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:50:05Z' x-powered-by: - ASP.NET status: @@ -1840,7 +19274,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1849,18 +19283,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1868,7 +19303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:34 GMT + - Mon, 14 Sep 2026 23:50:07 GMT expires: - '-1' pragma: @@ -1882,11 +19317,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/7e664e93-3760-4628-ba57-67dc10fc9985 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f52ae34e-fcc8-459d-8eab-f3be487511ff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3B2C9E30C5424A44B6BF3EB1342F5A79 Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:33:34Z' + - 'Ref A: 99620ABA72E841AA89C2A14C5AA36EEB Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:50:08Z' x-powered-by: - ASP.NET status: @@ -1898,7 +19333,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1907,18 +19342,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1926,7 +19362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:38 GMT + - Mon, 14 Sep 2026 23:50:10 GMT expires: - '-1' pragma: @@ -1940,11 +19376,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e1e7f557-17ee-4d00-869c-9736a043ba07 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8e36f7a3-ae3f-49dc-893c-6d897b123f93 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 48BD08A5D6794290A20D875CA56C15A8 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:33:38Z' + - 'Ref A: 7DADFD2FAD9D477EAB789F3554C92CD1 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:50:10Z' x-powered-by: - ASP.NET status: @@ -1956,7 +19392,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -1965,18 +19401,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"Succeeded","startTime":"2026-04-09T18:33:26.8950094"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"Succeeded","startTime":"2026-09-14T23:49:59.8833774"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1984,7 +19421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:41 GMT + - Mon, 14 Sep 2026 23:50:12 GMT expires: - '-1' pragma: @@ -1998,11 +19435,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/f8084cb3-71eb-423f-b1f1-9c4a78b02f73 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8f3cc687-2a50-446b-a8c8-35d55ebbd531 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C1AEB49CE7A748718236187D0F3F8226 Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:33:41Z' + - 'Ref A: A1E7038E18BA421EAF1FB08AB823610F Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:50:13Z' x-powered-by: - ASP.NET status: @@ -2014,7 +19451,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -2023,27 +19460,28 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:59.569086","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:59.569086"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000002--2urrvr5","latestReadyRevisionName":"aca000002--2urrvr5","latestRevisionFqdn":"aca000002--2urrvr5.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7681' + - '7738' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:42 GMT + - Mon, 14 Sep 2026 23:50:14 GMT expires: - '-1' pragma: @@ -2057,9 +19495,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A32FE836747A4DD8A801E2CB0C3BF1AD Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:42Z' + - 'Ref A: AF245C73CDCA49DE83178A8A2B79B948 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:50:13Z' x-powered-by: - ASP.NET status: @@ -2071,7 +19509,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp show Connection: @@ -2079,313 +19517,389 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:44 GMT + - Mon, 14 Sep 2026 23:50:13 GMT expires: - '-1' pragma: @@ -2397,9 +19911,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: EC81DEB16E0C4F0CA2EB0A4B6388BDCE Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:33:44Z' + - 'Ref A: CB46A9C346C34B42A2935AED30BAA309 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:50:14Z' status: code: 200 message: OK @@ -2409,7 +19923,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp show Connection: @@ -2417,27 +19931,28 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:59.569086","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:59.569086"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000002--2urrvr5","latestReadyRevisionName":"aca000002--2urrvr5","latestRevisionFqdn":"aca000002--2urrvr5.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7681' + - '7738' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:46 GMT + - Mon, 14 Sep 2026 23:50:15 GMT expires: - '-1' pragma: @@ -2451,9 +19966,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3A2F6B8B36B04807A1E7F56A911D5AC3 Ref B: BN1AA2051012029 Ref C: 2026-04-09T18:33:45Z' + - 'Ref A: 3F722B92E0044FD0AA490272D7325DC3 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:50:14Z' x-powered-by: - ASP.NET status: @@ -2465,7 +19980,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp show Connection: @@ -2475,18 +19990,19 @@ interactions: ParameterSetName: - -g -n --show-secrets User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"***"}]}' + string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -2494,7 +20010,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:48 GMT + - Mon, 14 Sep 2026 23:50:16 GMT expires: - '-1' pragma: @@ -2508,13 +20024,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/7d0d9b73-ad40-4e82-bfa3-193e8d0bb5e1 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/b9664a14-b633-468d-86c4-a5a5640665a6 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 84D1EA72669F406EA501976FC4886A18 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:47Z' + - 'Ref A: B61B4776865C44019254FDC871B5FC5B Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:50:15Z' x-powered-by: - ASP.NET status: @@ -2526,7 +20042,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -2535,313 +20051,389 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:49 GMT + - Mon, 14 Sep 2026 23:50:16 GMT expires: - '-1' pragma: @@ -2853,9 +20445,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C77679F8F174482EB4F403773474F244 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:49Z' + - 'Ref A: E3825AF0B5D44B38B3D7047D3C3EA388 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:50:17Z' status: code: 200 message: OK @@ -2865,7 +20457,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -2874,27 +20466,28 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1721' + - '1779' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:51 GMT + - Mon, 14 Sep 2026 23:50:17 GMT expires: - '-1' pragma: @@ -2908,9 +20501,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: FC9214C9F82348C7A1E82FDD22177055 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:33:51Z' + - 'Ref A: 55A09361DF9D4FF3A8943BE28AF96A1D Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:50:17Z' x-powered-by: - ASP.NET status: @@ -2922,7 +20515,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -2931,414 +20524,609 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '47420' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:50:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C78CE2AE93D246789B6C6797098B2D8F Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:50:17Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": + "3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"}], + "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, + "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": + false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, + "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io", + "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}, + "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io/k8se/quickstart:latest", + "name": "aca000004", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1176' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:50:18.4486682Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:50:18.4486682Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + cache-control: + - no-cache + content-length: + - '7087' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:50:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/7745a5c8-3fd9-489c-9a8d-57d456050b5f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + x-msedge-ref: + - 'Ref A: 59CD560984F444C28A5A7ED1AEC5969F Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:50:18Z' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '39902' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:52 GMT + - Mon, 14 Sep 2026 23:50:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4659efa0-855c-442c-a7a9-558e4e138e35 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 0D074FA4E3DE4D45AB14EB3D470B3796 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:33:52Z' + - 'Ref A: A2BD905DC4EE4E6C8E6DA37699BDFAEB Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:50:19Z' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "***"}], - "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, - "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": - false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, - "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io", - "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}, - "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io/k8se/quickstart:latest", - "name": "aca000004", "command": null, "args": null, "env": null, "resources": - null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": - null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: - keep-alive - Content-Length: - - '1176' - Content-Type: - - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7032' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:55 GMT + - Mon, 14 Sep 2026 23:50:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-async-operation-timeout: - - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/0c457244-70bc-4ec7-b3e2-7efb30ec9a8e - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6ef3639a-0bfc-48fc-8d1d-479daa73d9da + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 93BDC2F67E684F32B0098BD941B76E50 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:33:54Z' + - 'Ref A: 0828507BD9724B538333B10A6F123568 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:50:21Z' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -3347,18 +21135,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3366,7 +21155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:56 GMT + - Mon, 14 Sep 2026 23:50:24 GMT expires: - '-1' pragma: @@ -3380,11 +21169,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7eef5cd0-059c-443d-8f9e-51dbc47fb520 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/60610b19-9ac6-4a0b-83ed-a3f7200233e6 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 7523EC4659204296AFD52448CCE7CE85 Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:56Z' + - 'Ref A: AE13CB726DD34E68A10503DE9854DF1A Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:50:24Z' x-powered-by: - ASP.NET status: @@ -3396,7 +21185,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -3405,18 +21194,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3424,7 +21214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:33:59 GMT + - Mon, 14 Sep 2026 23:50:26 GMT expires: - '-1' pragma: @@ -3438,11 +21228,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/4b2d4182-7784-4e1e-993f-d6899c9a7aa7 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3d7cc705-49ce-49cb-babf-a03a21e6391f x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 1E1F8F2A0B074C938D8D04BCD262DAB4 Ref B: BN1AA2051014029 Ref C: 2026-04-09T18:34:00Z' + - 'Ref A: 2B46B7E097E94398AF30F10D6F134894 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:50:26Z' x-powered-by: - ASP.NET status: @@ -3454,7 +21244,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -3463,18 +21253,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3482,7 +21273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:02 GMT + - Mon, 14 Sep 2026 23:50:29 GMT expires: - '-1' pragma: @@ -3496,11 +21287,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/8fcb7cf1-0bd9-48f8-b8e2-4ae1ed9475b8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5c7b5d30-f1ba-4122-810c-226d25cd1635 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F36A5CAB75D6496193668CAA2F649E16 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:34:03Z' + - 'Ref A: D405D2BF78F14DA883D79E0BD76AEE8D Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:50:29Z' x-powered-by: - ASP.NET status: @@ -3512,7 +21303,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -3521,18 +21312,19 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"Succeeded","startTime":"2026-04-09T18:33:55.4292773"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"Succeeded","startTime":"2026-09-14T23:50:18.7326576"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3540,7 +21332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:06 GMT + - Mon, 14 Sep 2026 23:50:31 GMT expires: - '-1' pragma: @@ -3554,11 +21346,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/b3517880-1ec7-4b4f-a7e1-43d7650872c1 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ce87781a-4921-46a6-afa9-850a451e6a5f x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 6BCFFB8675514934A3A49DCFB58418BC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:34:06Z' + - 'Ref A: E21FA611BB6F4ED198837A34E2C94F45 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:50:31Z' x-powered-by: - ASP.NET status: @@ -3570,7 +21362,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp create Connection: @@ -3579,27 +21371,28 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:50:18.4486682","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:50:18.4486682"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000004--r1icsoy","latestReadyRevisionName":"aca000004--r1icsoy","latestRevisionFqdn":"aca000004--r1icsoy.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7665' + - '7724' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:08 GMT + - Mon, 14 Sep 2026 23:50:32 GMT expires: - '-1' pragma: @@ -3613,9 +21406,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: FF5BDBE74853474AB2E78819619C6AC1 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:34:08Z' + - 'Ref A: 776E17115D8C422D99E79D9370B4B378 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:50:32Z' x-powered-by: - ASP.NET status: @@ -3627,7 +21420,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp show Connection: @@ -3635,313 +21428,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","Jio - India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39902' + - '47420' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:10 GMT + - Mon, 14 Sep 2026 23:50:33 GMT expires: - '-1' pragma: @@ -3953,9 +21822,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9F6386055C2B4F8F850FC71FF364F70E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:34:10Z' + - 'Ref A: E181DFCABDC44D74B306F1EF73AE5EF5 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:50:33Z' status: code: 200 message: OK @@ -3965,7 +21834,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp show Connection: @@ -3973,27 +21842,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:50:18.4486682","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:50:18.4486682"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000004--r1icsoy","latestReadyRevisionName":"aca000004--r1icsoy","latestRevisionFqdn":"aca000004--r1icsoy.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7665' + - '7724' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Apr 2026 18:34:11 GMT + - Mon, 14 Sep 2026 23:50:34 GMT expires: - '-1' pragma: @@ -4007,9 +21877,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 0FDF6DDD4AF94FE09B1A06EB21164EF2 Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:34:11Z' + - 'Ref A: F32E522F67C240FBABB40286EEE4E93F Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:50:33Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml index bc75eefaf54..f876e9a45f4 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -13,313 +13,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:06 GMT + - Mon, 14 Sep 2026 23:55:36 GMT expires: - '-1' pragma: @@ -331,9 +407,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 83B1E760B79941F5A809ABB7697DCB31 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:58:06Z' + - 'Ref A: 1FCA46D8DC7D485DB94F2FCE63458923 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:55:37Z' status: code: 200 message: OK @@ -343,7 +419,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp env show Connection: @@ -351,27 +427,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '1779' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:05 GMT + - Mon, 14 Sep 2026 23:55:37 GMT expires: - '-1' pragma: @@ -385,9 +462,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9FE8A553BACE41579EC8E06F4465CCE9 Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:58:06Z' + - 'Ref A: F51D286E9AC04DF6A9A2E5B0D18E3FF5 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:55:37Z' x-powered-by: - ASP.NET status: @@ -399,7 +476,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -408,313 +485,389 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France + US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:06 GMT + - Mon, 14 Sep 2026 23:55:37 GMT expires: - '-1' pragma: @@ -726,9 +879,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4FE57FC526674F44AF549E8D36135AD3 Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:58:06Z' + - 'Ref A: 74D7D38422704EF08780BDFB7A6E13B7 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:55:37Z' status: code: 200 message: OK @@ -738,7 +891,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -747,27 +900,28 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1726' + - '1779' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:06 GMT + - Mon, 14 Sep 2026 23:55:37 GMT expires: - '-1' pragma: @@ -781,9 +935,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 6BCAE525F7B4459BBF436D0662204DBE Ref B: SJC211051204033 Ref C: 2026-03-24T05:58:07Z' + - 'Ref A: ADBE37C863D6405C9B7E0F211B6E73D4 Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:55:38Z' x-powered-by: - ASP.NET status: @@ -795,7 +949,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -804,313 +958,389 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:07 GMT + - Mon, 14 Sep 2026 23:55:38 GMT expires: - '-1' pragma: @@ -1122,9 +1352,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: FAF3C3C2102D4857941D9535F01490B1 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:58:07Z' + - 'Ref A: 45804C21FAE444C387A3657E50565DB9 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:55:38Z' status: code: 200 message: OK @@ -1142,7 +1372,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1155,28 +1385,30 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:39.2342337Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM cache-control: - no-cache content-length: - - '1331' + - '6590' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:10 GMT + - Mon, 14 Sep 2026 23:55:39 GMT expires: - '-1' pragma: @@ -1190,11 +1422,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/35154f62-1978-40ba-822f-e34d95c2ee7d + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/76b73abc-eed6-461c-8716-ea7eeab02e4c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 2A98C9C49BAA4AB08290BB04F4038388 Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:58:07Z' + - 'Ref A: 5E05DA5E1C714EA8BA682CDD9D0CC312 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:55:38Z' x-powered-by: - ASP.NET status: @@ -1206,7 +1438,66 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd + CommandName: + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --parallelism --replica-completion-count --image --cpu --memory + User-Agent: + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"InProgress","startTime":"2026-09-14T23:55:39.5099183"}' + headers: + api-supported-versions: + - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, + 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 + cache-control: + - no-cache + content-length: + - '282' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:55:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9c047c76-6d9f-4446-8f45-de1f79b77211 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: FC832FCCF9E84552BDBE3D3D0E9F6D83 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:55:39Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1215,17 +1506,19 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"InProgress","startTime":"2026-09-14T23:55:39.5099183"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1233,7 +1526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:10 GMT + - Mon, 14 Sep 2026 23:55:42 GMT expires: - '-1' pragma: @@ -1247,11 +1540,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b7f0bc80-740a-4d8b-925b-4d47bb643dc6 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b9748dcd-059b-416b-8afd-126df2c84bb0 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: A4F9CA8EBA054874A4349F476B4087EE Ref B: BY1AA1072319031 Ref C: 2026-03-24T05:58:11Z' + - 'Ref A: 78C1594732E64BC2B7293B1A3F2B9AE0 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:55:42Z' x-powered-by: - ASP.NET status: @@ -1263,7 +1556,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1272,17 +1565,19 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"InProgress","startTime":"2026-09-14T23:55:39.5099183"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1290,7 +1585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:13 GMT + - Mon, 14 Sep 2026 23:55:45 GMT expires: - '-1' pragma: @@ -1304,11 +1599,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/50c4cc15-57ed-48c1-a844-317737629347 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7b500293-b141-40e3-a8e3-c977860c6282 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: BE236F084B0B4394A74941946295233E Ref B: SJC211051205027 Ref C: 2026-03-24T05:58:13Z' + - 'Ref A: 5475D72DD664423D9F52843B094BE72A Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:55:44Z' x-powered-by: - ASP.NET status: @@ -1320,7 +1615,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1329,17 +1624,19 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"Succeeded","startTime":"2026-03-24T05:58:09.9196862"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"Succeeded","startTime":"2026-09-14T23:55:39.5099183"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1347,7 +1644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:15 GMT + - Mon, 14 Sep 2026 23:55:47 GMT expires: - '-1' pragma: @@ -1361,11 +1658,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/abf2851f-acad-442c-82f1-40ba686d412c + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/289d7f51-b780-4665-932a-db0e3805be9b x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8EEE2B56E7AD43DA8B3F98C7005A0D63 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:58:16Z' + - 'Ref A: E7818EC6B51D41F58C2D4CE45D0C5260 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:55:47Z' x-powered-by: - ASP.NET status: @@ -1377,7 +1674,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job create Connection: @@ -1386,26 +1683,28 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:39.2342337"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1350' + - '6609' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:16 GMT + - Mon, 14 Sep 2026 23:55:48 GMT expires: - '-1' pragma: @@ -1419,9 +1718,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: FACC70A2E96A4D579BBDC7230B96989D Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:58:16Z' + - 'Ref A: 92614E249CAF420198246C55C903FA86 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:55:47Z' x-powered-by: - ASP.NET status: @@ -1434,7 +1733,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: @@ -1446,23 +1745,24 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:48.7941079+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:48.7941079+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:55:48.7941079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:55.7388818+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:55.738926+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1680' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:24 GMT + - Mon, 14 Sep 2026 23:55:55 GMT expires: - '-1' pragma: @@ -1474,13 +1774,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/7f2a7b6a-c21d-4e09-a9ab-b2a9e2d6797c + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/fa78d77b-f8f5-443a-b4f5-07e3016ac401 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' + - '199' x-msedge-ref: - - 'Ref A: 8F7996EF5799498F8FDC268A5001D21F Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:17Z' + - 'Ref A: CC505386D1AE4204B691ED718E102E9B Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:55:48Z' status: code: 200 message: OK @@ -1490,7 +1790,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -1498,313 +1798,389 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:25 GMT + - Mon, 14 Sep 2026 23:55:56 GMT expires: - '-1' pragma: @@ -1816,9 +2192,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 77939CA83F664FB5B7818885C61BAC91 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:58:25Z' + - 'Ref A: 8DBD48AEF97B4E0BA33B4317B6AC3060 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:55:56Z' status: code: 200 message: OK @@ -1828,7 +2204,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -1836,26 +2212,28 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:39.2342337"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1350' + - '6609' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:25 GMT + - Mon, 14 Sep 2026 23:55:56 GMT expires: - '-1' pragma: @@ -1869,9 +2247,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 2FFF2425312D41118FC671E78102B179 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:25Z' + - 'Ref A: 1B7C420D7DE840D5A0F550074B0DB6FC Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:55:56Z' x-powered-by: - ASP.NET status: @@ -1883,7 +2261,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -1893,7 +2271,8 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: @@ -1903,7 +2282,8 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -1911,7 +2291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:26 GMT + - Mon, 14 Sep 2026 23:55:57 GMT expires: - '-1' pragma: @@ -1925,13 +2305,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/2f039500-99e3-4fb7-a16a-67997ac0be85 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/a066a0af-1047-4472-98be-b983ddee13fd x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: C3CBD52FCA3F4672A176CDA3B2E39F51 Ref B: BY1AA1072316029 Ref C: 2026-03-24T05:58:26Z' + - 'Ref A: 4074423576FD43D1ABEC4828963B71A1 Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:55:57Z' x-powered-by: - ASP.NET status: @@ -1943,7 +2323,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -1951,21 +2331,22 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7juybbsrkvqkio2ys7avrdjfyzmphiv43k7bp6xoh7pzl7tfedjxwwelrukegcotp/providers/Microsoft.ContainerRegistry/registries/acrzzuc7i2xxxwgo2ytumlcm","name":"acrzzuc7i2xxxwgo2ytumlcm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:48.7941079Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:48.7941079Z"}}]}' headers: cache-control: - no-cache content-length: - - '3356' + - '1230' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:26 GMT + - Mon, 14 Sep 2026 23:55:58 GMT expires: - '-1' pragma: @@ -1977,9 +2358,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 1735641CAEC74F1C9C8C8F5E35799BEF Ref B: SJC211051201045 Ref C: 2026-03-24T05:58:27Z' + - 'Ref A: 7D810F11A7574A638D2F0927508B573F Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:55:58Z' status: code: 200 message: OK @@ -1989,7 +2370,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -1997,23 +2378,24 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:48.7941079+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:48.7941079+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:55:48.7941079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:55.7388818+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:55.738926+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1595' + - '1680' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:27 GMT + - Mon, 14 Sep 2026 23:55:58 GMT expires: - '-1' pragma: @@ -2025,9 +2407,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 1E7F1F40570441B483D86D0D742ED390 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:58:27Z' + - 'Ref A: E799D31E173040EC880221B07E06E89A Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:55:58Z' status: code: 200 message: OK @@ -2037,7 +2419,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -2047,15 +2429,16 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"},{"name":"password2","value":"9RBUNaHBq82xP3168uW2BfNmNLfdUSogLQXZ2QWZhWGxMX5qzCnhJQQJ99CIACYeBjFEqg7NAAACAZCRnBar"}]}' headers: api-supported-versions: - - 2026-01-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: @@ -2063,7 +2446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:27 GMT + - Mon, 14 Sep 2026 23:56:00 GMT expires: - '-1' pragma: @@ -2075,26 +2458,26 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/85885868-5b4b-4a86-8230-725bdf0bbaaa + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/feb78c28-5a9e-4e8e-948a-1ca9d9bc1c9f x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: E342E2A0B6BB491B812C73E33605B0FB Ref B: SJC211051205011 Ref C: 2026-03-24T05:58:27Z' + - 'Ref A: 09D66651B8BC430A80569196D52B6C34 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:55:59Z' status: code: 200 message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "***"}], + "value": "EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}], "registries": [{"server": "acr000003.azurecr.io", "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}}}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -2106,7 +2489,8 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -2116,17 +2500,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:29 GMT + - Mon, 14 Sep 2026 23:56:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269612873004&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZjpPyAEbdgNd1U6VyV0sq2hkco5bYTdxohTeSz961xTFvyF8ZxCp9Bxts1y7XEryyfUxcV3CU073le5Ivc8ce6GK3VEQpbGVDb3aJSqydsETlo5rfl9shMsRvcYywtosfmAbsIQsPqiOAYUWBBNklnoiMnUBqidvXozcDwUcnYQqE_1APARh8ruo3lCZs351AjV6T0iSUJrjNq5tnfGEliEY9fGtuGHg62GmfjoZ-S1L6rH4iAjxhZz5rlVqo_J_KL1g682H9IzydTIvfNuHn6CGRV5HR0tI5v1uV17OlBgR70YJLyaHHvdXEvvMQbVBQ7cEjarhvuEBBui0r3ckxg&h=8JT5HaNM7M3dvMrpIxPKqJMjgRzqgQhxOX5lt1ZpY1M pragma: - no-cache strict-transport-security: @@ -2136,11 +2521,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/8c5ae4d8-a6e6-4991-b2fd-c9d8e75525d2 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/17e84cae-43ed-4170-999a-3f06ca5c6814 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: B0D2853C22764F8E93A359A8F5418407 Ref B: SJC211051203037 Ref C: 2026-03-24T05:58:28Z' + - 'Ref A: A10D4D441A894DE4B96A97B17B230D00 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:56:00Z' x-powered-by: - ASP.NET status: @@ -2152,7 +2537,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -2160,9 +2545,10 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269612873004&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZjpPyAEbdgNd1U6VyV0sq2hkco5bYTdxohTeSz961xTFvyF8ZxCp9Bxts1y7XEryyfUxcV3CU073le5Ivc8ce6GK3VEQpbGVDb3aJSqydsETlo5rfl9shMsRvcYywtosfmAbsIQsPqiOAYUWBBNklnoiMnUBqidvXozcDwUcnYQqE_1APARh8ruo3lCZs351AjV6T0iSUJrjNq5tnfGEliEY9fGtuGHg62GmfjoZ-S1L6rH4iAjxhZz5rlVqo_J_KL1g682H9IzydTIvfNuHn6CGRV5HR0tI5v1uV17OlBgR70YJLyaHHvdXEvvMQbVBQ7cEjarhvuEBBui0r3ckxg&h=8JT5HaNM7M3dvMrpIxPKqJMjgRzqgQhxOX5lt1ZpY1M response: body: string: '' @@ -2170,17 +2556,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:29 GMT + - Mon, 14 Sep 2026 23:56:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287103526622&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=RvVuBikV3PlFywK_KqHykM3IVIG24w9ln4rOEOo-Srs_aJntM0Njdgh9F633eZIPs7BJ_OHxJPmEKJjga7J1-e8F0Pe7yVWfRh2ezq3QzDPfeBwTzAftKCArNv7MkZePkPDlmdO9vFEbW3IdunuX4DFdwCDo0h9ARPQo8lK1A7spp9eX6SFx1orCJZedT1VCP2NrMsf8hH5woLFsELYp3a71aSacSrMmYOim2BB58zpcQJm9O4jyg0UTGDDJgcO-I6brjlgcWaUw8sIwnliFGcmk0ORNqXebAMYU0DvmVyTOoWjHTry-UoOBweHdf2YpgYWbGvsXrvNSgKw4jTyMkQ&h=bewZB2cYDExSd-GQEWDPHsgj8IhMBWMaB88S9_YexIs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269618231214&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=fVqOrY_AIpGNxNDzMaBA_y6Dslzc0qzxjOyknlk4EBADgcm0zgdIWPMb7AQfQzdV0ezOFhXRE--fRksBQ1tLbWyn5hi0XJ5OJ5hHKWgEVDimet3H2bL31BBglaJmnI6VsXHgPFuJIUq_QIhWUDDA8tppfq9igXDrQkohDcVConCFRbOlpcK6bYwe6wn-wviChbCgNaA6QajhYrDCITA8fPwgc67HuRQFIpi3h8R8SqlnbMqh4eSU9f8z8pdjJCFoVpZBw8oTyIhM6X0d4EVnvhE0xerP6qqntJG_Aa84u0El3aXFIwbYAuo4Eqv9kk22jwn-1K6eDsDomrJu8etY6g&h=kxScfuS24ny7f8GuHtRCgs_j-YuNoYQbQFrCSeFbpnA pragma: - no-cache strict-transport-security: @@ -2190,11 +2577,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/1e4e98e8-4162-4681-ba7c-23de71c5fd6c + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f7ae486d-5fa2-427f-801f-242ce58d960c x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3D21BAAE48E04A5B81B700C74ED3C6C0 Ref B: SJC211051204053 Ref C: 2026-03-24T05:58:29Z' + - 'Ref A: D8AB5F177F5D40E5A38D6A4E7A9ED8D9 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:56:01Z' x-powered-by: - ASP.NET status: @@ -2206,7 +2593,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -2214,26 +2601,28 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269612873004&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZjpPyAEbdgNd1U6VyV0sq2hkco5bYTdxohTeSz961xTFvyF8ZxCp9Bxts1y7XEryyfUxcV3CU073le5Ivc8ce6GK3VEQpbGVDb3aJSqydsETlo5rfl9shMsRvcYywtosfmAbsIQsPqiOAYUWBBNklnoiMnUBqidvXozcDwUcnYQqE_1APARh8ruo3lCZs351AjV6T0iSUJrjNq5tnfGEliEY9fGtuGHg62GmfjoZ-S1L6rH4iAjxhZz5rlVqo_J_KL1g682H9IzydTIvfNuHn6CGRV5HR0tI5v1uV17OlBgR70YJLyaHHvdXEvvMQbVBQ7cEjarhvuEBBui0r3ckxg&h=8JT5HaNM7M3dvMrpIxPKqJMjgRzqgQhxOX5lt1ZpY1M response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '6729' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:45 GMT + - Mon, 14 Sep 2026 23:56:16 GMT expires: - '-1' pragma: @@ -2247,11 +2636,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d0decb66-fae2-49f2-b24f-2bd196cef1a0 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4051d5e1-a994-4896-907d-463ba51f19ff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4F7ACFC661674CE78C3215D880097799 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:45Z' + - 'Ref A: 3B4C36D04A1D4A6C8D6F4CAA549E5A7D Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:56:17Z' x-powered-by: - ASP.NET status: @@ -2263,7 +2652,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry list Connection: @@ -2271,313 +2660,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39885' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:45 GMT + - Mon, 14 Sep 2026 23:56:17 GMT expires: - '-1' pragma: @@ -2589,9 +3054,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9345A4E3CE3E48C8BDFB65830B2E31A7 Ref B: SJC211051205023 Ref C: 2026-03-24T05:58:46Z' + - 'Ref A: F87B171FE5D94ADFBA77EA5922EADC2C Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:56:17Z' status: code: 200 message: OK @@ -2601,7 +3066,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry list Connection: @@ -2609,26 +3074,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '6729' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:46 GMT + - Mon, 14 Sep 2026 23:56:18 GMT expires: - '-1' pragma: @@ -2642,9 +3109,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3F1990142B3743B087D0FAE9F911FDF7 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:46Z' + - 'Ref A: 63323C9F464D4287896BF2BF552AAC69 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:56:18Z' x-powered-by: - ASP.NET status: @@ -2656,7 +3123,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry show Connection: @@ -2664,313 +3131,389 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:46 GMT + - Mon, 14 Sep 2026 23:56:19 GMT expires: - '-1' pragma: @@ -2982,9 +3525,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9F5E3DE138D14FF693115EBAFD1CB3E8 Ref B: BY1AA1072316060 Ref C: 2026-03-24T05:58:46Z' + - 'Ref A: 95F4362ECDF147779B7D284BA821A099 Ref B: BN1AA2051013021 Ref C: 2026-09-14T23:56:18Z' status: code: 200 message: OK @@ -2994,7 +3537,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry show Connection: @@ -3002,26 +3545,28 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '6729' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:47 GMT + - Mon, 14 Sep 2026 23:56:19 GMT expires: - '-1' pragma: @@ -3035,9 +3580,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 483DC18DF49C4FDAB2CD4D7D2E29ACD8 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:47Z' + - 'Ref A: 5204A01B48E44D519AB81A479D0F7170 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:56:19Z' x-powered-by: - ASP.NET status: @@ -3049,7 +3594,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -3057,313 +3602,389 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:47 GMT + - Mon, 14 Sep 2026 23:56:20 GMT expires: - '-1' pragma: @@ -3375,9 +3996,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 29E9F6AC05A341CDA65C83C50F3C1F87 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:48Z' + - 'Ref A: 689BBDB0A5BB41E4B890B9C238BD890B Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:56:20Z' status: code: 200 message: OK @@ -3387,7 +4008,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -3395,26 +4016,28 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1471' + - '6729' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:47 GMT + - Mon, 14 Sep 2026 23:56:20 GMT expires: - '-1' pragma: @@ -3428,9 +4051,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 0AC04F0F1BC3429D8B5C486D253A3ADD Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:48Z' + - 'Ref A: FA75433EA9FD4472835EFCDA1709F7EF Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:56:20Z' x-powered-by: - ASP.NET status: @@ -3442,7 +4065,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -3452,17 +4075,19 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -3470,7 +4095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:58:48 GMT + - Mon, 14 Sep 2026 23:56:21 GMT expires: - '-1' pragma: @@ -3484,13 +4109,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/e1c4ad97-9b1e-4f9c-b2b9-0febb4a943d9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/ca568e13-2d19-4041-978d-e7fadbee22ca x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 5793764F5FA04C85ADE202AF0E08DD96 Ref B: SJC211051204017 Ref C: 2026-03-24T05:58:48Z' + - 'Ref A: A2C6E649339541C2ABF623882CD05D8D Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:56:21Z' x-powered-by: - ASP.NET status: @@ -3498,14 +4123,14 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "***"}], + "value": "EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}], "registries": [{"server": "acr000003.azurecr.io", "username": null, "passwordSecretRef": null, "identity": "system"}]}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -3517,7 +4142,8 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -3527,17 +4153,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:51 GMT + - Mon, 14 Sep 2026 23:56:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269849252135&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=OHtslxdhY1h287xVl6vCK5-4ojKq8_1mUgPC_y0yxQW6Lr_WqmZ9or4B8wX6u3_qwjwFSVgXXcdXl9pK0_ZSM7qXeyxk69KYOC-AVMxu7d0nQG7br_lcDP6jjQkwlZ33-Z2fneTalc7J8nfUmZ5MmqPZ3G4wpkNOO7vKWNVoRNflKIlm1i_ZEydtN_Tqv67nYxPjB1jEPZ36d101wyswo5ECTGzubuu6f7qGUadc6EhbFX2ooZDqP3Skied-URlzKTSnkX1PM4SppiTxlGaAAcPfFGRVYeYmuHvcwq-aRL_rEEvGCm2un6aCWdjTQl9_ogH4izUE1nQPBa0XhzDRYw&h=xENQ0VBAUrEIbcTDgiJtnrVlx8_hpLCzqou95vAwPyQ pragma: - no-cache strict-transport-security: @@ -3547,11 +4174,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/46e78443-9d13-4bbb-9805-0521c3c2d385 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/76f100bc-811f-46b9-838f-5c8b41fde36c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 4F0D76C7EA6A4F52BB3D5628232DF735 Ref B: BY1AA1072315060 Ref C: 2026-03-24T05:58:49Z' + - 'Ref A: 4F7A14FDDBAF46D3935FE03EE14B3FF1 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:56:22Z' x-powered-by: - ASP.NET status: @@ -3563,7 +4190,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -3571,9 +4198,10 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269849252135&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=OHtslxdhY1h287xVl6vCK5-4ojKq8_1mUgPC_y0yxQW6Lr_WqmZ9or4B8wX6u3_qwjwFSVgXXcdXl9pK0_ZSM7qXeyxk69KYOC-AVMxu7d0nQG7br_lcDP6jjQkwlZ33-Z2fneTalc7J8nfUmZ5MmqPZ3G4wpkNOO7vKWNVoRNflKIlm1i_ZEydtN_Tqv67nYxPjB1jEPZ36d101wyswo5ECTGzubuu6f7qGUadc6EhbFX2ooZDqP3Skied-URlzKTSnkX1PM4SppiTxlGaAAcPfFGRVYeYmuHvcwq-aRL_rEEvGCm2un6aCWdjTQl9_ogH4izUE1nQPBa0XhzDRYw&h=xENQ0VBAUrEIbcTDgiJtnrVlx8_hpLCzqou95vAwPyQ response: body: string: '' @@ -3581,17 +4209,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:58:52 GMT + - Mon, 14 Sep 2026 23:56:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287327256198&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=DtETtRBQza5x5JMluIsd2lT-C1jGtqH3MHO4vy__AWGMAXLTuv6a-kJpcoIoEz9WscOUCj0bdM2CzkfBibUkTuzipUxFbgmt6gaRBgjb2-r0kJo0K22iuUGM_Uw6oXJy41MxFTyvbNC6z_hRq82q2f3E1Bd-OZKPI9-sUliiJ-9TT5QfXsJY21k0KPDHrDhgEswUZKrFiFS3Mmzs43Ch0qEeZYXydiLntF9jAkHN01UMddPMPVzh9KQfi0YcusQhV9bCcJGDHqZ3rR3dNW8un91XwEQC7iP5V9Wn01MVqTyw1LjPC1T26JN1HY4na-mLd2Z986NDq2yzaWTtJ0PFSA&h=UvsTp-heqG4otJeuH6EbuT5UgzP7mUKsv-C_tS8Zxss + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269854423431&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=GbUXWbnzR72O3m2bDno5LshzgWyx4gZ3JCe5BHRUgfXtDV9d8yq4-VdHINmL4AHgiVcJYD9FJ8BIrIsAtTw059Po5eFyxy21p352vKbKcTOnreYU6_mFpJaSg8o6J4TXdhvG_NuGvtTUL6T_lPk_IzNclDhfMpzb9JYHeuQc4G3zZg_hPzGxwMGFGUtq_DVY3b4sKYejSr5M3HGDakWECnSqGfmi8Y-NuvnvKx_HfkGQaO8Ztr6uc1UceWDfxEPv6ga1zy6FdcmHKY4uG21ZoARFItjTtze_mtwIUJmnZAHJavy6Cr3ZBJzGoQlRXOM6k5FglLbbCdARzCLj3BBD_Q&h=QbxEEGCu8ygIADJilp8zDKEKst6xl1gRwhRhmjZK1iA pragma: - no-cache strict-transport-security: @@ -3601,11 +4230,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a81dfa03-9ccf-4359-9060-9db59f8b5e27 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b9ac3926-5f97-4882-8f91-f490344a531a x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 40C04B66EE3743DDBDB52DD3B7B64826 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:52Z' + - 'Ref A: 6B10DD9C2A7E411FB7A6C698275AE526 Ref B: BN1AA2051014031 Ref C: 2026-09-14T23:56:25Z' x-powered-by: - ASP.NET status: @@ -3617,7 +4246,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry set Connection: @@ -3625,26 +4254,28 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269849252135&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=OHtslxdhY1h287xVl6vCK5-4ojKq8_1mUgPC_y0yxQW6Lr_WqmZ9or4B8wX6u3_qwjwFSVgXXcdXl9pK0_ZSM7qXeyxk69KYOC-AVMxu7d0nQG7br_lcDP6jjQkwlZ33-Z2fneTalc7J8nfUmZ5MmqPZ3G4wpkNOO7vKWNVoRNflKIlm1i_ZEydtN_Tqv67nYxPjB1jEPZ36d101wyswo5ECTGzubuu6f7qGUadc6EhbFX2ooZDqP3Skied-URlzKTSnkX1PM4SppiTxlGaAAcPfFGRVYeYmuHvcwq-aRL_rEEvGCm2un6aCWdjTQl9_ogH4izUE1nQPBa0XhzDRYw&h=xENQ0VBAUrEIbcTDgiJtnrVlx8_hpLCzqou95vAwPyQ response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:24.0345113"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1530' + - '6788' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:07 GMT + - Mon, 14 Sep 2026 23:56:40 GMT expires: - '-1' pragma: @@ -3658,11 +4289,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/412c232f-34c0-4b87-a885-48c8d390731f + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c2f08d3d-5a62-47ae-9bdc-0440a164c11c x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F106AEBB9399466197A234094714D8A0 Ref B: BY1AA1072317025 Ref C: 2026-03-24T05:59:07Z' + - 'Ref A: 7E721A4A1F6C4726A83A3B2B54B37B02 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:56:40Z' x-powered-by: - ASP.NET status: @@ -3674,7 +4305,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry remove Connection: @@ -3682,313 +4313,389 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:07 GMT + - Mon, 14 Sep 2026 23:56:40 GMT expires: - '-1' pragma: @@ -4000,9 +4707,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 8874373CF6364ED4A6D928E68C222395 Ref B: SJC211051205027 Ref C: 2026-03-24T05:59:08Z' + - 'Ref A: A5D8937181FB4F1699CB0567D0117DE5 Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:56:41Z' status: code: 200 message: OK @@ -4012,7 +4719,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry remove Connection: @@ -4020,26 +4727,28 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:24.0345113"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1530' + - '6788' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:08 GMT + - Mon, 14 Sep 2026 23:56:41 GMT expires: - '-1' pragma: @@ -4053,9 +4762,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 4BBD7BE8037947428F161BE1BC7D42B1 Ref B: BY1AA1072318029 Ref C: 2026-03-24T05:59:08Z' + - 'Ref A: 080437EF952441589A9DAA41C4F82600 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:56:41Z' x-powered-by: - ASP.NET status: @@ -4067,7 +4776,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry remove Connection: @@ -4077,17 +4786,19 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: @@ -4095,7 +4806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:09 GMT + - Mon, 14 Sep 2026 23:56:42 GMT expires: - '-1' pragma: @@ -4109,13 +4820,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/b06d364c-d8ab-4171-87a5-ced62ff994e5 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/2d5456c7-b819-4642-a58f-306575e39984 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 55DCD26E0B094165992D85DFDA153D77 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:59:09Z' + - 'Ref A: 01062770D43F4FEC9E08FF4EED2C8168 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:56:42Z' x-powered-by: - ASP.NET status: @@ -4123,12 +4834,12 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"registries": [], "secrets": [{"name": - "acr000003azurecrio-acr000003", "value": "***"}]}}}' + "acr000003azurecrio-acr000003", "value": "EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}]}}}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry remove Connection: @@ -4140,7 +4851,8 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -4150,17 +4862,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:59:09 GMT + - Mon, 14 Sep 2026 23:56:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270038927157&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=FTnDCCs2cLomtLjQsssyIP2t3RDXdPu8OztbXMKj6udsVDPC8gM_gBuVvpbFrZ25kdSZ9U8hHHXzjq2iJHdVxf5X_umHV_RJxRiEOIh4F7mjT216cLlACkXY-tBpawypJHuH-BXYzgiJG2Clyt2fllBbEIqZ0OqLZVVuBcQbBkYnkb7RkmJb530vkccNebG6ZtnCigWpoBYyT2qVu38VEfTZ-xJ4cXHekMCGYuL_oMPCzO0FadLTOGFgQIEpNe878uJQwfnDLjIRL8pqMqsGjIXw8JTXGO6ZgIxOkr6F8jaLngVp5rDj8w8cVYJbW5Obyuck_--UAuQFTLVvh1kEbw&h=4iOjk-zE5sTi-iKn6Z1xoiasj8gvLFVcLZK87b7Utok pragma: - no-cache strict-transport-security: @@ -4170,11 +4883,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/c4c74df1-a1ef-4cec-bb76-6ccd5f62469c + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/559b6ae4-b522-430b-a84c-44cf967ae171 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 8A8EDB2792AD4D15A19DC21C041680BF Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:59:09Z' + - 'Ref A: 64F576CC566E44B9B2BBE62861AED7FE Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:56:42Z' x-powered-by: - ASP.NET status: @@ -4186,7 +4899,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry remove Connection: @@ -4194,9 +4907,10 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270038927157&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=FTnDCCs2cLomtLjQsssyIP2t3RDXdPu8OztbXMKj6udsVDPC8gM_gBuVvpbFrZ25kdSZ9U8hHHXzjq2iJHdVxf5X_umHV_RJxRiEOIh4F7mjT216cLlACkXY-tBpawypJHuH-BXYzgiJG2Clyt2fllBbEIqZ0OqLZVVuBcQbBkYnkb7RkmJb530vkccNebG6ZtnCigWpoBYyT2qVu38VEfTZ-xJ4cXHekMCGYuL_oMPCzO0FadLTOGFgQIEpNe878uJQwfnDLjIRL8pqMqsGjIXw8JTXGO6ZgIxOkr6F8jaLngVp5rDj8w8cVYJbW5Obyuck_--UAuQFTLVvh1kEbw&h=4iOjk-zE5sTi-iKn6Z1xoiasj8gvLFVcLZK87b7Utok response: body: string: '' @@ -4204,17 +4918,18 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 24 Mar 2026 05:59:11 GMT + - Mon, 14 Sep 2026 23:56:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287511768055&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=pMi2blXJDErgbE126YwivS3ju2BCeO_rSSG-qvMtikc5G1cMzlYVGkmt-MjxDN6YckUyTVz9eiWWjPhHUCLMhT9xraJ61HtyTtezMT85rNo6T4bkpls9LbKJeXxsC60EmWY6pVCu5fmCkZL9n5HVBkTBL2jIa4KDAVMVtJ8FTMbbm2bN6LD-aQ86c4HuFeQUPIL8BWkWHNyA3ng4bCj9C3b9Waur4F0w3xNK3xfcBbYamQOVJkblxUTch1N65-EA0dfpETib59TVqoeHvTx3u8l5oPnOb6Uj7eyRXIGb7PBuTGLmY3of0RWFnO1eRsDugb-9y8igBAr6D-BuSyouUw&h=Y-aaUB7EIEVRRoSQvo2GH0VNCvdZhKrSavPZFDxirVQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270043648481&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=KkdxRy49RdnrAROSCCyFmqWMk7fKERGgD4h6BHLbCVJFmBJp0CfCv3Fl6hefKUH78QA4bnYwIUuSrAG9lheij0HGm7rcEe-UeiVyj-nXZm1wFmnCU5aThKWnvqsA9ETG8UDyzyettvFXJS18e76IEOyAGCZL0zhPdoymU8ohnHbVEdu_fB9R3rDCoyQVSo8GlH-dmhoJBaeBeoy07srNQL7MOIZsnOp4xazGyKhIwany6BK9A8C5I2Czi5izNWBjArDKaYh2wVfRUIyi22A-d0FH6UW95ttD-WSFRrDq_YEWWlsJlHGCK9-xEhPNLLBkEggsZJfb9U48GFJmgIXEtg&h=Tdokw0hxgjlYg4ki0RobV_Y2qsqAdBCqi1rW9y-NwF8 pragma: - no-cache strict-transport-security: @@ -4224,11 +4939,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/4a18ab5f-c2ad-4ba8-afcb-db8ddf36b5e9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/60f0c604-6958-42a0-82e2-6bfe5d0c094d x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3F5722B396484561BC53A0ADD001CC9F Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:59:10Z' + - 'Ref A: A7A7C614E4B1448DB880555052C75077 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:56:44Z' x-powered-by: - ASP.NET status: @@ -4240,7 +4955,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry remove Connection: @@ -4248,26 +4963,28 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270038927157&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=FTnDCCs2cLomtLjQsssyIP2t3RDXdPu8OztbXMKj6udsVDPC8gM_gBuVvpbFrZ25kdSZ9U8hHHXzjq2iJHdVxf5X_umHV_RJxRiEOIh4F7mjT216cLlACkXY-tBpawypJHuH-BXYzgiJG2Clyt2fllBbEIqZ0OqLZVVuBcQbBkYnkb7RkmJb530vkccNebG6ZtnCigWpoBYyT2qVu38VEfTZ-xJ4cXHekMCGYuL_oMPCzO0FadLTOGFgQIEpNe878uJQwfnDLjIRL8pqMqsGjIXw8JTXGO6ZgIxOkr6F8jaLngVp5rDj8w8cVYJbW5Obyuck_--UAuQFTLVvh1kEbw&h=4iOjk-zE5sTi-iKn6Z1xoiasj8gvLFVcLZK87b7Utok response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:43.3146201"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1477' + - '6735' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:26 GMT + - Mon, 14 Sep 2026 23:56:59 GMT expires: - '-1' pragma: @@ -4281,11 +4998,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/aaada086-24c0-41bf-a483-f07ad8046a33 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/52efcfaa-c1a0-40e6-8d1a-38ad654263ae x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 6502C8A0333E4A0CA10E97706A2AB769 Ref B: BY1AA1072319054 Ref C: 2026-03-24T05:59:26Z' + - 'Ref A: 3ED33BBED3DB42F39F0DF0F61509564B Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:56:59Z' x-powered-by: - ASP.NET status: @@ -4297,7 +5014,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry list Connection: @@ -4305,313 +5022,389 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North - Central US (Stage)","West US 2","North Europe","East US","East Asia","North - Central US","Germany West Central","Poland Central","Italy North","Switzerland - North","Sweden Central","Norway East","Japan East","Australia East","West - Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea - Central","South Africa North","South Central US","South India","UAE North","UK - South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast - Asia","Spain Central","UK West","Australia Southeast","Central India","France - South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Japan West","Australia Southeast","France South","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West + US 2","North Europe","East US","East Asia","North Central US","Germany West + Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway + East","Japan East","Australia East","West Central US","East US 2","West US","Brazil + South","Canada East","France Central","Korea Central","South Africa North","South + Central US","South India","UAE North","UK South","West Europe","West US 3","Canada + Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia + Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium + Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast + Asia","Sweden Central","Canada Central","West Europe","North Europe","East + US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Italy North","Poland Central","South - India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central - US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["West US + 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West + Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North - Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada - Central","West Europe","North Europe","East US","East US 2","East Asia","Australia - East","Germany West Central","Japan East","UK South","West US","Central US","North - Central US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","West Central US","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North - Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden - Central","Canada Central","West Europe","North Europe","East US","East US - 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West - US","Central US","North Central US","South Central US","Korea Central","Brazil - South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","UK West","Central India","Japan West","Australia - Southeast","France South","Jio India West","Spain Central","Italy North","Poland - Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North - Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast - Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","UK West","Central India","Germany North","New Zealand North","Austria + East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium + Central","Japan West","Australia Southeast","France South","Spain Central","Italy + North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West + Europe","East US","East Asia","North Central US","Southeast Asia","Sweden + Central","UK South","West US","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East US + 2","France Central","France South","Germany West Central","Indonesia Central","Italy + North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway + East","Poland Central","South Africa North","South Central US","South India","Spain + Central","Switzerland North","Switzerland West","UAE North","UK West","West + Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany + North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK + South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK + South","East US 2","Australia East","France Central","Canada Central","Poland + Central","Italy North","Korea Central","Japan East","Japan West","North Central + US","South India","Spain Central","West Central US","West US 2","Southeast + Asia","South Africa North","Central India","South Central US","Brazil South","Central + US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","UK South","East US 2","Australia East","France Central","Canada + Central","Poland Central","Italy North","Korea Central","Japan East","Japan + West","North Central US","South India","Spain Central","West Central US","West + US 2","Southeast Asia","South Africa North","Central India","South Central + US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden + Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada + East","Mexico Central","North Central US","West Central US","Central US","West + US 2","Brazil South","France Central","Germany West Central","Japan East","Japan + West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile + Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast + Asia","South India","Spain Central","Switzerland North","West US 3","West + US","East US 2","Italy North","Central India","East US","UAE North","South + Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '39103' + - '47420' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:26 GMT + - Mon, 14 Sep 2026 23:56:59 GMT expires: - '-1' pragma: @@ -4623,9 +5416,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9E03BC5C36644528B65F238E361EEF43 Ref B: BY1AA1072318054 Ref C: 2026-03-24T05:59:26Z' + - 'Ref A: 1933372D6C7F4BD3A0D02EE6763DA0D0 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:57:00Z' status: code: 200 message: OK @@ -4635,7 +5428,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - containerapp job registry list Connection: @@ -4643,26 +5436,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:43.3146201"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, + 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1477' + - '6735' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 05:59:27 GMT + - Mon, 14 Sep 2026 23:57:00 GMT expires: - '-1' pragma: @@ -4676,9 +5471,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3CA920F256DE4A6B8C325E2C8BEA6282 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:59:27Z' + - 'Ref A: 1B825FA663CD42A7A845B66CD171F295 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:57:00Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml index 112678c4913..88f5d4f0d1f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource create Connection: @@ -13,7 +13,8 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -25,158 +26,185 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '24795' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:46:36 GMT + - Mon, 14 Sep 2026 23:35:16 GMT expires: - '-1' pragma: @@ -188,9 +216,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 14D668AA37F34CC99A069C2760C81EAE Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' + - 'Ref A: 9E54E434B3394995B46DD3C8D248455C Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:35:17Z' status: code: 200 message: OK @@ -201,7 +229,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource create Connection: @@ -213,23 +241,24 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A46%3A40.4548437Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A35%3A19.4015376Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257199743373&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=HH_IQLe_es17NScfZw4lsksK-vSA5fHb6iIhT_8cYcrWqXmgzn44FB_qPZPGByx6-NcbCJcpdGrb3XxVCwMeEGsBb14KBagFJNLkK9EsnwtvrbzYeCsa9hnv9aNsB-1F3p24-8aUgmmJtAnu_bHCwMFDvBBWVXXbbvuZqW3cZ-15dLknBnCVRTjtPPhDe-HOsu9GfmvtcKgxcga9variVaqJ_LCf7HvByKxCOnUIlHhD4YJYKTlnt1j8x9qXkvk1JnXkeXK0A0vca_zbSl3AwVKo9i64t8fpgJrnThxw-oIjegOU0AA8jvU8zdWCnihYUJZzTnh1mtQEwAIN70B-qQ&h=xaP7V6Zvv-MI50b0UiJVgqIFD9lJKG_1g-62h9308eg cache-control: - no-cache content-length: - - '854' + - '1029' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:46:39 GMT + - Mon, 14 Sep 2026 23:35:19 GMT expires: - '-1' pragma: @@ -241,11 +270,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/612f6a2c-e464-4fcb-9b7c-63e8002da5ea + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/58bf99a9-9cbb-4ce7-a681-6480ca665b40 x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: 4E6BB32AB61D41C0BC89F502B449B87E Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' + - 'Ref A: 9506CEA757484A08BEE9BFF9B6D0AF46 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:35:17Z' status: code: 201 message: Created @@ -255,7 +284,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource create Connection: @@ -263,17 +292,18 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257199743373&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=HH_IQLe_es17NScfZw4lsksK-vSA5fHb6iIhT_8cYcrWqXmgzn44FB_qPZPGByx6-NcbCJcpdGrb3XxVCwMeEGsBb14KBagFJNLkK9EsnwtvrbzYeCsa9hnv9aNsB-1F3p24-8aUgmmJtAnu_bHCwMFDvBBWVXXbbvuZqW3cZ-15dLknBnCVRTjtPPhDe-HOsu9GfmvtcKgxcga9variVaqJ_LCf7HvByKxCOnUIlHhD4YJYKTlnt1j8x9qXkvk1JnXkeXK0A0vca_zbSl3AwVKo9i64t8fpgJrnThxw-oIjegOU0AA8jvU8zdWCnihYUJZzTnh1mtQEwAIN70B-qQ&h=xaP7V6Zvv-MI50b0UiJVgqIFD9lJKG_1g-62h9308eg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n - \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n + \ \"name\": \"MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=2zlUjXyHWtAPTdhqW49DgbFj19nbk9feW1Dh7Dp6svWzzuoAgAnhjKGpiHxdjhjMNt4BhNDdI-XvV5rTn22jw5j0K5IuoXu8W2o5W9K01bbZ2PztIUILTQFh8eUYVorXzzpguoNjPJoYVoE6bIBYUbMybV2a9CWfYl9moAfCV-r4RMtl6vEFR8bZJ0mYHTb_XJmRBbzQmO1ZzKepXj8QKg-NzUXxeJB5dmbOZSLeP9YBGsTp4h3bXpsHdCfnd6bM-_UI3CmuEuQ5FtQkxvZtAZHBLOGhR7ly1rU0yxQJ45kW34TBb6_l3Ifz5bI-G75paduolswbv63azBcPaEdpug&h=McwwVis7Zsva-Yil-eN0EHJzXYcGpCxIbxW_GNcZ_w4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257208451616&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=L5dI5nk-4WO9GaSDE942xtl3RAtK18ubLEs-6OHsPDORckxWVwuasCxTl9F16JEZeVyWOhUz37Ssrzk9oxtXEBfyyQ13mj7iEDczRFq18boBENGktU6RuyJC4gBmHyYAKE7QK_XfLCT86xgE17KIDbECtPXhVO_3MbBlykUnx20kJlJp86Nv0rk0IAbtRKXzKcGRU8IQ39q9NtnhBCLqbg7KmJuh9a8-Qugbgc43tdQpinaTJZOcOtqdsWHDG4FkcMIe9IbVfp5EL3y1IcNbW1tYa11fmRaRs4naFmxoors2RlW6XtvT3b1tPjhCZXTCsmYVM1Uo1pm_3eig2OdNcg&h=kqFte_Mmn-Qw7mZ5AD7oc6ynIGpFhIN1slfTXdbN9II cache-control: - no-cache content-length: @@ -281,11 +311,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:46:40 GMT + - Mon, 14 Sep 2026 23:35:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=oAThIfmeJGp6mtK3Lby8ZpBGkH42KUrPX7Lbf-NMjstji4EE75XMiFab7VDChvfyw5pUls5uVg7tXY4QCpwp0MOYd-Yyjp-SNUbT65fDGUGIwBKGOiX925M1CyCgj4hQ0zm5PHGkXSLM6jculZAUc2T4I_JRPRprbHlR3_wGQMNVE8b27Nr0S6M243qCX-c4pu030ZsTTLL8B62Cb4fAxbZUZngDyXD6DImfNroox_XmW0WQDv1ck5nnZW3b1gp27SI8tHBI9V5GlTXaoA2uJw3GIXIffiXhlshlGuBjWMRgNwmE24Ewg1skL7ij6fG1xIFc_5_yUGUl8NZJjqYjpg&h=c4yFJvTp9RvgrTuYZftjBbEp9E6BEHcKeHTEmp79-pA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257208607852&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=UVMDb0ed38kdOr8YwaijLjA6p46iiDjYW1kV9VmC4d6g5fjBRQ-fitDw1m0UP6gF1DCXHl5ucGQUSZzrn3jGbXBIXl_3vECjgOjEuBdQ24zBd4ArhSkxoVYRcbRqs1Kkwlh2P_IwcYaIXZSEPJu10-ZW6GxGKT2fv43Sy8izxd-CS5HuCIrZ2JVvDFsHmZYN1S7xWR7QMzYBTwXMYSEWeey6sdB3wpw6lZzJZnOV6rBH0CyzlkUfvIQjTp9R_nA5B7yWEWreS2HsflcF0hT4-qwHoJLJ2O2DG65StYjJv4GxPe9yYB-UH1NImmF-FBj10P-ZFf2njo1ItvDqSUVenA&h=0HcZMkbQkP_M6rmmIs56E1l3oOrjXOi3wHznDkPd97I pragma: - no-cache strict-transport-security: @@ -295,11 +325,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/bbf057af-330e-47b4-8bd7-bfc1d6d2a347 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/d8f7a7e7-866f-471c-9df7-af45774bf301 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3DF9534822984AE1840E2174BF76141D Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:40Z' + - 'Ref A: 06433AF4BFA8404193116EF5F17A8F1B Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:35:20Z' status: code: 200 message: OK @@ -309,7 +339,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource create Connection: @@ -317,13 +347,14 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257199743373&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=HH_IQLe_es17NScfZw4lsksK-vSA5fHb6iIhT_8cYcrWqXmgzn44FB_qPZPGByx6-NcbCJcpdGrb3XxVCwMeEGsBb14KBagFJNLkK9EsnwtvrbzYeCsa9hnv9aNsB-1F3p24-8aUgmmJtAnu_bHCwMFDvBBWVXXbbvuZqW3cZ-15dLknBnCVRTjtPPhDe-HOsu9GfmvtcKgxcga9variVaqJ_LCf7HvByKxCOnUIlHhD4YJYKTlnt1j8x9qXkvk1JnXkeXK0A0vca_zbSl3AwVKo9i64t8fpgJrnThxw-oIjegOU0AA8jvU8zdWCnihYUJZzTnh1mtQEwAIN70B-qQ&h=xaP7V6Zvv-MI50b0UiJVgqIFD9lJKG_1g-62h9308eg response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n - \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n + \ \"name\": \"MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -333,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:41 GMT + - Mon, 14 Sep 2026 23:36:20 GMT expires: - '-1' pragma: @@ -345,11 +376,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/81c94ae3-b2ff-4707-b911-25038615fc05 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/b32fb640-8f41-4028-800b-7dfb610f6d17 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 7170097FDA494F73AD92F49BDF7463EC Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:41Z' + - 'Ref A: 1907F3F1E7414A85B8D76E6FC3C7A7E1 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:36:21Z' status: code: 200 message: OK @@ -359,7 +390,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource create Connection: @@ -367,21 +398,22 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A20.1749971Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1010' + - '1063' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:42 GMT + - Mon, 14 Sep 2026 23:36:21 GMT expires: - '-1' pragma: @@ -393,9 +425,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 035D54B3255E499881922D63869FAB24 Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:42Z' + - 'Ref A: 1F53D73D7B034129B10C299B14FFBFD9 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:36:21Z' status: code: 200 message: OK @@ -405,7 +437,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -413,7 +445,8 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -425,158 +458,185 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '24795' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:44 GMT + - Mon, 14 Sep 2026 23:36:22 GMT expires: - '-1' pragma: @@ -588,9 +648,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C8CC86C422754D2E85AACB3BE44C3600 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:44Z' + - 'Ref A: 460BA91FFDB14B67A4961C26240562FE Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:36:22Z' status: code: 200 message: OK @@ -600,7 +660,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -608,21 +668,22 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A20.1749971Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1010' + - '1063' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:45 GMT + - Mon, 14 Sep 2026 23:36:22 GMT expires: - '-1' pragma: @@ -634,9 +695,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 1BC9E2B39D9245B4AC12CE4512CEB381 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' + - 'Ref A: B96F7C6F5E3145DBB425B5A907D8BD98 Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:36:23Z' status: code: 200 message: OK @@ -646,7 +707,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -658,21 +719,22 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A24.246473Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1036' + - '1089' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:48 GMT + - Mon, 14 Sep 2026 23:36:24 GMT expires: - '-1' pragma: @@ -684,11 +746,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/742d6299-3fda-4c5a-8cd6-3219cb597f5d + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/644049ba-694c-4d42-9d67-f526df348431 x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: BC2ABC64EC3D4A709A14A9CF271DD72A Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' + - 'Ref A: 35835D77DEA649A49DD7DDDC1FD1601F Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:36:23Z' status: code: 200 message: OK @@ -698,7 +760,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -706,7 +768,8 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -718,158 +781,185 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '24795' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:49 GMT + - Mon, 14 Sep 2026 23:36:24 GMT expires: - '-1' pragma: @@ -881,9 +971,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: EAF88A5759614A35B5FE3F9D33A13C64 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' + - 'Ref A: 2F88214414F24E169A1704388F392FE4 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:36:24Z' status: code: 200 message: OK @@ -893,7 +983,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -901,21 +991,22 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A24.246473Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1036' + - '1089' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:50 GMT + - Mon, 14 Sep 2026 23:36:24 GMT expires: - '-1' pragma: @@ -927,9 +1018,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 2FF7CDBE9BA54C8D8650ABCD6AF4CBDE Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' + - 'Ref A: 5636AA8DD61B42928F984BC72DA4ADF5 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:36:24Z' status: code: 200 message: OK @@ -939,7 +1030,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -951,21 +1042,22 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A25.8911658Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1019' + - '1073' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:54 GMT + - Mon, 14 Sep 2026 23:36:25 GMT expires: - '-1' pragma: @@ -977,11 +1069,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a4a7e56f-0fb1-4688-a6e2-c38e6854950d + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/f8fd4f7c-d6a6-44fe-bf3d-4d7aabc6b57c x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: CC58CC95D28E42E2AC5D7976BB206190 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:51Z' + - 'Ref A: 006DF2FCE5024EE59A17F7226F7002DF Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:36:25Z' status: code: 200 message: OK @@ -991,7 +1083,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -999,12 +1091,13 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2025-04-25T09:46:33Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2026-09-14T23:35:15Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1013,7 +1106,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:54 GMT + - Mon, 14 Sep 2026 23:36:25 GMT expires: - '-1' pragma: @@ -1025,9 +1118,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 82A00F91D7F44BB18BB3525F8E8419E2 Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' + - 'Ref A: CF5510980F0D49B4B8ACF0FFDDBDD50D Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:36:26Z' status: code: 200 message: OK @@ -1037,7 +1130,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -1049,7 +1142,8 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: @@ -1063,7 +1157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:47:58 GMT + - Mon, 14 Sep 2026 23:36:27 GMT expires: - '-1' pragma: @@ -1075,52 +1169,51 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 34E404966CEF472EA92E9DFD507E2DFD Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' + - 'Ref A: 46F31577496C46B5B72D7879D8D77459 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:36:26Z' status: code: 200 message: OK - request: body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"adminUserEnabled": - false, "anonymousPullEnabled": false}}' + false}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr create Connection: - keep-alive Content-Length: - - '125' + - '94' Content-Type: - application/json ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:29.2980343+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:29.2980343+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-14T23:36:29.2980343Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546068+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546506+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1499' + - '1715' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:14 GMT + - Mon, 14 Sep 2026 23:36:30 GMT expires: - '-1' pragma: @@ -1132,113 +1225,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f70e4cc0-badd-4f28-882f-df43beffd4c9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/5e513f73-5217-46f0-b74b-0fec431fffa9 x-ms-ratelimit-remaining-subscription-global-writes: - - '12000' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '800' - x-msedge-ref: - - 'Ref A: 4877C4F6775846EB9A76F6C528485FB7 Ref B: SEL221051503047 Ref C: 2025-04-25T09:47:59Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk - response: - body: - string: '{"status":"Succeeded"}' - headers: - api-supported-versions: - - 2025-03-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712960276721&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=3zeGk9stkwpg3-ppqYbu6bel9pbacXlOCJg96HPmtutzmgoCKelGq61Pcb1PDMGKJd21_FUyjkbrcoxyoc0tuuxx8QXcHKrJ7KYFIIyoAgRg6T-XGswAUJg4uSyFLBUbJrRkreHiQjhf0iCCvxaYZwrCAj6EMohm6RUjy3-u3DTPux0Egh-k2PmKzIuR2M9QjBmyvxBu8h3eA3MxY79JJD7FRb7m1NxZhLD4zCktaKtxb2xvTOGQBM3LzDKt5Q2NPXNiXVkPLtWmf8PZBLoklw4qSvUH2TvES-K3uslNHVFTFyx1B9LmasD_Lfu3IvZQ_93UxqtAy8FhBu7LIc57Ng&h=A8h3BkyhdqBQJDgyQo0Ku2W95H8ZkbtU_iG0rvI4ao0 - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/8be659ca-2e02-40d4-ab8a-7c10f7296cb3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 670E002249964473B58CBFC8A85BEAA6 Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' - headers: - api-supported-versions: - - 2025-03-01-preview - cache-control: - - no-cache - content-length: - - '1500' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '199' x-msedge-ref: - - 'Ref A: 461D93259576462D9DBF8E7E7DCCDB6F Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:16Z' + - 'Ref A: 282E85F1824F444A8BB1537F23461325 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:36:28Z' status: code: 200 message: OK @@ -1248,7 +1241,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr webhook create Connection: @@ -1256,30 +1249,22 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/huanglitestcanary","name":"huanglitestcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg1","name":"huanwucanaryreg1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/agentpoolcanary2","name":"agentpoolcanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg2","name":"huanwucanaryreg2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwueastus2euap01","name":"huanwueastus2euap01","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ctest/providers/Microsoft.ContainerRegistry/registries/cidregistry","name":"cidregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-04-27T17:47:38.6648741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-04-27T17:48:14.204558Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msearch/providers/Microsoft.ContainerRegistry/registries/msearch1","name":"msearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-17T20:22:10.5860463Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-17T20:22:10.5860463Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/ACRSoftDelete","name":"ACRSoftDelete","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-25T14:52:27.3960954Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:52:05.6107964Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/HustroudRealCanary","name":"HustroudRealCanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-18T17:44:09.5117757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-19T15:45:02.6902047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch","name":"johshacrmetadatasearch","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:10:10.212306Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:10:10.212306Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ptcBrownbag","name":"ptcBrownbag","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T15:58:17.8406846Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T15:58:17.8406846Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch1","name":"johshacrmetadatasearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:56:17.811156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:56:17.811156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadataUnitTest","name":"metadataUnitTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-12T17:24:53.9169276Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T21:12:45.4115208Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadatatestregistry","name":"metadatatestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-18T18:27:11.2513411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-18T18:27:11.2513411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/wus2test","name":"wus2test","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-24T23:10:32.9424682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-24T23:10:32.9424682Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ContainerRegistryMetrics","name":"ContainerRegistryMetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"87d7f6ef-5c58-4f3b-af9c-0cf7c6feee31","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-04T16:26:03.6327251Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-30T19:48:51.5345767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wju/providers/Microsoft.ContainerRegistry/registries/wjutasktest","name":"wjutasktest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-17T04:46:48.6292944Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-17T04:46:48.6292944Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arc-demo-backup/providers/Microsoft.ContainerRegistry/registries/arcdemobackupregistry","name":"arcdemobackupregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-25T16:42:21.3555381Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-25T16:45:58.9778337Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cav2-e2e-loadtest/providers/Microsoft.ContainerRegistry/registries/cav2e2e","name":"cav2e2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-28T01:05:19.8384666Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-28T01:05:19.8384666Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/devcabarker","name":"devcabarker","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-10T21:18:26.7436104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-10T21:18:26.7436104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-acr23oct24cp4/providers/Microsoft.ContainerRegistry/registries/acr23oct24cp4","name":"acr23oct24cp4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-23T00:21:35.2239266Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-23T00:21:35.2239266Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-bcdr-testing/providers/Microsoft.ContainerRegistry/registries/acrbcdrcanary","name":"acrbcdrcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T19:03:56.0674605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T19:03:56.0674605Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest21feb25/providers/Microsoft.ContainerRegistry/registries/khallcmktest21feb25cr","name":"khallcmktest21feb25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"a6494d55-348c-4a6b-b0bf-86e66b3b1c34","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest21feb25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest21feb25":{"principalId":"33e30c7c-2af5-47c3-b727-c300612a6bd3","clientId":"d9d9a689-7762-4854-8ab1-5e80c6cbd318"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:30:43.9875765Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:27:28.123178Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeyclitestacr","name":"zoeyclitestacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-01T00:53:21.8364822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-01T00:53:21.8364822Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistry","name":"jumboregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-07T19:33:43.6103413Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-28T18:08:23.8862902Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistryv2","name":"jumboregistryv2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-26T18:27:08.098728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-26T18:46:43.1105234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistrytest/providers/Microsoft.ContainerRegistry/registries/jumboregistrytest","name":"jumboregistrytest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-16T16:26:43.942495Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-21T22:02:05.7559949Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry60tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry60tb","name":"jumboregistry60tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-26T23:36:59.9432804Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-26T23:36:59.9432804Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry40tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry40tb","name":"jumboregistry40tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-15T23:21:22.6561217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-15T23:21:22.6561217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/helmdemo/providers/Microsoft.ContainerRegistry/registries/helmdemo","name":"helmdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/TELEPORTCAPSTEST","name":"TELEPORTCAPSTEST","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-12T23:27:12.0941403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-12T23:28:06.1559209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/teleportmetricstest","name":"teleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-10T00:23:36.0112689Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-30T00:48:30.8799876Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CanaryTesting/providers/Microsoft.ContainerRegistry/registries/Testing2","name":"Testing2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T23:22:51.5381198Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T23:24:37.9845219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resh-rg/providers/Microsoft.ContainerRegistry/registries/allaboutacrmetrics","name":"allaboutacrmetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-03T17:33:34.0668762Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-01T23:30:31.3238267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/dpteleportmetricstest","name":"dpteleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-22T22:25:33.9482191Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-22T22:25:33.9482191Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshtokensandscopemaps/providers/Microsoft.ContainerRegistry/registries/johshtokensandscopemaps","name":"johshtokensandscopemaps","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-07T23:00:35.3714024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-07T23:00:35.3714024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-acr-0425/providers/Microsoft.ContainerRegistry/registries/joshbaunachcr0425","name":"joshbaunachcr0425","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-25T21:22:22.9789133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-25T21:23:46.6667423Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zaihaotest/providers/Microsoft.ContainerRegistry/registries/yzhonpremtest","name":"yzhonpremtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T04:47:53.6558862Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T04:47:53.6558862Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-avtakkar-test/providers/Microsoft.ContainerRegistry/registries/avtakkarcuseuap","name":"avtakkarcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-14T20:31:16.8985248Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T17:27:33.1500508Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jasminetest/providers/Microsoft.ContainerRegistry/registries/jtcuseuap","name":"jtcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-22T02:10:13.641539Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-22T02:10:13.641539Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteventrivy","name":"transteventrivy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-30T21:34:16.8134465Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-30T21:34:16.8134465Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl","name":"transtevendnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-05T23:54:28.5278572Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-05T23:54:28.5278572Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteveneg","name":"transteveneg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-10T03:14:23.9929123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-10T03:14:23.9929123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl3","name":"transtevendnl3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-16T23:41:13.5929237Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-16T23:41:13.5929237Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl4","name":"transtevendnl4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"jioindiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-17T23:09:08.7328512Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-17T23:09:08.7328512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/khallcmksitest/providers/Microsoft.ContainerRegistry/registries/khallcmksitestcr","name":"khallcmksitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"principalId":"ed54f96d-dcec-4858-8961-c187ef371ea1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest":{"principalId":"4ef86bc3-acd0-4d8f-ac7f-0fb89ee9dd9c","clientId":"714c506c-c785-4137-91d1-6b30d94ba869"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-mi-khallcmksitest2":{"principalId":"b8fe8636-2dd5-433a-ac06-9844b015200f","clientId":"e11be5d2-ef82-478f-a47e-3a11e74420db"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:40:25.1585115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-hallcssitest/providers/Microsoft.ContainerRegistry/registries/hallcssitestcr","name":"hallcssitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T02:45:10.4252719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T02:45:10.4252719Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcstest21feb/providers/Microsoft.ContainerRegistry/registries/khallcstest21febcr","name":"khallcstest21febcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcstest21feb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcstest21feb":{"principalId":"55ff7d39-c75c-477c-9ad3-f8498a796069","clientId":"4ad31b06-31e7-4e12-b3d4-1b50dcb308a8"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T14:44:11.7684838Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T14:44:11.7684838Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencopa","name":"transtevencopa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T22:08:27.2769645Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T22:08:27.2769645Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencsscbugbash","name":"transtevencsscbugbash","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-07T00:09:08.1470686Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-07T00:09:08.1470686Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnltest","name":"transtevendnltest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T23:47:19.0980968Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T23:47:19.0980968Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyindexingcheck","name":"esreyindexingcheck","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-03T22:48:02.6111531Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T22:48:02.6111531Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyptc","name":"esreyptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T19:14:18.4005356Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T19:14:18.4005356Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegbatestuksouth/providers/Microsoft.ContainerRegistry/registries/mabelcruksouth","name":"mabelcruksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:24:24.9406258Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:24:24.9406258Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangliregor1/providers/Microsoft.ContainerRegistry/registries/huangliregor1","name":"huangliregor1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-11-12T22:31:43.4444409Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T22:31:43.4444409Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoacr","name":"trisavoacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:41:15.6967317Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T19:15:48.3712479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoscus","name":"trisavoscus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:49:13.3076715Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-14T17:50:36.9332722Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedieus2euap","name":"mabenedieus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-14T18:27:49.7947511Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T18:29:51.7091925Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedicuseuap","name":"mabenedicuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T18:16:40.5262072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T18:16:40.5262072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/artifactcache-loadtesting/providers/Microsoft.ContainerRegistry/registries/ptcloadtesteus2","name":"ptcloadtesteus2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T16:11:07.1449316Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T16:11:38.3226794Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vlintestrgcus/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0923","name":"vlintestregistry0923","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","createdByType":"Application","createdAt":"2024-09-23T05:55:37.3474352Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-23T05:57:23.6489466Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest25/providers/Microsoft.ContainerRegistry/registries/khallcmktest25cr","name":"khallcmktest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"967a4a89-ddf9-44ba-91de-bb7fe045ccf6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest25":{"principalId":"89e91518-6221-4e74-a94b-94c243dddd91","clientId":"66642bf7-8f88-4e81-acd3-c76f67771dc7"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:06:32.7263644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T13:12:54.2277014Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reshrg/providers/Microsoft.ContainerRegistry/registries/reshregistry","name":"reshregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/huanglitest2","name":"huanglitest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T00:35:02.358293Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T00:35:02.358293Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayCR","name":"grayCR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-27T18:48:50.2457782Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry2","name":"huanwuregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry","name":"huanwuregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graycuseuap","name":"graycuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/HuangliRegistry","name":"HuangliRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/toddysm-connected-registry-test/providers/Microsoft.ContainerRegistry/registries/tsmconnectedregistrye2e","name":"tsmconnectedregistrye2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{"Application":"Connected - ACR","Owner":"Toddy Mladenov","OwnerAlias":"memladen"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-12-19T00:19:43.4580083Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-12-19T00:19:43.4580083Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acronpremdemo/providers/Microsoft.ContainerRegistry/registries/acronpremdemo","name":"acronpremdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-07T21:07:11.9486427Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-07T21:07:45.1921076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graytestaudit","name":"graytestaudit","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-14T00:16:03.8901815Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-14T00:16:03.8901815Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acrbuildtest/providers/Microsoft.ContainerRegistry/registries/acrbuildtest","name":"acrbuildtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-07-21T19:06:09.085878Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-07-21T19:07:50.9613994Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/usilwal-jenkins-new/providers/Microsoft.ContainerRegistry/registries/usilwalaks","name":"usilwalaks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-05-12T20:31:55.4138937Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:31:55.4138937Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jenkins-eus-test/providers/Microsoft.ContainerRegistry/registries/jenkinsclusteracr","name":"jenkinsclusteracr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlppepremium","name":"luisdlppepremium","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-21T17:52:12.2228993Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-21T17:57:50.9700404Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpptc","name":"luisdlpptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"norwaywest","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-03T18:08:13.5955085Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T18:16:12.4031384Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ratify/providers/Microsoft.ContainerRegistry/registries/ratifystaging","name":"ratifystaging","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-27T18:59:25.1969543Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-27T19:05:21.9181726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchweu","name":"metadatasearchweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:36:53.0035159Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:12.1766743Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchwcus","name":"metadatasearchwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:37:59.1788133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:19.8798611Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/msrcreproeus","name":"msrcreproeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T23:53:23.5651827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T23:53:23.5651827Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-dev/providers/Microsoft.ContainerRegistry/registries/joshbaunach","name":"joshbaunach","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-22T21:55:17.6013429Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T21:57:42.8457726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/raymsrcrepro","name":"raymsrcrepro","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T00:18:38.559845Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T00:18:38.559845Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mcr/providers/Microsoft.ContainerRegistry/registries/mcreastus","name":"mcreastus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-02T23:50:36.9325308Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-02T23:54:56.5161962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-0314/providers/Microsoft.ContainerRegistry/registries/joshbaunach0314","name":"joshbaunach0314","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-14T17:02:53.5065769Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-14T17:04:59.4400271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxprivate","name":"yxprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-30T22:44:41.632583Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-30T22:44:41.632583Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/demobackup","name":"demobackup","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-02T23:22:15.1018324Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-02T23:22:15.1018324Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxacr","name":"yxacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T03:41:56.7708255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T03:41:56.7708255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05061/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05061","name":"joshbaunacharc05061","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T15:47:01.800294Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T15:48:08.5316016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/acrprivateyx","name":"acrprivateyx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-15T16:33:49.5047405Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-15T16:33:49.5047405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05161/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05161","name":"joshbaunacharc05161","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-16T21:33:46.3576779Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-16T21:34:21.2790753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayuks","name":"grayuks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-29T20:26:53.7511383Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-29T20:26:53.7511383Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/transtevenarc","name":"transtevenarc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:23:04.7415277Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:23:46.0615176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/connectedregistrypatrick","name":"connectedregistrypatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:45:48.7672127Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:45:48.7672127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegba/providers/Microsoft.ContainerRegistry/registries/mecr1","name":"mecr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T20:29:22.379623Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T20:29:22.379623Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gildardog-rg/providers/Microsoft.ContainerRegistry/registries/gildardogdev","name":"gildardogdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T09:17:52.9777011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T20:24:21.2354751Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/brett-test/providers/Microsoft.ContainerRegistry/registries/bbartifactsynctest","name":"bbartifactsynctest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:12.337382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:12.337382Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpcanary","name":"luisdlpcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:47.6991576Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:47.6991576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpuksouth","name":"luisdlpuksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:05:23.628535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:05:23.628535Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpwestcentralus","name":"luisdlpwestcentralus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:19:21.7368016Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:19:21.7368016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testnotation","name":"testnotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T02:38:59.8279972Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-15T02:34:35.9797209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus","name":"yuaneus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-15T23:15:28.9453055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-15T23:20:48.2718399Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus2euapbasic","name":"yuaneus2euapbasic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-14T21:34:01.1464029Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-14T21:34:01.1464029Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxwus","name":"yxwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-16T19:59:48.2279105Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-16T19:59:48.2279105Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivacr","name":"devdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/azurethepolarbear","name":"azurethepolarbear","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vscode-docker-testing/providers/Microsoft.ContainerRegistry/registries/rbacExtensionTest","name":"rbacExtensionTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivgeo","name":"devdivgeo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/theRegistryisnew","name":"theRegistryisnew","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/Tutorials","name":"Tutorials","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RMResourceGroup/providers/Microsoft.ContainerRegistry/registries/Resh94ACR","name":"Resh94ACR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivdemo","name":"devdivdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/hellodevdivacr","name":"hellodevdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupdiffsub/providers/Microsoft.ContainerRegistry/registries/sourceregistrydiffsub","name":"sourceregistrydiffsub","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr3","name":"yxcr3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:12:22.6033775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:13:33.9546255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr2","name":"yxcr2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:00:21.3457265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:03:44.6157205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr1","name":"yxcr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T19:03:08.0825984Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T19:03:08.0825984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmprod","name":"testhelmprod","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-29T12:18:53.659893Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-29T12:19:25.0515213Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem","name":"yxonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-11T20:12:51.5854546Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-11T20:14:55.834411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmpatrick","name":"testhelmpatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-22T04:15:05.0977003Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-22T04:15:27.9518052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem2","name":"yxonprem2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-27T16:55:10.4906423Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-27T16:59:24.3424797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/patricknotation","name":"patricknotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-16T03:02:45.3396713Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-16T03:03:43.5825248Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcanarydebug","name":"yxcanarydebug","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-21T19:46:44.1756124Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-21T19:47:40.638082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxiaks/providers/Microsoft.ContainerRegistry/registries/yxcloudacr","name":"yxcloudacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-11T23:19:36.6342132Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-11T23:20:12.2600301Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akashsinghaltest/providers/Microsoft.ContainerRegistry/registries/aksinghaleus2euap2","name":"aksinghaleus2euap2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T22:16:30.4586467Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T22:16:30.4586467Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubu4buovf5na6xfoygbjw","name":"sourceregistrysamesubu4buovf5na6xfoygbjw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T21:10:31.12671Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T21:10:31.12671Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubpoouc6tklrm3snn73y3","name":"sourceregistrysamesubpoouc6tklrm3snn73y3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T21:41:02.3475275Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T21:41:02.3475275Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubrz25vnt4slxyfq42jx7","name":"sourceregistrysamesubrz25vnt4slxyfq42jx7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T22:18:16.3452947Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T22:18:16.3452947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwzpffqgmi4eydjmwunl","name":"sourceregistrysamesubwzpffqgmi4eydjmwunl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-18T03:01:36.4012867Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-18T03:01:36.4012867Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub7elwwwifzkkgwhvwhtm","name":"sourceregistrysamesub7elwwwifzkkgwhvwhtm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:05:01.3708772Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:05:01.3708772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubimgk2cqqibwocjojtni","name":"sourceregistrysamesubimgk2cqqibwocjojtni","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:07:40.9669138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:07:40.9669138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ContainerRegistry/registries/testregpgo2cjuu4xoc7","name":"testregpgo2cjuu4xoc7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityj7akfitg":{"principalId":"a1635a0f-f142-4e13-860a-623b49bf3ffd","clientId":"48a16b2e-b250-4fdf-8346-2f74431fc852"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T22:14:04.5494966Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T22:14:17.0480984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj64s5relsjotn7yo7bh6373g5ozowjpbeiy3uajccrmdrc7bcly27pijwhvufyizw/providers/Microsoft.ContainerRegistry/registries/cliregvr5phgmvzof4xk","name":"cliregvr5phgmvzof4xk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T17:41:40.1835358Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T17:41:40.1835358Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23oq6kjjqvid2ar2nqaguhubqbivpxl5gy576g5k32rv2adc7l5avwpesnmtsppwr/providers/Microsoft.ContainerRegistry/registries/cliregb5s7iwomh6hgou","name":"cliregb5s7iwomh6hgou","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:01:55.9102859Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:01:55.9102859Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvf342esc4gsdonhsfmsb6csg5wd5wof7324wq7nf43cpnahedku6u6g4gwo4uwwc/providers/Microsoft.ContainerRegistry/registries/cliregjppxob42oo4q76","name":"cliregjppxob42oo4q76","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:08:27.9500802Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:08:27.9500802Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfp7mjlhczmyha3paol5cwfnsr6zl4ntf4altx5idt5ynjrftlzv72o7ajpnwwkc4/providers/Microsoft.ContainerRegistry/registries/clireg6sbq3rat56snyn","name":"clireg6sbq3rat56snyn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:18:11.712155Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:18:11.712155Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmrgxnhoz5ine4rn5wtclzfpar3z7dan3ezpka553y2ym4foivyencskkot2r2iisb/providers/Microsoft.ContainerRegistry/registries/cliregfbyc6jzrrqhf4u","name":"cliregfbyc6jzrrqhf4u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:20:52.0697979Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:20:52.0697979Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2pbkjb5jbqbu7dgnswioxg6wbpcoybf5zt42rbq6kboyiqyb3cuv7o66mpdh4pawf/providers/Microsoft.ContainerRegistry/registries/cliregza6xdcmh6nkfwt","name":"cliregza6xdcmh6nkfwt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T21:17:41.0852412Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T21:17:41.0852412Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubeto7ceq7yhse3daximi","name":"sourceregistrysamesubeto7ceq7yhse3daximi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:09:59.6345906Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:09:59.6345906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubasyyapaolwptdm5bxzt","name":"sourceregistrysamesubasyyapaolwptdm5bxzt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:36:14.1751691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:36:14.1751691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxcuseuap","name":"yxcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:27:18.7712368Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:27:18.7712368Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxwcus","name":"yxwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:56:18.6122687Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:57:10.1574451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxeasia","name":"yxeasia","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:59:53.470104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T19:03:16.8124033Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bowenzhao/providers/Microsoft.ContainerRegistry/registries/bowenzhao","name":"bowenzhao","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T21:17:50.1156024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T21:17:50.1156024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/trisavosea","name":"trisavosea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-07-23T23:04:58.9857265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-31T15:22:24.9667045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry","name":"acrtestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-30T11:08:06.8561219Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-30T11:08:06.8561219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry2","name":"acrtestregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-01T03:44:49.2763798Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-01T03:44:49.2763798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0903","name":"vlintestregistry0903","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T01:46:05.5004661Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T01:45:49.1601549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0904","name":"vlintestregistry0904","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"bbf848e3-4bb9-443b-b1a7-a24a79e5ff18","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/testacrroles/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vlintestid0903":{"principalId":"cb8908d8-39a4-4fd5-b76b-deea09913fc5","clientId":"c0f13b5f-1d2e-4101-85db-611e4fcf4083"}}},"tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T23:09:11.2731004Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-24T07:15:56.200657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0906","name":"vlintestregistry0906","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-06T05:28:31.7848169Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T07:25:14.8733098Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0916","name":"vlintestregistry0916","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-16T01:44:46.6994384Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-16T01:54:29.376342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitftest","name":"huanglitftest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"northeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-30T00:47:40.5055599Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-30T00:47:40.5055599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistryimportpip","name":"vlintestregistryimportpip","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-10T05:02:13.1322952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-10T05:03:17.3507147Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry1013","name":"vlintestregistry1013","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-13T12:52:49.9587621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-13T12:52:49.9587621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/hungligeotest","name":"hungligeotest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-12-27T18:56:20.1164353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-27T18:56:20.1164353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest21","name":"huanglitest21","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T03:38:59.1596146Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T03:38:59.1596146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest22","name":"huanglitest22","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T20:20:57.9051447Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T20:20:57.9051447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglireplica","name":"huanglireplica","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T21:46:48.6716681Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T21:46:48.6716681Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal-e2e-test/providers/Microsoft.ContainerRegistry/registries/portale2e","name":"portale2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-10T20:25:49.0973042Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-10T20:25:49.0973042Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawcus","name":"kichallawcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T12:42:34.4087547Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T12:42:34.4087547Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawildcard","name":"kichallawildcard","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T17:36:47.3784874Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T17:36:47.3784874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichalladoubleencodingtest","name":"kichalladoubleencodingtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-06T16:09:35.4120347Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-06T16:19:56.2477758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallacuseuap","name":"kichallacuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-17T23:28:52.3266154Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-08T21:33:16.4814874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallafrc","name":"kichallafrc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"francecentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T22:43:32.0771918Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T22:43:32.0771918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus","name":"kichallaeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T19:41:19.5824789Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T19:41:46.5594044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aci-task/providers/Microsoft.ContainerRegistry/registries/acitask","name":"acitask","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-09T03:38:26.0691557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-06T17:58:46.7301976Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/p2p-ci-rg/providers/Microsoft.ContainerRegistry/registries/acrp2pci","name":"acrp2pci","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"Purpose":"Distribution - P2P CIs"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-19T18:41:08.5681115Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-19T18:41:08.5681115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglicrtest2","name":"huanglicrtest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-12-06T19:42:43.710084Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-06T19:50:08.5920561Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaitn","name":"kichallaitn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"italynorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-10T17:24:53.902562Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-10T17:24:53.902562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/flux/providers/Microsoft.ContainerRegistry/registries/acrflux","name":"acrflux","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremprivate","name":"acronpremprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-04T21:51:58.13367Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-04T21:51:58.13367Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremdev","name":"acronpremdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-17T22:05:38.0453625Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-17T22:05:38.0453625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremcanary","name":"acronpremcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-11T21:29:53.0130775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-11T21:30:20.5972808Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestregforcmk","name":"kichallatestregforcmk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallauamiforcmktest":{"principalId":"521422a4-c530-4f46-994f-2e4b0a2ab846","clientId":"942a7498-872e-4a67-8cf8-90fbf8021f7a"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-04-19T19:04:32.5561028Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-19T19:04:32.5561028Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweutest","name":"kichallaweutest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T07:42:47.5834707Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-30T07:43:41.0323406Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestreg","name":"kichallatestreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"360ad420-32b0-47bf-bbd8-7274dc6710e8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallatestidentity":{"principalId":"a41656d5-af9f-4a7d-874f-f0ccaf0929f2","clientId":"4a52641b-861d-4aaa-88bd-2fb08c6727c6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-22T17:07:11.6634055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-25T12:34:49.7895985Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/kraterdevteam","name":"kraterdevteam","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-09T19:35:26.9788393Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T23:08:26.6487291Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawus","name":"kichallawus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","identity":{"principalId":"a1f6138e-6251-4089-a46f-208eb9174a03","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-16T14:15:59.9461536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T15:01:00.7215173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isleeus2euap1","name":"isleeus2euap1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-09T19:07:10.0649621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-09T19:07:10.0649621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/eus2euapisletransfer","name":"eus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T18:50:35.6635138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:04:12.3431706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwus","name":"isletestwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T00:45:06.6936677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T00:45:06.6936677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaanonymouspull","name":"kichallaanonymouspull","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-04T13:55:46.4624399Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-04T13:58:11.8521285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweu","name":"kichallaweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-07T14:47:04.246701Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T14:47:04.246701Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwcus","name":"isletestwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T01:01:43.8716644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T01:01:43.8716644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/teus2euapisletransfer","name":"teus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T19:10:32.9106153Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:13:23.3704045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Public-ACR-Dev-Registry/providers/Microsoft.ContainerRegistry/registries/acrdevpublic","name":"acrdevpublic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"TestTag":"Value"},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-29T00:28:37.2116233Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus2euap","name":"kichallaeus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-02T21:52:40.997123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-02T21:52:40.997123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onebranch/providers/Microsoft.ContainerRegistry/registries/acronebranchbuilder","name":"acronebranchbuilder","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-09-30T07:23:25.8315205Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-30T07:23:25.8315205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavoprivatepreview","name":"trisavoprivatepreview","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:45:42.3355435Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T17:47:58.350387Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary","name":"trisavocanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:51:39.1070414Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-12T23:38:27.7956146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavowcus","name":"trisavowcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T00:41:18.2332536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T00:51:13.4704441Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary2","name":"trisavocanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T18:23:18.9004766Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T18:23:18.9004766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavobillingidc","name":"trisavobillingidc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"indonesiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T14:56:45.9703137Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T15:06:00.5196347Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-juliusl/providers/Microsoft.ContainerRegistry/registries/tenet","name":"tenet","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T01:39:08.6459936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T01:39:34.2967984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/buildrpreg/providers/Microsoft.ContainerRegistry/registries/buildrpreg","name":"buildrpreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Managed_Standard","tier":"Managed"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-04235/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc04235","name":"joshbaunacharc04235","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-23T21:18:48.7834726Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-23T21:19:37.7530706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-proxy-wcus/providers/Microsoft.ContainerRegistry/registries/jbproxywcusregistry","name":"jbproxywcusregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-01T18:21:13.6471108Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-01T18:21:13.6471108Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry120tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry120tb","name":"jumboregistry120tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"switzerlandnorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-07T18:26:16.9534532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-07T18:26:16.9534532Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount3","name":"pecount3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:15:13.6752037Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:15:13.6752037Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount4","name":"pecount4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:35:11.0508044Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:35:11.0508044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount5","name":"pecount5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-25T01:27:13.8444571Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-25T01:27:13.8444571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest3/providers/Microsoft.ContainerRegistry/registries/khallcmksitest3cr","name":"khallcmksitest3cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"b6d54134-bac5-4878-b04c-ed0a536d18fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest3":{"principalId":"9bea4ef2-a10b-4080-b491-e36f3ca5ff63","clientId":"111ad366-18a0-4c36-b740-59fdb4f58b50"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:11:07.6255262Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallsitest25/providers/Microsoft.ContainerRegistry/registries/khallsitest25cr","name":"khallsitest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"277350e3-b42a-4d7a-9821-36f25144a961","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T03:27:15.9238974Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:06:14.6299123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest272/providers/Microsoft.ContainerRegistry/registries/khallcmksitest272cr","name":"khallcmksitest272cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"99272fdf-8445-4dbe-8c91-76b3c419dfcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest272/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest272":{"principalId":"7c18c630-3373-4713-a6e5-611899ca7536","clientId":"f37436d0-50cb-402b-b1f6-7b736c2819f9"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T04:25:57.573226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:27:32.858899Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:29.2980343Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:29.2980343Z"}}]}' headers: cache-control: - no-cache content-length: - - '109410' + - '606' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:17 GMT + - Mon, 14 Sep 2026 23:36:31 GMT expires: - '-1' pragma: @@ -1291,9 +1276,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: B62500EDDFB74B7D8A8FA9D25FC843C6 Ref B: SEL221051801033 Ref C: 2025-04-25T09:48:17Z' + - 'Ref A: 99026497AD7240E8BA26B529F699B891 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:36:31Z' status: code: 200 message: OK @@ -1303,7 +1288,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr webhook create Connection: @@ -1311,23 +1296,24 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:29.2980343+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:29.2980343+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-14T23:36:29.2980343Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546068+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546506+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' headers: api-supported-versions: - - 2025-03-01-preview + - 2026-09-01-preview cache-control: - no-cache content-length: - - '1500' + - '1715' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:18 GMT + - Mon, 14 Sep 2026 23:36:31 GMT expires: - '-1' pragma: @@ -1339,20 +1325,20 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3E8790A4F60C4F3BB79BB51F7EFCDCE3 Ref B: SEL221051504021 Ref C: 2025-04-25T09:48:18Z' + - 'Ref A: D68D1DCD821E45EB8225C98A59714791 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:36:32Z' status: code: 200 message: OK - request: body: '{"location": "westus", "properties": {"serviceUri": "http://www.microsoft.com", - "status": "enabled", "actions": ["push"]}}' + "actions": ["push"], "status": "enabled"}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - acr webhook create Connection: @@ -1364,26 +1350,29 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-09-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:32.8817387+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - - '633' + - '689' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:21 GMT + - Mon, 14 Sep 2026 23:36:32 GMT expires: - '-1' pragma: @@ -1395,13 +1384,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c4f31626-aa93-4ad0-b71d-b245d9548e93 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/8b4fddb8-4814-4d1b-a8cd-e10b39fcf41f x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 48075CB45B7F4F01B5A16423EA4789E6 Ref B: SEL221051805049 Ref C: 2025-04-25T09:48:20Z' + - 'Ref A: A415D8EC93F14ACB96D74F0BE3ED1620 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:36:32Z' status: code: 200 message: OK @@ -1411,7 +1400,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -1419,1231 +1408,1129 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '57783' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 19D3FED0FD7049E4BBC0961332D4854F Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 - cache-control: - - no-cache - content-length: - - '633' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 46F13ABBFBF341B5B627265E8E0F1362 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"cli-test": "test"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c636f714-32ae-4c1d-a8eb-6ad4aa109797 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: B2919C3A6C654159A620A162FD3CDB54 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '57783' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 25 Apr 2025 09:48:28 GMT - expires: - - '-1' - pragma: - - no-cache + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '55193' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:36:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C61E5FBB2D244891980934EB4CF5DB2C Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:36:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:32.8817387+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 + cache-control: + - no-cache + content-length: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:36:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 93688F6AB9854C809845F41764BB625A Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:36:33Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {"cli-test": "test"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:34.1936816+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 + cache-control: + - no-cache + content-length: + - '706' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:36:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/6a3fb274-96a9-4252-9a38-80383a7ad786 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: D9150CBCB2DA43EE95A16196537BB784 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:36:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '55193' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:36:34 GMT + expires: + - '-1' + pragma: + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-cache: @@ -2651,9 +2538,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3BA7968730D54E139BAF248B79986F92 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' + - 'Ref A: 41195DE85FC548BCA5E7516DA40B3924 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:36:34Z' status: code: 200 message: OK @@ -2663,7 +2550,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -2671,26 +2558,29 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:34.1936816+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - - '651' + - '706' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:29 GMT + - Mon, 14 Sep 2026 23:36:34 GMT expires: - '-1' pragma: @@ -2702,9 +2592,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '3749' x-msedge-ref: - - 'Ref A: 6BB8F1BC212849A193650B4FD7C54864 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' + - 'Ref A: DBFDCC533FD64056AA202DF19A83A7D3 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:36:34Z' status: code: 200 message: OK @@ -2714,7 +2604,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -2726,26 +2616,29 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:35.447486+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - - '634' + - '688' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:32 GMT + - Mon, 14 Sep 2026 23:36:35 GMT expires: - '-1' pragma: @@ -2757,13 +2650,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/86b1f1a7-744f-4063-a40c-95ffde13b9b8 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/ce3d9640-91a6-4927-8fc4-582e17597ccf x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: F830282644B04E7697E3E16ED6784C1D Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:29Z' + - 'Ref A: 19331A90945E43868F566DF199B3D0B1 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:36:35Z' status: code: 200 message: OK @@ -2773,7 +2666,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - container create Connection: @@ -2781,7 +2674,8 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: @@ -2795,7 +2689,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:32 GMT + - Mon, 14 Sep 2026 23:36:35 GMT expires: - '-1' pragma: @@ -2807,9 +2701,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3652B8F2AB534718A28633654EB09B8B Ref B: SEL221051504019 Ref C: 2025-04-25T09:48:33Z' + - 'Ref A: 44F471ECD1924013A3E962443D34CBDB Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:36:35Z' status: code: 200 message: OK @@ -2822,7 +2716,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - container create Connection: @@ -2834,25 +2728,39 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Pending","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Pending"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Pending\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/a285a6bc-63a1-40f6-8de4-fefaeef62e48?api-version=2018-06-01&t=639250257975818048&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RIf6zx6II6SvR8QLcIJdq0ivZCmHgM-LXXJHb9P5BvF0BWZrAE89g9HOqDhbhOtzzB5aVoCstuY1IaJRllDYEmSxClpfx3i_kwRhzbktpizp-otekAoYdg3nPEwiahnIu-H8HE3kgvqFzHWAmuO9PHfR2C5U0-BNtl4vaYnTAjCCdUiFpFcO1hon-L4YqoCAbk904V_IAPDZbHpYaIH-7V2q9Dz5jWdI-hStFGNuEYITkg9viYryDnGSxa1SMrErJImCEp8NGz5STyFqQSDlPAze39vmIemchcZSGVYn9mtWxE9r75MstNWZrw0kpvlESsFVWD-hPyVVOEoO2-RVog&h=9jmC9Dd-8MU4AhGkkQXeieO3uLLQqXyDRbNOEAkUN0M cache-control: - no-cache content-length: - - '789' + - '1133' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:37 GMT + - Mon, 14 Sep 2026 23:36:37 GMT expires: - '-1' pragma: @@ -2864,17 +2772,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/23c3fe37-465a-4c45-8001-ce3dd8f12477 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/3ab8465c-92e1-432e-a8ee-31f75e4b3719 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-resource-requests-pt1h: - '299' x-ms-ratelimit-remaining-subscription-resource-requests-pt5m: - '99' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 4373DEFAE86D4699AE011C5ABD67E90D Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:34Z' + - 'Ref A: 53EA15F209E34BABB698269382576947 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:36:36Z' status: code: 201 message: Created @@ -2884,7 +2792,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - container create Connection: @@ -2892,21 +2800,24 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/a285a6bc-63a1-40f6-8de4-fefaeef62e48?api-version=2018-06-01&t=639250257975818048&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RIf6zx6II6SvR8QLcIJdq0ivZCmHgM-LXXJHb9P5BvF0BWZrAE89g9HOqDhbhOtzzB5aVoCstuY1IaJRllDYEmSxClpfx3i_kwRhzbktpizp-otekAoYdg3nPEwiahnIu-H8HE3kgvqFzHWAmuO9PHfR2C5U0-BNtl4vaYnTAjCCdUiFpFcO1hon-L4YqoCAbk904V_IAPDZbHpYaIH-7V2q9Dz5jWdI-hStFGNuEYITkg9viYryDnGSxa1SMrErJImCEp8NGz5STyFqQSDlPAze39vmIemchcZSGVYn9mtWxE9r75MstNWZrw0kpvlESsFVWD-hPyVVOEoO2-RVog&h=9jmC9Dd-8MU4AhGkkQXeieO3uLLQqXyDRbNOEAkUN0M response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Pending","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[]}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"status\": \"Pending\",\r\n \"startTime\": \"2026-09-14T23:36:37.4110422Z\",\r\n + \ \"properties\": {\r\n \"events\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '272' + - '305' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:48:38 GMT + - Mon, 14 Sep 2026 23:36:37 GMT expires: - '-1' pragma: @@ -2918,11 +2829,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/427b8852-a55c-4a3a-be04-314fd70ff957 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/03ba03ae-0432-4d7a-8b9d-c12b42e8552b x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 9E787B2AC9BF4A7681AD8FDC1F746649 Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:38Z' + - 'Ref A: B01E13F692D94B7F9C2D17297D6BA604 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:36:37Z' status: code: 200 message: OK @@ -2932,7 +2843,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - container create Connection: @@ -2940,24 +2851,32 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/a285a6bc-63a1-40f6-8de4-fefaeef62e48?api-version=2018-06-01&t=639250257975818048&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RIf6zx6II6SvR8QLcIJdq0ivZCmHgM-LXXJHb9P5BvF0BWZrAE89g9HOqDhbhOtzzB5aVoCstuY1IaJRllDYEmSxClpfx3i_kwRhzbktpizp-otekAoYdg3nPEwiahnIu-H8HE3kgvqFzHWAmuO9PHfR2C5U0-BNtl4vaYnTAjCCdUiFpFcO1hon-L4YqoCAbk904V_IAPDZbHpYaIH-7V2q9Dz5jWdI-hStFGNuEYITkg9viYryDnGSxa1SMrErJImCEp8NGz5STyFqQSDlPAze39vmIemchcZSGVYn9mtWxE9r75MstNWZrw0kpvlESsFVWD-hPyVVOEoO2-RVog&h=9jmC9Dd-8MU4AhGkkQXeieO3uLLQqXyDRbNOEAkUN0M response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Succeeded","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"status\": \"Succeeded\",\r\n \"startTime\": \"2026-09-14T23:36:37.4110422Z\",\r\n + \ \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": + 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": + \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": + 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"lastTimestamp\": + \"2026-09-14T23:36:49Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": + \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '976' + - '1025' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:09 GMT + - Mon, 14 Sep 2026 23:37:08 GMT expires: - '-1' pragma: @@ -2969,11 +2888,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/aa93ee33-a065-47b3-8db3-21de8f26eb91 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a2440359-01ef-4d5c-9fab-73bba36ce44f x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: E4CF150C26244D2F917F088B500043EC Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:08Z' + - 'Ref A: EE26E8993C1041B6AF538FC10A616C41 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:37:08Z' status: code: 200 message: OK @@ -2983,7 +2902,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - container create Connection: @@ -2991,24 +2910,51 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n + \ \"name\": \"Pulling\",\r\n \"message\": \"pulling + image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": + \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '2562' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:10 GMT + - Mon, 14 Sep 2026 23:37:09 GMT expires: - '-1' pragma: @@ -3020,9 +2966,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 08BE454737704657ACBB4C3AA44D9961 Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:09Z' + - 'Ref A: B1EDAADCAC8D4C0CAFFEF3960F6A0473 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:37:09Z' status: code: 200 message: OK @@ -3032,7 +2978,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3040,187 +2986,221 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland - North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK - South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West - US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + East","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"Italy + North","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Japan + West","zones":["1","2","3"]},{"location":"Korea Central","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Sweden Central","zones":["1","2","3"]},{"location":"Switzerland + North","zones":["1","2","3"]},{"location":"UAE North","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"West Europe","zones":["1","2","3"]},{"location":"West + US 2","zones":["1","2","3"]},{"location":"West US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '20484' + - '23525' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:10 GMT + - Mon, 14 Sep 2026 23:37:09 GMT expires: - '-1' pragma: @@ -3232,9 +3212,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 752F3D7E9C464AE09587186291C10384 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' + - 'Ref A: 4A60DDBB7EF6425CA94129DEAAC43154 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:37:09Z' status: code: 200 message: OK @@ -3244,7 +3224,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3252,24 +3232,51 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n + \ \"name\": \"Pulling\",\r\n \"message\": \"pulling + image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": + \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '2562' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:11 GMT + - Mon, 14 Sep 2026 23:37:10 GMT expires: - '-1' pragma: @@ -3281,9 +3288,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '3749' x-msedge-ref: - - 'Ref A: EB1B12573658482F92F19459CA97C562 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' + - 'Ref A: E228FFAD15A84CBDB2711663B7EF90F5 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:37:10Z' status: code: 200 message: OK @@ -3293,7 +3300,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3305,26 +3312,54 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n + \ \"name\": \"Pulling\",\r\n \"message\": \"pulling + image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": + \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n + \ }\r\n}" headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '1647' + - '2590' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:15 GMT + - Mon, 14 Sep 2026 23:37:10 GMT expires: - '-1' pragma: @@ -3336,13 +3371,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/cc19406b-a30b-4784-930c-56b95c74994b + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/c7d14f6a-2929-4dfc-8349-53af79282e3b x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 65230ACFF1764D6181C187ADF287E22C Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:12Z' + - 'Ref A: 576371FBB6B54437828B712122CAFC56 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:37:10Z' status: code: 200 message: OK @@ -3352,7 +3387,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3360,187 +3395,221 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland - North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK - South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West - US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + East","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"Italy + North","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Japan + West","zones":["1","2","3"]},{"location":"Korea Central","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Sweden Central","zones":["1","2","3"]},{"location":"Switzerland + North","zones":["1","2","3"]},{"location":"UAE North","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"West Europe","zones":["1","2","3"]},{"location":"West + US 2","zones":["1","2","3"]},{"location":"West US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '20484' + - '23525' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:16 GMT + - Mon, 14 Sep 2026 23:37:10 GMT expires: - '-1' pragma: @@ -3552,9 +3621,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3BF9C48DA96640FE8148356EAABF495C Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' + - 'Ref A: 51A8D3DE1245492E8108D86483150CFF Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:37:11Z' status: code: 200 message: OK @@ -3564,7 +3633,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3572,24 +3641,52 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n + \ \"name\": \"Pulling\",\r\n \"message\": \"pulling + image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": + \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1647' + - '2590' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:17 GMT + - Mon, 14 Sep 2026 23:37:11 GMT expires: - '-1' pragma: @@ -3601,9 +3698,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3B45777410CF4ABEBC4723907EA4431A Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' + - 'Ref A: 39AE922AD00E494181DDC93010C47928 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:37:11Z' status: code: 200 message: OK @@ -3613,7 +3710,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3625,26 +3722,53 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n + \ \"name\": \"Pulling\",\r\n \"message\": \"pulling + image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": + \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '1630' + - '2562' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:20 GMT + - Mon, 14 Sep 2026 23:37:11 GMT expires: - '-1' pragma: @@ -3656,13 +3780,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5d7e56d9-d9ad-4799-853e-dbc32c8320dc + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/99a5a8aa-2c05-4a81-87d1-f56c2799281f x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: F9ED74D7A6FA415FB0E3902DEF13BC0E Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:18Z' + - 'Ref A: E31528FC7DB84C8991F29B2980571A8E Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:37:12Z' status: code: 200 message: OK @@ -3672,7 +3796,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3680,7 +3804,8 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -3692,158 +3817,185 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '24795' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:21 GMT + - Mon, 14 Sep 2026 23:37:11 GMT expires: - '-1' pragma: @@ -3855,9 +4007,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '3749' x-msedge-ref: - - 'Ref A: 6E2B667A30CC42C6AA2DA70BECD43749 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' + - 'Ref A: DD9977A774F24AE9915B69DD3E65005C Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:37:12Z' status: code: 200 message: OK @@ -3867,7 +4019,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3875,21 +4027,22 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A25.8911658Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1019' + - '1073' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:22 GMT + - Mon, 14 Sep 2026 23:37:12 GMT expires: - '-1' pragma: @@ -3901,9 +4054,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 98045C885A9640E4B9DC1A418767E6A8 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' + - 'Ref A: 7412F0AC52FA4BB0BC70964AA3633141 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:37:12Z' status: code: 200 message: OK @@ -3913,7 +4066,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3925,21 +4078,22 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A49%3A25.1684641Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A37%3A14.0367154Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1037' + - '1090' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:25 GMT + - Mon, 14 Sep 2026 23:37:13 GMT expires: - '-1' pragma: @@ -3951,11 +4105,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/90b56c94-6ddf-406f-a0b0-91f773dc9f8a + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/a30e9be6-b03c-4e31-a825-4568073c98a7 x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '199' x-msedge-ref: - - 'Ref A: 9E45D7C5D3CF4B64A54730CD8CE8F088 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:23Z' + - 'Ref A: 9AC585AD99CB4821BD606C82137DA043 Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:37:13Z' status: code: 200 message: OK @@ -3965,7 +4119,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -3973,546 +4127,492 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '57783' + - '55193' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:25 GMT + - Mon, 14 Sep 2026 23:37:14 GMT expires: - '-1' pragma: @@ -4524,9 +4624,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: D761F10D79B94D87B8B7C5863648E955 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' + - 'Ref A: C6FA64A8CECB4C29A7761401DACF0255 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:37:14Z' status: code: 200 message: OK @@ -4536,7 +4636,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -4544,26 +4644,29 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:35.447486+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - - '634' + - '688' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:26 GMT + - Mon, 14 Sep 2026 23:37:14 GMT expires: - '-1' pragma: @@ -4575,9 +4678,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3AB4ABBB4ED7492183EB485CABC899DC Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' + - 'Ref A: D006A80ADF2A4A15B2837851EB0BA6A2 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:37:14Z' status: code: 200 message: OK @@ -4587,7 +4690,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -4599,26 +4702,29 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:49:29.1704021+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:37:15.3708024+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - - '651' + - '706' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:30 GMT + - Mon, 14 Sep 2026 23:37:15 GMT expires: - '-1' pragma: @@ -4630,13 +4736,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5dcd2977-c8db-491d-9230-d66b69dd7e62 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/8d77321a-df22-4722-9544-02d7faec3ca6 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: 1329C9663FA242BCB33C1A137BBDA4F9 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:27Z' + - 'Ref A: F12BCCF565E346C68C31ADD8311316BF Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:37:14Z' status: code: 200 message: OK @@ -4646,7 +4752,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -4654,187 +4760,221 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","New Zealand North","North Central US","North Europe","Norway East","Norway + West","Poland Central","Qatar Central","South Africa North","South Africa + West","South Central US","Southeast Asia","South India","Spain Central","Sweden + Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK + South","UK West","West Central US","West Europe","West India","West US","West + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Austria + East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada + East","Central India","Central US","Chile Central","Denmark East","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan - West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico + Central","India South Central","Indonesia Central","Israel Central","Italy + North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia + US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland - North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK - South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West - US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia + East","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"Italy + North","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Japan + West","zones":["1","2","3"]},{"location":"Korea Central","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Sweden Central","zones":["1","2","3"]},{"location":"Switzerland + North","zones":["1","2","3"]},{"location":"UAE North","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"West Europe","zones":["1","2","3"]},{"location":"West + US 2","zones":["1","2","3"]},{"location":"West US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","Central - US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France - South","Germany North","Germany West Central","Italy North","Japan East","Japan - West","Jio India West","Korea Central","Korea South","North Central US","North - Europe","Norway East","Norway West","Poland Central","Qatar Central","South - Africa North","South Africa West","South Central US","Southeast Asia","South - India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","East Asia","East + US","East US 2","France Central","France South","Germany North","Germany West + Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North + Central US","North Europe","Norway East","Norway West","Poland Central","Qatar + Central","South Africa North","South Africa West","South Central US","Southeast + Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '20484' + - '23525' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:30 GMT + - Mon, 14 Sep 2026 23:37:15 GMT expires: - '-1' pragma: @@ -4846,9 +4986,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 03B4F8EEFC8A4E77A67E60AC58D6C42C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' + - 'Ref A: D795421EFABD4F648A61D3233EC0662A Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:37:15Z' status: code: 200 message: OK @@ -4858,7 +4998,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -4866,24 +5006,51 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n + \ \"name\": \"Pulling\",\r\n \"message\": \"pulling + image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": + \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: cache-control: - no-cache content-length: - - '1630' + - '2562' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:31 GMT + - Mon, 14 Sep 2026 23:37:16 GMT expires: - '-1' pragma: @@ -4895,9 +5062,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 0624971856614FA29A2D9EA60511719C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' + - 'Ref A: 78FCF614E9AB43F19C53E9F3EEE5F112 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:37:15Z' status: code: 200 message: OK @@ -4907,7 +5074,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -4919,26 +5086,54 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 response: body: - string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling - image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully - pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": + false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": + 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": + [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": + {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n + \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": + {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": + {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n + \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n + \ \"detailStatus\": \"\"\r\n },\r\n \"events\": + [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": + \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n + \ \"name\": \"Pulling\",\r\n \"message\": \"pulling + image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": + \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n + \ \"type\": \"Normal\"\r\n },\r\n {\r\n + \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n + \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": + \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": + \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": + {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n + \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n + \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n + \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n + \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n + \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n + \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n + \ }\r\n}" headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '1647' + - '2590' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:36 GMT + - Mon, 14 Sep 2026 23:37:16 GMT expires: - '-1' pragma: @@ -4950,13 +5145,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/0db39ab4-d695-4d3c-a150-efc6a5e76dfd + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/deb4e15d-4338-4aeb-9b75-b34209ebfb1d x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' x-msedge-ref: - - 'Ref A: EE86E7EC44774195B776B69A8F96A135 Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:32Z' + - 'Ref A: 6511B8D7AE4B41DC94B4974DF88B6453 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:37:16Z' status: code: 200 message: OK @@ -4967,7 +5162,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network public-ip create Connection: @@ -4979,17 +5174,18 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"6545fe77-172c-4914-bfba-b41c1f3b7b37\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"86bcc75d-2a39-4beb-ab3e-55dc1e8f13eb\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f13eb23e-9e8a-4fc9-b979-b9e146dfaa5c?api-version=2025-07-01&t=639250258390594832&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=P3ToeYhNHbQNvuszCdlkaH0Sq2niSWvUgpkezRakIQQVA9weOFLG7sqMj6cxBYQd92g7sFaa0V2PoiggQXJ1i7QSVw8r6L2u8wMbTx6TIJhst6_5qMh6S8vYdUKnZkq102ph9FZQGp55jXTua9Ouw_UiwtDhTVr9P7sNYFzWSpKeCFvfGVFYSq13fn2SrPA7vdrW46orRBB6MGvtcIeJ44uAA2s3bJRjoA7mCvn2uCEXz330ShTutFqq2nAjTlC4y-PhSCwGPAEmLv8xm-pt9W-muzJixQFZaKgZVkS20dcFgpdzdbJ0v3QxrvYc-jiW9ouYlAzfPacCZNUVyJmajw&h=rP8TRjfZrOUzJutVjz2mE4HKe2te0Ip7d0SfBfMSlSc cache-control: - no-cache content-length: @@ -4997,7 +5193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:40 GMT + - Mon, 14 Sep 2026 23:37:18 GMT expires: - '-1' pragma: @@ -5009,25 +5205,28 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76a2d317-a418-4652-b3e4-0944e1b77834 + - 7d3d51b1-d887-4ecf-bf10-30d82c5cb70f x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a8bff673-eaf6-466e-9e24-89b834eec07e + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/69ed4c1f-4632-4ebf-875a-d30d3d5e12fd x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, + etc x-msedge-ref: - - 'Ref A: C09ADFEE414C412DAAC85C9805D01719 Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:37Z' + - 'Ref A: 1BA74777B579428AA539357A8E76FBBD Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:37:17Z' status: code: 201 - message: Created + message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network public-ip create Connection: @@ -5035,9 +5234,10 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f13eb23e-9e8a-4fc9-b979-b9e146dfaa5c?api-version=2025-07-01&t=639250258390594832&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=P3ToeYhNHbQNvuszCdlkaH0Sq2niSWvUgpkezRakIQQVA9weOFLG7sqMj6cxBYQd92g7sFaa0V2PoiggQXJ1i7QSVw8r6L2u8wMbTx6TIJhst6_5qMh6S8vYdUKnZkq102ph9FZQGp55jXTua9Ouw_UiwtDhTVr9P7sNYFzWSpKeCFvfGVFYSq13fn2SrPA7vdrW46orRBB6MGvtcIeJ44uAA2s3bJRjoA7mCvn2uCEXz330ShTutFqq2nAjTlC4y-PhSCwGPAEmLv8xm-pt9W-muzJixQFZaKgZVkS20dcFgpdzdbJ0v3QxrvYc-jiW9ouYlAzfPacCZNUVyJmajw&h=rP8TRjfZrOUzJutVjz2mE4HKe2te0Ip7d0SfBfMSlSc response: body: string: '{"status":"Succeeded"}' @@ -5049,7 +5249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:40 GMT + - Mon, 14 Sep 2026 23:37:19 GMT expires: - '-1' pragma: @@ -5061,13 +5261,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 518a0273-7ccb-416e-af57-6efdf4e72289 + - 4db19a93-133a-4466-ac38-68d1f230c8e5 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/6b13d0b7-b2f7-4abc-aba1-436ca7bd1766 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a1d7a24e-04b0-419f-9e1b-6554aa14663f x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 3A55F322EDD6448AA1139A8371FD530E Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' + - 'Ref A: 4C50213FAFF04B779DD4185F1548F478 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:37:19Z' status: code: 200 message: OK @@ -5077,7 +5279,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - network public-ip create Connection: @@ -5085,23 +5287,24 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","ipAddress":"20.245.38.144","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '645' + - '646' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:41 GMT + - Mon, 14 Sep 2026 23:37:20 GMT etag: - - W/"763cb332-0037-4875-9944-f0082f733ca0" + - W/"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3" expires: - '-1' pragma: @@ -5113,11 +5316,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0be6840f-a5ef-49ea-b861-112445ceee4a + - bfaf0fc1-1dd2-44a5-9f8f-5069c1c0c085 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: F9D514ABF06D4C8CAC78B0253AC8378C Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' + - 'Ref A: 141CEEF485CE44E28BCE10B022FD4DF6 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:37:20Z' status: code: 200 message: OK @@ -5127,7 +5332,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -5135,12 +5340,13 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5149,8 +5355,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5159,8 +5367,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5169,8 +5379,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5179,8 +5391,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5189,8 +5403,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5198,8 +5414,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5207,8 +5425,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5216,8 +5436,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5225,8 +5447,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5235,8 +5459,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5245,8 +5471,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5255,8 +5483,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5264,8 +5494,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5274,25 +5506,44 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","France + South","Norway West","Switzerland West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5300,11 +5551,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5312,11 +5562,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5324,40 +5573,100 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5365,77 +5674,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5443,22 +5745,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5466,11 +5766,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE - North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Denmark + East","Chile Central","Malaysia West","Austria East","Belgium Central","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5478,11 +5777,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5490,11 +5788,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5502,11 +5799,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5514,11 +5810,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5526,22 +5821,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","UAE + North","South Africa North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5549,11 +5853,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -5561,51 +5864,50 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5613,22 +5915,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Norway East","West US 3","Sweden Central","India South Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5636,29 +5936,30 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5666,114 +5967,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -5782,8 +6065,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -5793,92 +6076,95 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West @@ -5888,52 +6174,72 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West + US","East US","North Europe","West Europe","East Asia","India South Central","Southeast + Asia","North Central US","South Central US","Central US","East US 2","Japan + East","Japan West","Brazil South","Australia East","Australia Southeast","Central + India","South India","West India","Canada Central","Canada East","West Central + US","West US 2","UK West","UK South","Korea Central","Korea South","France + Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5941,29 +6247,30 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5971,40 +6278,40 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6012,11 +6319,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6024,11 +6330,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6036,11 +6341,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6048,22 +6352,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -6071,11 +6373,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6083,11 +6384,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6095,11 +6395,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6107,11 +6406,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6119,11 +6417,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6131,11 +6428,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6143,29 +6439,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6173,507 +6481,559 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","South Central US STG","Brazil Southeast","Jio India Central","Sweden - South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"interconnectGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + SupportsTags, SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '217264' + - '247500' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:44 GMT + - Mon, 14 Sep 2026 23:37:22 GMT expires: - '-1' pragma: @@ -6685,9 +7045,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '3749' x-msedge-ref: - - 'Ref A: 7026C7B1779748A6806FB51A6735A481 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:42Z' + - 'Ref A: 1D71401B8A9C405DA580064F57710B4D Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:37:20Z' status: code: 200 message: OK @@ -6697,7 +7057,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -6705,23 +7065,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","ipAddress":"20.245.38.144","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '645' + - '646' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:44 GMT + - Mon, 14 Sep 2026 23:37:22 GMT etag: - - W/"763cb332-0037-4875-9944-f0082f733ca0" + - W/"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3" expires: - '-1' pragma: @@ -6733,11 +7094,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2015d3da-5f14-4223-8194-aca015a9c884 + - 0d34c281-5e6b-4bfb-b19c-1a7569a9fd13 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' + x-ms-throttle-levels: + - operationRatePct=0.2, operationConcurrencyPct=0.5, etc x-msedge-ref: - - 'Ref A: 680DA6436B36488D91A528650C8051A2 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' + - 'Ref A: 3AF0FD0C92524A22A25279EC7B9B0FAD Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:37:22Z' status: code: 200 message: OK @@ -6747,7 +7110,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource tag Connection: @@ -6759,23 +7122,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"1a7cc129-5b0a-42e9-98ac-13a7aa041ed7\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"c12b24e7-5571-4f73-a890-4526aa1d2c5b\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","ipAddress":"20.245.38.144","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '672' + - '673' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:48 GMT + - Mon, 14 Sep 2026 23:37:23 GMT expires: - '-1' pragma: @@ -6787,25 +7151,28 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e33a0c35-50e5-46b3-ac80-6ff76236bcd7 + - 2e4df188-ae02-4b9d-bf15-853da46e50dd x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f3a82332-6400-4084-99d6-0012920eb33a + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/3e072ae2-4bfd-45ed-8ce2-7d8a9044e663 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '199' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, + etc x-msedge-ref: - - 'Ref A: 5A6C1882C1094A3697FBFF86D9E3991F Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' + - 'Ref A: 091AFE34929A4A42BFE0F458C0A5F036 Ref B: BN1AA2051013021 Ref C: 2026-09-14T23:37:23Z' status: code: 200 - message: OK + message: '' - request: body: null headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource delete Connection: @@ -6813,7 +7180,8 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -6825,158 +7193,185 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia + Central","Denmark East","Austria East","Belgium Central","Israel Central","India + South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria + East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '21796' + - '24795' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:48 GMT + - Mon, 14 Sep 2026 23:37:24 GMT expires: - '-1' pragma: @@ -6988,9 +7383,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: F9F0D5481907418381FDFE77AEB430D5 Ref B: SEL221051804033 Ref C: 2025-04-25T09:49:49Z' + - 'Ref A: CF35B12B98D64BEBB9E94FE5551B5C01 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:37:24Z' status: code: 200 message: OK @@ -7000,7 +7395,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource delete Connection: @@ -7010,19 +7405,26 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 response: body: string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452711856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LFSNZerbtRz1g0MrfpX35He-fWbYbUIn-LwxoFg5tkfsVpxBrqgloG7-TtXJAjh_WHWErJWvA7sow3w7cuTGmHIXL-z_4506OCul6loWV0Os__fxYC8DXJELzQM3MKCV1l-TTU39ksg2eKAaCp3Gv3P18F62f00SyUG5gwEWgasC9gTtcEILo-oIDtrPEFCkBXteNABa6qbuaiRSdeN2AHxe5fysBzb9i8Rz3UiAMDv0oUQpv_ogWWMjkYriRgbRwdajkz-Dgt3kizJCIKPvPeQBp5baHtthDpVtKDRXe3fNeExwMW6WAQBQIYllYxSQtpPtDfnV1BQuDdguL50Kig&h=KPGIcJAk-owlAWX7_tdZb5un4mo2eO5t0Xm2FlJx3y8 cache-control: - no-cache + content-length: + - '0' date: - - Fri, 25 Apr 2025 09:49:54 GMT + - Mon, 14 Sep 2026 23:37:24 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452868786&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Ro8t7auWWbuj_04Kd_7U5BMuyWPzwZ4cNi8cZkN_lX9QJJ25mkob294nePhUqNJu8abHDZ-y0NLOwDQOVdIV1T2xImd6snFklQBPBSBiJguqTUgMVa47d-l7DEC_l354gSd0kbkI19E5yZUrMsRxK9Ic99lze-gnZC8Zk58IPkJXzi9y40DZ5aZllIJY4XTXdjWbDa65OBPKtLOaX088GsNomlqXcSbM_fdab4GV0LIfOb0y3kfIs1Ws1zEwKW53n3NYw52XMv4GpidJNRCkJQiQz1irM8n41bE1ozv9-g94YwMKUcaCZiQgo2FEbyqSjpKezNLx1vapl36pXAYmRg&h=1aA8g3FGX0O0dlA5Khvui6-55FoPLNJB-lTYL4eTntM pragma: - no-cache strict-transport-security: @@ -7032,21 +7434,127 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/b36d76ad-341b-482b-b28d-720890097964 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/5301a6b7-7837-4d86-86c9-d9750081eead x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '99' + x-msedge-ref: + - 'Ref A: EDDEACAFBDC945D69308D360C8E36B86 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:37:24Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452711856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LFSNZerbtRz1g0MrfpX35He-fWbYbUIn-LwxoFg5tkfsVpxBrqgloG7-TtXJAjh_WHWErJWvA7sow3w7cuTGmHIXL-z_4506OCul6loWV0Os__fxYC8DXJELzQM3MKCV1l-TTU39ksg2eKAaCp3Gv3P18F62f00SyUG5gwEWgasC9gTtcEILo-oIDtrPEFCkBXteNABa6qbuaiRSdeN2AHxe5fysBzb9i8Rz3UiAMDv0oUQpv_ogWWMjkYriRgbRwdajkz-Dgt3kizJCIKPvPeQBp5baHtthDpVtKDRXe3fNeExwMW6WAQBQIYllYxSQtpPtDfnV1BQuDdguL50Kig&h=KPGIcJAk-owlAWX7_tdZb5un4mo2eO5t0Xm2FlJx3y8 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n + \ \"name\": \"MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n + \ \"status\": \"InProgress\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258457449886&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=sgZkQafzh1MVtecm7QetQHk3e8xrI3BLJ_OrkNoFM44sSvQ1OQlA4fTqq8YKm97_waP1acUYvqGCYwBAy0J93bTpFD0DhaYVmvLQ-O0jd3Gt_bcacb2RyEqixy0UhxaLgbAPVCvokiJwROXpdzIy_iYOgqrUpyP3usUosqKK8Y2XbfMyUW_KGumKzeGrSURRZW4i2IUOdslbI5PC9FKvNMj0dBcwN5w5y3aagCBdti8_CQqO8ElhHaJXz9LDhZ6DmiGMbkYkO6WbXFKzoJ1deZg1Vwk4nnoRo9TYYfdTKdPQwI5Wpc2nCoFDSZDKqa5ojlVQ7a5XBkBvsjS1qAVtwA&h=cFk3iWdKCnMZ5gMcPElkOV965gdzVqZGGszD_Yl3sO8 + cache-control: + - no-cache + content-length: + - '345' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:37:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258457606244&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=tBz-AfPFxu436n0audXshfL4suCJFiUSfwuSs0-G_tGQIqoHwKcp5L2goz3iw_f015jqyJ96T5HQixis3SE8zcQIZhm9_CohH9lTNiWE41gJ_F_0OuHXgCBURcpc-ghnih2_V8_oAIP7f6iWuNK92faI3FBGQ0NwK_fh1uHJMplH8yZOA8OLfl7Hisbjoiy3t0JyvDROxOXtfGXbsTNjmcWN7veH5BCEjB1As_stEQoKtcR5JZbY1Ld5bj_nhjwgrkT4-DIjxb-VazZGVPZ9Ce5G-ajr-ePgHlS6QevhHHg2tCEFSnL5vxNS0_0j3NVx1uXSs_64r2i7tY_X_vz07w&h=3VCf0z1qS8dTOZey14MIngeqB7XfiniTgUEA3DNCNug + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/0afe9313-66b5-4c45-a771-2f6c91e8ca43 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 58CA3A08EE6E43909BCEF83BC74BFCCA Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:37:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452711856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LFSNZerbtRz1g0MrfpX35He-fWbYbUIn-LwxoFg5tkfsVpxBrqgloG7-TtXJAjh_WHWErJWvA7sow3w7cuTGmHIXL-z_4506OCul6loWV0Os__fxYC8DXJELzQM3MKCV1l-TTU39ksg2eKAaCp3Gv3P18F62f00SyUG5gwEWgasC9gTtcEILo-oIDtrPEFCkBXteNABa6qbuaiRSdeN2AHxe5fysBzb9i8Rz3UiAMDv0oUQpv_ogWWMjkYriRgbRwdajkz-Dgt3kizJCIKPvPeQBp5baHtthDpVtKDRXe3fNeExwMW6WAQBQIYllYxSQtpPtDfnV1BQuDdguL50Kig&h=KPGIcJAk-owlAWX7_tdZb5un4mo2eO5t0Xm2FlJx3y8 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n + \ \"name\": \"MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n + \ \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '344' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 14 Sep 2026 23:38:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/0b13a840-f8fa-411b-92b9-64279356bef7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: FFE2EC7123264F3FA0D42878EF4BA9E2 Ref B: SEL221051504021 Ref C: 2025-04-25T09:49:51Z' + - 'Ref A: 39A199EBAEDA4B86A44072AF83EFB4D9 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:38:26Z' status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource delete Connection: @@ -7054,546 +7562,492 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Canada - Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland - North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada - East","Central India","Japan East","Japan West","North Central US","Southeast - Asia","South India","UK South","UK West","West US","West Central US","Korea - Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil - Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden - South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","Central - US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South - Central US","East US","West US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South - Central US","West US","East US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - Central US","East US","West Europe","South Central US","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","South - Africa North","UAE North","France Central","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","South Africa North","UAE - North","France Central","Central US","Canada East","Canada Central","UK South","UK - West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","Central US - EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Australia Central 2","Australia Central","Qatar - Central","Germany North","Poland Central","France South","Italy North","Israel - Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central - US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Brazil South","Canada East","Canada Central","West - Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea - Central","France Central","South Africa North","UAE North","Switzerland North","UAE - Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Jio India West","Jio India - Central","Sweden Central","Australia Central","Qatar Central","Australia Central - 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 - EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West - US","West Central US","South Central US","East US","Central US","East US 2","North - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South - Central US","East US","West US","Central US","East US 2","North Central US","West - Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada - East","Canada Central","West Europe","North Europe","UK South","UK West","Australia - East","Australia Southeast","Central India","East Asia","Japan East","Japan - West","Southeast Asia","South India","Korea Central","France Central","South - Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany - West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway - West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia - Central 2","Australia Central","Qatar Central","South Africa West","Germany - North","Poland Central","France South","Italy North","Israel Central","Spain - Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","South Central US","West Europe","North Europe","Australia East","France + Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland + North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia + Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France + South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark + East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '57783' + - '55193' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:49:55 GMT + - Mon, 14 Sep 2026 23:38:26 GMT expires: - '-1' pragma: @@ -7605,9 +8059,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: 3A13299400CB4680859362EF68DC9DED Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' + - 'Ref A: 537C6F91FF6940B7BFC9B0A560C4C132 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:38:26Z' status: code: 200 message: OK @@ -7617,7 +8071,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource delete Connection: @@ -7627,9 +8081,10 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 response: body: string: '' @@ -7638,13 +8093,15 @@ interactions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, + 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, + 2026-09-01-preview, 2026-11-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Apr 2025 09:49:59 GMT + - Mon, 14 Sep 2026 23:38:27 GMT expires: - '-1' pragma: @@ -7656,13 +8113,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/1a53184b-df43-41f4-9fb7-297f87d9f21c + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/a57f897c-9fcb-4e23-b751-a9b4ea7744f4 x-ms-ratelimit-remaining-subscription-deletes: - - '799' + - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - - '11999' + - '2999' x-msedge-ref: - - 'Ref A: ECF92E4BB06E40A6A6BCBE536FD795D7 Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' + - 'Ref A: 2FC95FE3BB43417BA10A9D51559432CD Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:38:27Z' status: code: 200 message: OK @@ -7672,7 +8129,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource delete Connection: @@ -7680,12 +8137,13 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7694,8 +8152,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7704,8 +8164,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7714,8 +8176,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7724,8 +8188,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -7734,8 +8200,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -7743,8 +8211,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -7752,8 +8222,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -7761,8 +8233,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -7770,8 +8244,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7780,8 +8256,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7790,8 +8268,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7800,8 +8280,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -7809,8 +8291,10 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland + West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -7819,25 +8303,44 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia - Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia + West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium + Central","Korea South","Poland Central","Brazil Southeast","South Africa West","France + South","Norway West","Switzerland West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central + US","East US","East US 2","North Central US","South Central US","West US","West + US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7845,11 +8348,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7857,11 +8359,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7869,40 +8370,100 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7910,77 +8471,70 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -7988,22 +8542,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8011,11 +8563,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE - North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel + Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Denmark + East","Chile Central","Malaysia West","Austria East","Belgium Central","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8023,11 +8574,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8035,11 +8585,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8047,11 +8596,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8059,11 +8607,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8071,22 +8618,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","UAE + North","South Africa North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8094,11 +8650,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -8106,51 +8661,50 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8158,22 +8712,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Norway East","West US 3","Sweden Central","India South Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8181,29 +8733,30 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium + Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8211,114 +8764,96 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia + West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West - Central US","Jio India West","Jio India Central","North Central US","West - US","West Europe","UAE Central","Germany North","East US","West India","East - US 2","Australia Central","Australia Central 2","South Africa West","Brazil - South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland - West","East Asia","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Sweden Central","Japan West","Norway - East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea - Central","Southeast Asia","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden - South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico - Central","Spain Central","New Zealand North","Indonesia Central","East US - 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","Jio India West","South - Africa North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -8327,8 +8862,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -8338,92 +8873,95 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central - US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","Chile Central","Austria + East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","Jio India West","North Central US","West US","West Europe","UAE - Central","Germany North","East US","West India","East US 2","Australia Central","Australia - Central 2","South Africa West","Brazil South","UK West","North Europe","Central - US","UAE North","Germany West Central","Switzerland West","East Asia","South - Africa North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany - North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central - US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West + Europe","South Central US","Australia East","Australia Central","Australia + Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France + Central","West Central US","Central US","Israel Central","Spain Central","Mexico + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK - West","West US","East US","North Europe","West Europe","West Central US","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio - India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio - India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany - North","Central India","Korea South","Switzerland North","Switzerland West","Japan - West","France South","South Africa West","West India","Canada East","South - India","Germany West Central","Norway East","Norway West","South Africa North","East - Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia - Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden + Central","UAE North","Australia Central 2","UAE Central","Germany North","Central + India","Korea South","Switzerland North","Switzerland West","Japan West","France + South","South Africa West","West India","Canada East","South India","Germany + West Central","Norway East","Norway West","South Africa North","East Asia","Southeast + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile + Central","Malaysia West","Austria East","Belgium Central","Denmark East","India + South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West @@ -8433,52 +8971,72 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West + US","East US","North Europe","West Europe","East Asia","India South Central","Southeast + Asia","North Central US","South Central US","Central US","East US 2","Japan + East","Japan West","Brazil South","Australia East","Australia Southeast","Central + India","South India","West India","Canada Central","Canada East","West Central + US","West US 2","UK West","UK South","Korea Central","Korea South","France + Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","North Central + US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil + South","Australia East","Australia Southeast","Central India","South India","West + India","Canada Central","Canada East","West Central US","West US 2","UK West","UK + South","Korea Central","Korea South","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8486,29 +9044,30 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8516,40 +9075,40 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8557,11 +9116,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8569,11 +9127,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8581,11 +9138,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8593,22 +9149,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8616,11 +9170,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8628,11 +9181,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8640,11 +9192,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8652,11 +9203,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8664,11 +9214,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8676,11 +9225,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8688,29 +9236,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada - Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central - US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East - US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France - Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia - Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy - North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan - West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico - Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North - Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland - Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South - Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast - Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden - Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE - North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West - Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West - US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8718,11 +9278,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia + Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium + Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8730,11 +9300,21 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8742,12 +9322,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","South Central US STG","Brazil Southeast","Jio India Central","Sweden - South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8755,287 +9333,261 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9043,11 +9595,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9055,22 +9606,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -9078,11 +9627,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South - Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil - Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark + East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9090,22 +9638,20 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9113,112 +9659,178 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Central US EUAP","East US - 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway - West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","North Europe","West Europe","East - Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East - US 2 EUAP","global","Central US","East US","East US 2","North Central US","South - Central US","West US","North Europe","West Europe","East Asia","Southeast - Asia","Japan East","Japan West","Brazil South","Australia East","Australia - Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central - US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North - Central US","South Central US","West US","West US 2","North Europe","West - Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany - North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","South Africa + North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast + Asia","South Central US","Norway West","Australia East","Japan East","Canada + East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","Chile Central","New + Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark + East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"interconnectGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","zoneMappings":[{"location":"Australia + East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium + Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada + Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central + US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark + East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East + US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France + Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India + South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel + Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan + East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea + Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico + Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland + Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South + Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden + Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE + North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West + US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + SupportsTags, SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '217264' + - '247500' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:50:02 GMT + - Mon, 14 Sep 2026 23:38:28 GMT expires: - '-1' pragma: @@ -9230,9 +9842,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' x-msedge-ref: - - 'Ref A: C04F98C8B5434EC981F532EC402C0BB3 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:00Z' + - 'Ref A: 357B06DF677E4BAC9E777C5CD0C8BA76 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:38:28Z' status: code: 200 message: OK @@ -9242,7 +9854,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource delete Connection: @@ -9252,9 +9864,10 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 response: body: string: '' @@ -9262,17 +9875,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fcbadc44-93f2-4230-9528-28229219bd8d?api-version=2026-03-01&t=639250259108574525&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=b6i6Brm_f8VrUA-gV-flnEA7REiEcynFWBAmzahuJVNUsmVp-izP7ZapbkDUh1ufblIZYIPbMqjP7PPchMLhukGd60F2G8LtaMxmOPFay65lOnk6oxpUkDSd6sSFH5Nip8ZxIODEZvfX1loiTt7JM6I-VH1iOvYTlrxRaxq9ghQ3QfSzJys2Sp7hdQXWNXWZU2yzogYhRmKhVehUbkmfoQnR4MKjVUxJP7Q99-7x3zMYc6dmaGUzs0CJABupWCtNk3SS_XVLUJT8E2mRFZYxEiZIdEuoR4c86VwTNjBdIn6KzB2m0XoYqU-b_izkOSY1TNrSZ9oq8BNuve-Q7fBzqw&h=R3qGq9Qg5vvZhh2DKIgiyVpqgx_Hvx-QadGxWHvkWWQ cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Apr 2025 09:50:05 GMT + - Mon, 14 Sep 2026 23:38:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062372959&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=ryZ0HaYqajQCYVen-6FUFbXNpw3olloaqo4pixCIC8lMDbbprZxw73VbeHtcMctgdVtSE4Z6ly0BesuQ1gkblQJGiuqRtJlGS_lrKboosaAHF6adyQ4UH3WKQWDMTPLPKsX0-Yxy7UdBUJzObQJPDoGg5PuqvUtKt92k-I5fqU2u7GB1VAvz2rHPnwPW4_PVel6tqznKpsbY6TYUzrvTPIuWRMFUQ_87LmA44kqKjFS_ohwB_KijQMCOBkPkXF7v3aYDeexZxmRg18peXkVyvaBILn9N1-txnxzxx2aDHFWWnl1wpnlGZobLPTgbh62oUTC4fGXLOPo-uWDiUAXSew&h=yO8x9w5WPlTS0cgHJIJGChoGYwRxs8TEIIMGfueuBbY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/fcbadc44-93f2-4230-9528-28229219bd8d?api-version=2026-03-01&t=639250259108730878&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=OJ0Ah0AD63U89hg45dybBINFtAwUlcqjolP26GH-3QmrRKJcy8w44l_SJMS_3foIzjeQYOAbD7n4S5XpVBybchZwpFihTANwtcGjJmwuo9mdW3YWHDVpV09M0B02ojtsXDefUIyyYMkPPVtsTzwEIr3CrlVQgKpnbUD3Pnlbmzh-4KSDZMZBiEy-fUkRWxBw-ihomJQcCsK8YCP-HnHiLt8zQn1Ah976iUbgcba62gxEQYj25eIviAufijvo_96iGxx1kgbKEQjMWRd3HrHtF3O1C5yr9_1LgrsrBdHkhPCHrH9g8kPdEqXadFrDXaPx4yO97cZZeh9eNxp6_-hzlQ&h=NfTkKAMzxGVzuOTR5kcIJuiSwgryXGHj47rzTt1mCvc pragma: - no-cache strict-transport-security: @@ -9282,15 +9895,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b9f9f9c2-7b86-40c8-8fcf-bcf043d55843 + - 53580eb3-8ab1-4174-956e-44360903785c x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/501b84f0-6c16-4fbb-9836-08d592a8a1ee + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/c367b467-342a-4d8a-8d21-09bd082bc5d3 x-ms-ratelimit-remaining-subscription-deletes: - - '799' + - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - - '11999' + - '2999' + x-ms-throttle-levels: + - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.3, + etc x-msedge-ref: - - 'Ref A: 772976AE407940DC9ED54814F78A1B23 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:04Z' + - 'Ref A: B282FAF9EECB4B689A221DB30D8C086A Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:38:29Z' status: code: 202 message: Accepted @@ -9300,7 +9916,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - resource delete Connection: @@ -9308,9 +9924,10 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) + VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fcbadc44-93f2-4230-9528-28229219bd8d?api-version=2026-03-01&t=639250259108574525&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=b6i6Brm_f8VrUA-gV-flnEA7REiEcynFWBAmzahuJVNUsmVp-izP7ZapbkDUh1ufblIZYIPbMqjP7PPchMLhukGd60F2G8LtaMxmOPFay65lOnk6oxpUkDSd6sSFH5Nip8ZxIODEZvfX1loiTt7JM6I-VH1iOvYTlrxRaxq9ghQ3QfSzJys2Sp7hdQXWNXWZU2yzogYhRmKhVehUbkmfoQnR4MKjVUxJP7Q99-7x3zMYc6dmaGUzs0CJABupWCtNk3SS_XVLUJT8E2mRFZYxEiZIdEuoR4c86VwTNjBdIn6KzB2m0XoYqU-b_izkOSY1TNrSZ9oq8BNuve-Q7fBzqw&h=R3qGq9Qg5vvZhh2DKIgiyVpqgx_Hvx-QadGxWHvkWWQ response: body: string: '{"status":"Succeeded"}' @@ -9322,7 +9939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Apr 2025 09:50:05 GMT + - Mon, 14 Sep 2026 23:38:31 GMT expires: - '-1' pragma: @@ -9334,14 +9951,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9fb10464-98bd-4864-b76b-161ff5a3247d + - 1fd38667-772e-4c60-a0d3-c6c8347db009 x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/788679c1-b1e4-4748-b17d-99d1ff51dfe9 + - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/74482348-d8e6-4c5d-87cf-ecdcb7f2c61a x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '3749' + x-ms-throttle-levels: + - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc x-msedge-ref: - - 'Ref A: 4C7B77964DE94F729CC2A4B8BF54CE72 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:06Z' + - 'Ref A: 8477C8F747664B6485A555EB17293EDA Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:38:31Z' status: code: 200 - message: OK + message: '' version: 1 From d34d9f3bb10db7c76cb6340ccdcc2ae4b7612475 Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 10:16:20 +1000 Subject: [PATCH 13/19] Revert "Rerun tests from instance 7. See test_results_None_latest_7.parallel.xml for details" This reverts commit 4b6544e63c8f4a81ebf47d13adfd29fd76d5ec49. --- .../latest/recordings/test_container_acr.yaml | 2167 +- .../test_container_acr_env_var.yaml | 9597 +++---- ...erapp_manualjob_private_registry_port.yaml | 2971 +- ...ljob_registry_acr_look_up_credentical.yaml | 2918 +- ...st_containerapp_private_registry_port.yaml | 23238 ++-------------- .../test_containerappjob_registry_crud.yaml | 6601 ++--- .../recordings/test_tag_update_by_patch.yaml | 10783 ++++--- 7 files changed, 18417 insertions(+), 39858 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml index ec69f514206..661c5b8d49a 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -13,389 +13,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:51:53 GMT + - Tue, 24 Mar 2026 04:51:12 GMT expires: - '-1' pragma: @@ -407,9 +331,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0F5F1ADFD2474D83A31AD18BF8799BA3 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:51:54Z' + - 'Ref A: DEB706BE95EF40B7A15EC0CAFE34A074 Ref B: BY1AA1072318054 Ref C: 2026-03-24T04:51:13Z' status: code: 200 message: OK @@ -419,7 +343,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -427,28 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1779' + - '1726' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:51:54 GMT + - Tue, 24 Mar 2026 04:51:13 GMT expires: - '-1' pragma: @@ -462,9 +385,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AA0122918B9E438B8EB9FE2EDEC7184B Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:51:54Z' + - 'Ref A: 7B3AEB6CD6AF455B9E01BA8DA9EF8954 Ref B: SJC211051203045 Ref C: 2026-03-24T04:51:13Z' x-powered-by: - ASP.NET status: @@ -477,7 +400,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -489,24 +412,23 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:51:55.5200894+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:51:55.5200894+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-14T23:51:55.5200894Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:02.3983774+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:02.3984096+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1708' + - '1622' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:02 GMT + - Tue, 24 Mar 2026 04:51:21 GMT expires: - '-1' pragma: @@ -518,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/dc40d5e1-eed9-4885-9cb6-1978fdda794f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/7bcba73f-eb17-4fbd-a79e-46537cefb9ef x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: F4E0E9CB4B504554B3D6B7738231BF90 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:51:55Z' + - 'Ref A: A57B3BDF7F804690BBC72E1B7D8772EF Ref B: BY1AA1072318040 Ref C: 2026-03-24T04:51:14Z' status: code: 200 message: OK @@ -534,7 +456,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr credential show Connection: @@ -542,24 +464,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:51:55.5200894+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:51:55.5200894+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-09-14T23:51:55.5200894Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:02.3983774+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:02.3984096+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1708' + - '1622' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:02 GMT + - Tue, 24 Mar 2026 04:51:21 GMT expires: - '-1' pragma: @@ -571,9 +492,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2F6A0C2E07754D8286DD6F137922D02A Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:52:02Z' + - 'Ref A: 03EB10E81F3E48419EB661B93C714EC2 Ref B: BY1AA1072317031 Ref C: 2026-03-24T04:51:22Z' status: code: 200 message: OK @@ -583,7 +504,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr credential show Connection: @@ -593,16 +514,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"3DeLPP7Qo6EapOhHvgQi6KMMnmQUWqV2lVV6RLin05jp8fm9t6yKJQQJ99CIACYeBjFEqg7NAAACAZCRYVKI"},{"name":"password2","value":"76eJTWg7alhWScWr6beSr1RJTzRllsZeG6FcxR9EWaJpxWrqYCnIJQQJ99CIACYeBjFEqg7NAAACAZCR4NcD"}]}' + string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -610,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:02 GMT + - Tue, 24 Mar 2026 04:51:22 GMT expires: - '-1' pragma: @@ -622,13 +542,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9a203feb-b681-49fd-8617-60bc696b6836 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/17096a55-4895-4b47-9203-d5d5e79bb569 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 2DA2F4938F2B42E6B03358DBECD342E0 Ref B: BN1AA2051014031 Ref C: 2026-09-14T23:52:02Z' + - 'Ref A: 8CAF524FCC7F489786E497DD16038F5A Ref B: BY1AA1072319040 Ref C: 2026-03-24T04:51:22Z' status: code: 200 message: OK @@ -638,7 +558,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -646,389 +566,313 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:02 GMT + - Tue, 24 Mar 2026 04:51:22 GMT expires: - '-1' pragma: @@ -1040,9 +884,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C96591D72F66453EA48907BDFB8DEEC6 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:52:03Z' + - 'Ref A: 7DC2A10262794C9396DE8036F9D7A4FF Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:23Z' status: code: 200 message: OK @@ -1052,7 +896,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1060,28 +904,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1779' + - '1726' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:03 GMT + - Tue, 24 Mar 2026 04:51:23 GMT expires: - '-1' pragma: @@ -1095,9 +938,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D70F504A02BE42F0B7DFCC8E67D6E236 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:52:03Z' + - 'Ref A: 2AB000AE9B184301A93A1A86641A87FB Ref B: SJC211051204039 Ref C: 2026-03-24T04:51:23Z' x-powered-by: - ASP.NET status: @@ -1109,7 +952,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1117,389 +960,313 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:03 GMT + - Tue, 24 Mar 2026 04:51:23 GMT expires: - '-1' pragma: @@ -1511,9 +1278,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 290758E3459149228A7AB8984DD39041 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:52:04Z' + - 'Ref A: C3C8CE0D4223415E83C24F54CC82DFE3 Ref B: BY1AA1072317025 Ref C: 2026-03-24T04:51:23Z' status: code: 200 message: OK @@ -1521,7 +1288,7 @@ interactions: body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "containerapp000004azurecrio-containerapp000004", - "value": "3DeLPP7Qo6EapOhHvgQi6KMMnmQUWqV2lVV6RLin05jp8fm9t6yKJQQJ99CIACYeBjFEqg7NAAACAZCRYVKI"}], + "value": "***"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000004.azurecr.io", "username": "containerapp000004", "passwordSecretRef": "containerapp000004azurecrio-containerapp000004"}]}, "template": @@ -1534,7 +1301,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1546,30 +1313,29 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:04.8268372Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:04.8268372Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg cache-control: - no-cache content-length: - - '6911' + - '4101' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:04 GMT + - Tue, 24 Mar 2026 04:51:24 GMT expires: - '-1' pragma: @@ -1583,11 +1349,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/45becb6d-33ce-4049-a867-d2d13be11ccb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/9ab4c0af-91b8-4a54-99bb-ebe133c8638c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: AD21773DE3D34204932041FFF054543E Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:52:04Z' + - 'Ref A: 644D80A1A74840A2B07FCCE93306269A Ref B: BY1AA1072317040 Ref C: 2026-03-24T04:51:24Z' x-powered-by: - ASP.NET status: @@ -1599,7 +1365,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1607,19 +1373,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1627,7 +1392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:05 GMT + - Tue, 24 Mar 2026 04:51:24 GMT expires: - '-1' pragma: @@ -1641,11 +1406,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b37fd092-5afb-424b-b370-029ba9e9f069 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9d04871a-e50a-458d-a954-236c5d2cd223 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EAC647A045A0450F9BC2B44140E0EEBE Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:52:05Z' + - 'Ref A: 110420A4F9504E7AA2348355E0730D37 Ref B: BY1AA1072315054 Ref C: 2026-03-24T04:51:24Z' x-powered-by: - ASP.NET status: @@ -1657,7 +1422,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1665,19 +1430,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1685,7 +1449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:07 GMT + - Tue, 24 Mar 2026 04:51:27 GMT expires: - '-1' pragma: @@ -1699,11 +1463,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0e216a34-af26-4f56-a5df-cfaa9d6412e4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/17779ed2-2d04-47cd-baae-cc3dd00d2951 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2091AC52584640088DFC1CC551E1CA75 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:52:07Z' + - 'Ref A: 508CA5FF4376425483768453E84749A3 Ref B: BY1AA1072316042 Ref C: 2026-03-24T04:51:27Z' x-powered-by: - ASP.NET status: @@ -1715,7 +1479,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1723,19 +1487,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1743,7 +1506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:10 GMT + - Tue, 24 Mar 2026 04:51:30 GMT expires: - '-1' pragma: @@ -1757,11 +1520,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/6045fd4d-23b9-4c75-8883-aeaf01176d7a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/4aea88da-ad7a-475d-8f45-1b9b5409eb60 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C378ADF9C3AA475C8C9110809612F8C4 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:52:10Z' + - 'Ref A: 8A75FC56D25E42C2AAA8FA94EE73BB13 Ref B: SJC211051201009 Ref C: 2026-03-24T04:51:30Z' x-powered-by: - ASP.NET status: @@ -1773,7 +1536,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1781,19 +1544,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1801,7 +1563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:13 GMT + - Tue, 24 Mar 2026 04:51:32 GMT expires: - '-1' pragma: @@ -1815,11 +1577,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a770d47d-8949-4ab8-a9e9-1765f44993eb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/7a793285-3a60-489d-9844-d5dd666e4604 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7186E45357E544F18A8E9F951469F572 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:52:12Z' + - 'Ref A: 96DC966BF7D045E79F6CD129E0DD2E27 Ref B: BY1AA1072320060 Ref C: 2026-03-24T04:51:32Z' x-powered-by: - ASP.NET status: @@ -1831,7 +1593,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1839,19 +1601,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"InProgress","startTime":"2026-09-14T23:52:04.8762702"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"InProgress","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1859,7 +1620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:14 GMT + - Tue, 24 Mar 2026 04:51:35 GMT expires: - '-1' pragma: @@ -1873,11 +1634,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/15057184-2e7e-4238-8032-d21f98434829 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d7bb09ce-e7e6-4338-bcad-2cdbb82cebeb x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0113C70B2CA24EC39B00F42F735B2297 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:52:15Z' + - 'Ref A: 849F59C2FA57440E8AD40478E3C992FC Ref B: SJC211051201047 Ref C: 2026-03-24T04:51:35Z' x-powered-by: - ASP.NET status: @@ -1889,7 +1650,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1897,19 +1658,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43?api-version=2025-07-01&azureAsyncOperation=true&t=639250267249362131&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=OzzIT4B5Xyb7Qw-MPs-nuHN_KkhmZiZS8hl46JZSnDMy7WaiERKYgem7kMWpiuBl7fXoe2cielpcbOeP_P6fP5JUUjximfm3EUBYumQg5v_5ZoUm_xFMKbNhkPHI6YL6gblr15VtSgRV_UrSwqfN7TZz3SZWgdog2F1P3pbb1xmZZM06GjhCLIDUhDTP8Glb2BpA1GkwBWeHBy7lpzzkfmcVqd1FAMmFuZ3szt9JlOZxLFUMh36SEwSr-06Z-KXF6M4aFg-PWHw9iyRbnvr5jQ4QMNIeOkmC85ki4L8sbxhUZIGCqyfX1nyMJEJdNy9_WiL9ap7dTaNhs1oHTxJUdw&h=AmsQKA2tkru7HwPH0Sz-D3PI_yuNFmb-aVwNXa0N6Lw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160?api-version=2025-07-01&azureAsyncOperation=true&t=639099246845488459&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=sNQx06wKzvkoisu7y6MCLbIKiq_IVEcU0TjuO_nw9eQ550EU49YDKtfgRQgejKH3nkeuoyitARwKTXn3bgbrcuKIkrViONtx_IZSAw44QUsrXPoEZNzJZv5dumOv0n9hd7VE_Ap3_kcqXM6V9MDk6go6LQTA-Fw_AuBzFxtC3briCizWD7tR3sL4jO-VksbhkcjCjOGVx0TyTmoeYYDsEp8oTWrmvm-t278aEsOYaC8KZ2Jl6CIqu0VrBLp3MDAPmYPs8UMsDvD8dyGcdnAGOceCK2Bp9FGf7H6iSrvEHJLphwk1_hKCiKbDlpxH2lkdxSiY5WoHvp8BzUsXegEtQw&h=eH7HoQbfnGBv7tf01AGJgOEJPWUkHd6PFWOt2EAL7Zg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/be0ca2b6-aab2-49a3-94f0-0d9998da9d43","name":"be0ca2b6-aab2-49a3-94f0-0d9998da9d43","status":"Succeeded","startTime":"2026-09-14T23:52:04.8762702"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/7940a4d5-f9ef-4cbd-b63b-d10a57240160","name":"7940a4d5-f9ef-4cbd-b63b-d10a57240160","status":"Succeeded","startTime":"2026-03-24T04:51:24.4460644"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1917,7 +1677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:17 GMT + - Tue, 24 Mar 2026 04:51:37 GMT expires: - '-1' pragma: @@ -1931,11 +1691,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1315db35-c574-4ad0-9457-8a11af5b99db + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/6cb4d0b3-b530-4cce-94dc-802456f9e503 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DD1EE6DD5FF141E4AC0A2AE14B5BBC6E Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:52:17Z' + - 'Ref A: 6551EFFD1C284D70AF67504A2CB9E086 Ref B: SJC211051203053 Ref C: 2026-03-24T04:51:37Z' x-powered-by: - ASP.NET status: @@ -1947,7 +1707,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1955,28 +1715,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000005?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000005","name":"containerapp-e2e000005","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:04.8268372","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:04.8268372"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000005--b821oy9","latestReadyRevisionName":"containerapp-e2e000005--b821oy9","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:24.3457226","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:24.3457226"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000005--p4wv4sk","latestReadyRevisionName":"containerapp-e2e000005--p4wv4sk","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000004azurecrio-containerapp000004"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000004.azurecr.io","username":"containerapp000004","passwordSecretRef":"containerapp000004azurecrio-containerapp000004","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000005","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000005/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7431' + - '4621' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:17 GMT + - Tue, 24 Mar 2026 04:51:38 GMT expires: - '-1' pragma: @@ -1990,9 +1749,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E2DFA49D52E0484D811D4C78A2402CCE Ref B: BN1AA2051012017 Ref C: 2026-09-14T23:52:18Z' + - 'Ref A: 9D678719740D452999571AFF4367604F Ref B: BY1AA1072319029 Ref C: 2026-03-24T04:51:38Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml index 1259b6c45f8..f2d2df16cba 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -13,389 +13,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:52 GMT + - Tue, 24 Mar 2026 05:55:11 GMT expires: - '-1' pragma: @@ -407,9 +331,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9DA4EA416DCB4EB498CC78FE05B27A6A Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:52:52Z' + - 'Ref A: F85FCD0C47AD43578E0CE37D5CD1DFA6 Ref B: BY1AA1072318025 Ref C: 2026-03-24T05:55:12Z' status: code: 200 message: OK @@ -419,7 +343,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -427,28 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1779' + - '1726' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:52 GMT + - Tue, 24 Mar 2026 05:55:12 GMT expires: - '-1' pragma: @@ -462,9 +385,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C71FE0C0C8D74CCD99B9267B5D2BD26A Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:52:52Z' + - 'Ref A: 887910DE91FA49C6B3F4D73E1706ED4E Ref B: BY1AA1072319036 Ref C: 2026-03-24T05:55:12Z' x-powered-by: - ASP.NET status: @@ -477,7 +400,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -489,24 +412,23 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-14T23:52:53.6903628Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133661+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1708' + - '1619' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:54 GMT + - Tue, 24 Mar 2026 05:55:21 GMT expires: - '-1' pragma: @@ -518,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4ff4f41e-536b-4d76-904f-385f98fe5a9c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/310d4c57-8d43-45cc-a111-38d58da250a8 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: 15E77EC3099C44958347B51F2BAF499F Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:52:53Z' + - 'Ref A: 8A63F46DEF9341B2A84341B74D6705A3 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:55:13Z' status: code: 200 message: OK @@ -534,7 +456,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr credential show Connection: @@ -542,24 +464,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-09-14T23:52:53.6903628Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133284+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:52:55.6133661+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1708' + - '1619' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:55 GMT + - Tue, 24 Mar 2026 05:55:22 GMT expires: - '-1' pragma: @@ -571,9 +492,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 29990EFB2F184F34A115C1D86E5EBBDD Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:52:55Z' + - 'Ref A: 148900C360A5448FB4F31B1A9F3C7505 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:55:22Z' status: code: 200 message: OK @@ -583,7 +504,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr credential show Connection: @@ -593,16 +514,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"},{"name":"password2","value":"44MlXQs2y9DxN27LnOgrGEDRuFzuDk52DePhmpAeAZ0sJSF1f4E4JQQJ99CIACYeBjFEqg7NAAACAZCRloSI"}]}' + string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -610,7 +530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:55 GMT + - Tue, 24 Mar 2026 05:55:22 GMT expires: - '-1' pragma: @@ -622,13 +542,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4074f991-ef3f-49e8-9320-b35c7483f337 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/cd571352-9681-4da7-a353-ed79d31b3dd2 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 8CDC255369FB41038CC423B2E07EB206 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:52:56Z' + - 'Ref A: F7BE3154E03F48118223DA69FF5F85D1 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:22Z' status: code: 200 message: OK @@ -638,7 +558,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -646,389 +566,313 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39885' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:56 GMT + - Tue, 24 Mar 2026 05:55:23 GMT expires: - '-1' pragma: @@ -1040,9 +884,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3D026A2FF73C41A783BCA80395CE1C2F Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:52:56Z' + - 'Ref A: 03CA59EFEBA84E46B942C528E2177387 Ref B: SJC211051201039 Ref C: 2026-03-24T05:55:23Z' status: code: 200 message: OK @@ -1052,7 +896,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1060,28 +904,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1779' + - '1726' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:56 GMT + - Tue, 24 Mar 2026 05:55:22 GMT expires: - '-1' pragma: @@ -1095,9 +938,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1512215F4D8D4BF7B779E0FAAF7D147C Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:52:56Z' + - 'Ref A: 543995D6B84544589AA3C8E3B1FBD029 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:55:23Z' x-powered-by: - ASP.NET status: @@ -1109,7 +952,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1117,389 +960,313 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:56 GMT + - Tue, 24 Mar 2026 05:55:23 GMT expires: - '-1' pragma: @@ -1511,9 +1278,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A41E3AEE99934E348FB22A1C32596D82 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:52:57Z' + - 'Ref A: 784676E3AC39442792976D285A6FCEC6 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:23Z' status: code: 200 message: OK @@ -1521,7 +1288,7 @@ interactions: body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", - "value": "D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"}], + "value": "***"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": "containerapp000002azurecrio-containerapp000002"}]}, "template": @@ -1534,7 +1301,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1546,30 +1313,29 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:57.7090432Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU cache-control: - no-cache content-length: - - '6911' + - '4099' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:57 GMT + - Tue, 24 Mar 2026 05:55:24 GMT expires: - '-1' pragma: @@ -1583,11 +1349,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c6b1e2bd-f333-47c4-abb6-b18008028aaf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/afab1123-b379-4e37-903c-7226dae20243 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 39DCF84A82A742FCAB02EA71099F23CD Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:52:57Z' + - 'Ref A: B041C54A3B1E4872B6D191B5F8EA7586 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:55:23Z' x-powered-by: - ASP.NET status: @@ -1599,7 +1365,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1607,19 +1373,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1627,7 +1392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:52:57 GMT + - Tue, 24 Mar 2026 05:55:24 GMT expires: - '-1' pragma: @@ -1641,11 +1406,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6f3958e5-b608-432e-9101-abfb51f11b44 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8befd579-9809-491e-9229-f3954f734f20 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 801F990458444B12823EB782ABEA24DE Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:52:58Z' + - 'Ref A: 3BE01733670748C0BD9922549B4E1E84 Ref B: SJC211051205039 Ref C: 2026-03-24T05:55:24Z' x-powered-by: - ASP.NET status: @@ -1657,7 +1422,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1665,19 +1430,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1685,7 +1449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:00 GMT + - Tue, 24 Mar 2026 05:55:26 GMT expires: - '-1' pragma: @@ -1699,11 +1463,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e9944899-e179-45d2-b599-90cc4ed8dc74 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/73aa0456-62d4-49bd-a16a-f32bc93fd2aa x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 400BDF0C48F24F03ACE6119385CD3ECE Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:53:00Z' + - 'Ref A: 8968CDB2E8EB413B81AA7329038A1739 Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:55:27Z' x-powered-by: - ASP.NET status: @@ -1715,7 +1479,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1723,19 +1487,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1743,7 +1506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:02 GMT + - Tue, 24 Mar 2026 05:55:29 GMT expires: - '-1' pragma: @@ -1757,11 +1520,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/316de36e-2f28-4286-a50b-6c90154f1278 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f384d921-10e9-4df0-a929-fc688daa9456 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CD1AADBEF58C4C86A974F357CAEC7612 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:53:03Z' + - 'Ref A: C3551CBBFA5C4A05BB45343A562E5489 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:55:29Z' x-powered-by: - ASP.NET status: @@ -1773,7 +1536,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1781,19 +1544,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1801,7 +1563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:05 GMT + - Tue, 24 Mar 2026 05:55:31 GMT expires: - '-1' pragma: @@ -1815,11 +1577,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/78985f5f-6d6a-4a27-8d70-5b56f96d8a62 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/14f0815b-8720-40ef-a73b-4f70b164a8ba x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F5C195BF139449EBA4E7FC30F25338F6 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:53:05Z' + - 'Ref A: BAD809E0866B4C13AE593E0F1749D04C Ref B: BY1AA1072319062 Ref C: 2026-03-24T05:55:31Z' x-powered-by: - ASP.NET status: @@ -1831,7 +1593,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1839,19 +1601,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"InProgress","startTime":"2026-09-14T23:52:57.7792521"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"InProgress","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1859,7 +1620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:07 GMT + - Tue, 24 Mar 2026 05:55:34 GMT expires: - '-1' pragma: @@ -1873,11 +1634,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9f09cc09-f91c-4ebc-8cbd-5521a3fea773 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/753fa0f1-1e55-4bff-8bf0-e908ca4d8116 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8F0336E750A24ECCB85F16901233C083 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:53:08Z' + - 'Ref A: 802DF80DE3A94F4D95876FA067045321 Ref B: SJC211051203027 Ref C: 2026-03-24T05:55:34Z' x-powered-by: - ASP.NET status: @@ -1889,7 +1650,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1897,19 +1658,18 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7?api-version=2025-07-01&azureAsyncOperation=true&t=639250267778496623&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=icilgUrhYIHvRZR9yfKbTXHCe-NDZot_wmawJz0tKEn6nKjMGbFFDsmWoPqC7h7vPYNjsPRf5U7AgfqxcczWVB1Cdj_pedNH1n0eTNeMJ1PdZDLOpoQocrBtkbIUNmzy7AhAGokhJclS-HUM5FKSj329vZLYa7egpkDjZrHYnyHzcU574IdudFNJogYwkD6CFhxOIocM2yB2mRx7p2UI6zIj0rPSyr_PzIS6CLI9JLl7foQQQvPJ5z8HOU5vKAXW1rCnHQvAPadkxAS1zUQgnPTCTAZ5hybAQuJbOx8Nb61Wr1meT6YhsN0kBYTH-h1TMfo102DaGM8CUrW0hyptlw&h=smlrnFUxxotaFgEmFnQQgEz849kOvfJ_VqP_fs1MkiU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097?api-version=2025-07-01&azureAsyncOperation=true&t=639099285242916708&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=xOshFl975OnEF4KGsThVkno09WAvi-BIUh5ZI0vPjTXEezBsbUsJA_fKpX-LN6QLgXGr9-SUob0tnQ9sSQGjNa7YdddEa004RUr5_tEHdsKjex9uH5maDYniIOLodbfoIZR-9fIyxByGbi0acdPVhyGm8-QXJ6uZ9J1qkkV2TOm4KQRMBvni9zeSchk52kIBeUnfjnxr72uR0VVqgHQ_j5NZmriaGl8ZpxG5NssiTYA7eiP6G5ZkzfGfLHSenaup28wqxmWIuiuPdYfvuvy4e-i6oAH8nR7TjxBYaHnD_1E898-QO8441x5y1c-xVtqMI9o2NrBMPGWzlv3yuLfDYA&h=mppLfr6NghM5ugwHowjFJRUDNBQNxi8nLUmjLO5BJHU response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/03bc02f8-a30e-478c-a541-757ef3da22b7","name":"03bc02f8-a30e-478c-a541-757ef3da22b7","status":"Succeeded","startTime":"2026-09-14T23:52:57.7792521"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/670d4bf9-b89c-4e8a-921b-a6c640429097","name":"670d4bf9-b89c-4e8a-921b-a6c640429097","status":"Succeeded","startTime":"2026-03-24T05:55:24.2097378"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1917,7 +1677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:10 GMT + - Tue, 24 Mar 2026 05:55:36 GMT expires: - '-1' pragma: @@ -1931,11 +1691,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8063bf9c-a8ce-42a5-8220-1bf624a1ceda + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/c798deaa-2d86-4123-81dc-da246a186722 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1B0B5D0678AD42889CC7CDC251510DE0 Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:53:10Z' + - 'Ref A: 53F3ED521F9A48FF878F2740B6BE4B30 Ref B: SJC211051204007 Ref C: 2026-03-24T05:55:37Z' x-powered-by: - ASP.NET status: @@ -1947,7 +1707,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -1955,28 +1715,27 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:57.7090432"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--y4kedib","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7431' + - '4619' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:10 GMT + - Tue, 24 Mar 2026 05:55:36 GMT expires: - '-1' pragma: @@ -1990,9 +1749,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0278BAE973744D49853783CF152DEFEC Ref B: BN1AA2051013031 Ref C: 2026-09-14T23:53:10Z' + - 'Ref A: E11E818D845445E385872F2CEC0F7D28 Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:55:37Z' x-powered-by: - ASP.NET status: @@ -2004,7 +1763,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -2012,389 +1771,313 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:11 GMT + - Tue, 24 Mar 2026 05:55:37 GMT expires: - '-1' pragma: @@ -2406,9 +2089,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F0E42CD66AB64737897946430F745859 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:53:11Z' + - 'Ref A: F6F8C1723EEB4C4F89BA3CFEA8F9CAA3 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:55:37Z' status: code: 200 message: OK @@ -2418,7 +2101,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -2426,389 +2109,313 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:10 GMT + - Tue, 24 Mar 2026 05:55:38 GMT expires: - '-1' pragma: @@ -2820,9 +2427,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 662EEA1DE2DD46A1B1EE2A5243A7B4C3 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:53:11Z' + - 'Ref A: C221207E5F6C43BB932BCDC8EE955207 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:55:38Z' status: code: 200 message: OK @@ -2832,7 +2439,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -2840,28 +2447,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:57.7090432"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--y4kedib","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:24.104175"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0oc4zm3","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7431' + - '4619' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:11 GMT + - Tue, 24 Mar 2026 05:55:38 GMT expires: - '-1' pragma: @@ -2875,9 +2481,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5E67B98C676048A8A70730916C4033B7 Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:53:11Z' + - 'Ref A: 5876958253C04DE187693AAFC2986E76 Ref B: SJC211051201017 Ref C: 2026-03-24T05:55:38Z' x-powered-by: - ASP.NET status: @@ -2892,7 +2498,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -2904,8 +2510,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -2916,19 +2521,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:53:12 GMT + - Tue, 24 Mar 2026 05:55:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&t=639250267924798798&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=D6BCVlTuBXWIHQXwD-AUeA5J-qiH5ImauhSZNYek8lkjnAOmQz6703A0Cqr-SwCQ7Vs-PMICjIpmDooP7jhIYDm1QUdzKVWgP-KWQulzl6AM_MuM5wG-uSaklYoUsrnSyrPZfHxeaQV6v5tR4TFb0iTJo02_FDIqQV7Qz6_mIeJTh0Q_eMwI1FACRhxGw1czV1l07R3Qbee4huS8Fifcd7YjXF7cFx-JI12o_3psV2xcUG9pmgbQU0931cGGG1vc2dBL3gj7IRVuZCAy54pM1I1259EhWRfWqU7PEm7hXRY00S6yF-8nwEpOf2Xyj3QUEbmfpKS9qhkBH7KeNhavhA&h=Q02IaUmVIMJg__IolurlFyWXGarXF76P9_RgmW2dcns + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=OiX-ev0V-zoCue3svj0ssGPepKn9Gt9GNxDMsVGR0GuwzZXOn_ADMUHruls2YutFR59GyxuiTSybVF5zV13cXZghECiPGMt7L1CuWvJ6eVNUAIPtiMUF09Np7r90mVRbxiOhQGpCNWwf22BhRaIMCJ_oyLtt6LR8qbH4w2GFZ5-VM-4zMT6nXmoHaGuQtzrew27vCbv-X6fMiuJIT0zFAGPrktgTCj7axOKoJBASmXL4dzy2_KOtd4W6syfGx86c74AYXzQGw9w84oH7Z_E8u9eoZ5dTqXE3ygLdDD4YcwI73VvURo4SB4SuqFR8ljg-EdZ3-vO8FsZjIOhLAd9cnA&h=C5jpKW3JuJlz-0knFsza4SLcG6_eaPp1dBuPoWqH3GA pragma: - no-cache strict-transport-security: @@ -2938,11 +2543,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/459d6aad-66fb-473f-9654-874c59a63f74 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/b7e74ace-331e-42a9-90ef-40d8c2876c5d x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 152A701DD8184FEFB7B5AE17F00BB271 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:53:12Z' + - 'Ref A: 5C876BD65A8C4050A3694E8B6D662EC1 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:55:39Z' x-powered-by: - ASP.NET status: @@ -2954,7 +2559,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -2962,19 +2567,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -2982,7 +2586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:12 GMT + - Tue, 24 Mar 2026 05:55:39 GMT expires: - '-1' pragma: @@ -2996,11 +2600,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a15be2f8-b9f7-4373-a882-041f06925a6e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/091a44c2-aa37-45f4-a818-47b78080a7cc x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C96D6F0B0E0948F6B3B9225A63CA78DB Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:53:12Z' + - 'Ref A: 97AC88E040434658A1E9E7E9B28BD62D Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:39Z' x-powered-by: - ASP.NET status: @@ -3012,7 +2616,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -3020,19 +2624,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -3040,7 +2643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:14 GMT + - Tue, 24 Mar 2026 05:55:42 GMT expires: - '-1' pragma: @@ -3054,11 +2657,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d51fe909-1dcc-4ed7-8522-46b31f5b1365 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/be56815f-12f6-4c47-b788-5c3be718ca96 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AC236444D1434BB68D2F429030074C6C Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:53:15Z' + - 'Ref A: B9CE90C233884E97915A06945841E788 Ref B: BY1AA1072319025 Ref C: 2026-03-24T05:55:42Z' x-powered-by: - ASP.NET status: @@ -3070,7 +2673,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -3078,19 +2681,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -3098,7 +2700,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:17 GMT + - Tue, 24 Mar 2026 05:55:44 GMT expires: - '-1' pragma: @@ -3112,11 +2714,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/67516af0-b9e3-4780-be68-43c1681abc02 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8516f274-e462-40e8-9f5c-1633497725dd x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: BEE74D1BF3E640BEBDD8BFAF4DBF8B0B Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:53:17Z' + - 'Ref A: 389BD75BCF074D03B3FBD348A05D88C8 Ref B: SJC211051204033 Ref C: 2026-03-24T05:55:44Z' x-powered-by: - ASP.NET status: @@ -3128,7 +2730,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -3136,19 +2738,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -3156,7 +2757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:19 GMT + - Tue, 24 Mar 2026 05:55:47 GMT expires: - '-1' pragma: @@ -3170,11 +2771,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5869b54a-1900-4348-aeb5-cc97de302b60 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/5af52663-9944-407d-a85a-48180b7167e4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A7140A0EA24849AEB2DAFB6B58C6DB6D Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:53:20Z' + - 'Ref A: 51647A54749044CE98DEC234813E878B Ref B: SJC211051204045 Ref C: 2026-03-24T05:55:47Z' x-powered-by: - ASP.NET status: @@ -3186,7 +2787,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -3194,19 +2795,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"InProgress","startTime":"2026-09-14T23:53:12.4535733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"InProgress","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -3214,7 +2814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:22 GMT + - Tue, 24 Mar 2026 05:55:49 GMT expires: - '-1' pragma: @@ -3228,11 +2828,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/57d85881-c603-4697-a3e6-1bbb395f7ed4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/945a3cc0-063e-426f-9977-0b5184dd44a0 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DA3645FBA1C9476CB781B88F19548DE1 Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:53:22Z' + - 'Ref A: 1C3A14844F564B38B6989EEB1C2307B7 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:55:49Z' x-powered-by: - ASP.NET status: @@ -3244,7 +2844,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -3252,19 +2852,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba?api-version=2025-07-01&azureAsyncOperation=true&t=639250267924642529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=dG0-ig9oCux_NfpV7Kpt0tjuKNWj9PERbg5QeQTjvVZdCCRwMaTRKcsD7YQZF_6XnLnA4Q-ogVVUr_-levov8EeHhcqJk4NakyiY-ktK_vc9nKUx_ZiEuvGS4y-NYxvKFKbyOn-KK7lngrrE3XPqEseRjPqC8xVPkP7pofFj2Y2mAWu_h4ueTa-GZxjfFmWvPv3NIYKPu0h2-yRUBE1UROJMX5xwg2wT1AwRd9E7KeQAe1OlRn_n4fsL3GhF6jahOOXofEQF6TbDKpK2K5Hql62oyzJ9iJCbf_BeCWWxByuB7pXWdyBfU25xUlyzQWQsGxkPzeb1zk9bBwDlrB1ksg&h=H-VTyW-xkSq77nWxGPsqLTKtcOkMPw5vvHOEnAYk5Jo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee?api-version=2025-07-01&azureAsyncOperation=true&t=639099285396604801&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=FK0C2YeRxAEeH0jMjvGsFLlXbH-hPp_HFK0HGEF44-yzJr9UqH7IhQaAFtTNiRUjhLfJ-GJDFfoWwnzTx8Mttq-qBiv9kUwgCn1Jpp2q228Cy3-3HcvlZ7_Pzna4RV04ZaI-IiHWTOtjK8f_B-FJT3wf5NYD8Dqrs6SQO5b_L0b40RgKpU_dS6dmtfTGgLk-InQhhX5d2VNxZaoISDAIJ0XtKW6faNLBXrfOX2PGLTVUzUVqCLtJu3FXs7RaMvqxsG1So47p6Pgg0CALtjEGTLvWWk2oPT8IJKJQ472vEbDWyZ3lrR9aw9oDpKOIw3n1eFmaSNp47QFiZRF-wTC0AA&h=ECNk07Y48XkhSgfxGC8Zfud1wCd-yzg7mhF27Jsdjq4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/dc16bd51-9a62-4196-bf37-2480d00edfba","name":"dc16bd51-9a62-4196-bf37-2480d00edfba","status":"Succeeded","startTime":"2026-09-14T23:53:12.4535733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/2166c42d-50c6-4c8f-89fd-a527a1472dee","name":"2166c42d-50c6-4c8f-89fd-a527a1472dee","status":"Succeeded","startTime":"2026-03-24T05:55:39.6255863"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -3272,7 +2871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:25 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -3286,11 +2885,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0ef8c446-09b0-4a2b-9c91-ae6316060edc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/db8d0720-dd43-46b8-8869-6af35ab63048 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DB3D9EE95883459DB12D95E2500E5AAF Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:53:25Z' + - 'Ref A: 36C6A752F297453A9C190DEA0B27E18F Ref B: SJC211051201023 Ref C: 2026-03-24T05:55:52Z' x-powered-by: - ASP.NET status: @@ -3302,7 +2901,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -3310,28 +2909,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:12.3236266"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7472' + - '4661' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:25 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -3345,9 +2943,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C9F4A67876324678A27DECC71F63FDE3 Ref B: BN1AA2051014023 Ref C: 2026-09-14T23:53:25Z' + - 'Ref A: DDD8789F90D94B9E8E61447B9497312E Ref B: BY1AA1072320062 Ref C: 2026-03-24T05:55:52Z' x-powered-by: - ASP.NET status: @@ -3359,7 +2957,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret list Connection: @@ -3367,389 +2965,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:25 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -3761,9 +3283,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 92D9902F9EC34AB2BCEC7EB522717575 Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:53:25Z' + - 'Ref A: 3868DD2BCC6C447389CF8E197A0F6DC0 Ref B: BY1AA1072315029 Ref C: 2026-03-24T05:55:53Z' status: code: 200 message: OK @@ -3773,7 +3295,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret list Connection: @@ -3781,28 +3303,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:12.3236266"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7472' + - '4661' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:26 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -3816,9 +3337,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0CD2D573731248F58670142066309ED6 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:53:26Z' + - 'Ref A: F1C13AB984D342E08FACC489B275FF76 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:55:53Z' x-powered-by: - ASP.NET status: @@ -3830,7 +3351,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -3838,389 +3359,313 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39885' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:26 GMT + - Tue, 24 Mar 2026 05:55:52 GMT expires: - '-1' pragma: @@ -4232,9 +3677,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B52F9DABB16B474586F6A24F98D2C0B2 Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:53:26Z' + - 'Ref A: 466A474B38C147C5B4566EE3C0618A11 Ref B: SJC211051205049 Ref C: 2026-03-24T05:55:53Z' status: code: 200 message: OK @@ -4244,7 +3689,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4252,28 +3697,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:12.3236266"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:39.3791927"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7472' + - '4661' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:26 GMT + - Tue, 24 Mar 2026 05:55:53 GMT expires: - '-1' pragma: @@ -4287,9 +3731,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D161B5E2CEBB4CEE8E7761894A84549B Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:53:26Z' + - 'Ref A: A7AE8C5C3C4B4421B89661404B4BEF7E Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:55:53Z' x-powered-by: - ASP.NET status: @@ -4301,7 +3745,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4311,19 +3755,18 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -4331,7 +3774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:27 GMT + - Tue, 24 Mar 2026 05:55:55 GMT expires: - '-1' pragma: @@ -4345,13 +3788,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/174cda14-708c-4824-b308-253b5f5bce10 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/11b564e7-976e-4d50-852d-430d807a6526 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 809ABD3FF1254ADD9E3860F2E74F13D5 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:53:27Z' + - 'Ref A: 8EE9D307D17F46D1B803C4838B4D1330 Ref B: SJC211051204047 Ref C: 2026-03-24T05:55:54Z' x-powered-by: - ASP.NET status: @@ -4360,12 +3803,11 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "East US", "systemData": {"createdBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", - "createdByType": "Application", "createdAt": "2026-09-14T23:52:57.7090432", - "lastModifiedBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", "lastModifiedByType": - "Application", "lastModifiedAt": "2026-09-14T23:53:12.3236266"}, "properties": - {"provisioningState": "Succeeded", "runningStatus": "Running", "managedEnvironmentId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "East US", "systemData": {"createdBy": "test@example.com", "createdByType": + "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:39.3791927"}, + "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", + "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", @@ -4379,64 +3821,30 @@ interactions: "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", - "20.75.182.233", "52.188.26.111", "4.157.110.133", "20.242.213.7", "20.75.223.5", - "4.246.246.168", "20.241.203.96", "57.151.24.126", "52.191.16.245", "40.121.127.182", - "172.214.71.203", "134.33.210.99", "48.206.248.192", "134.33.210.101", "20.253.102.18", - "172.171.86.142", "20.81.104.195", "172.214.71.222", "48.194.103.129", "48.195.188.44", - "52.186.33.216", "52.191.239.15", "20.241.246.84", "172.214.123.235", "128.203.66.61", - "4.157.233.139", "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", - "52.226.252.104", "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", - "4.246.255.52", "52.249.202.205", "135.237.72.218", "40.76.168.71", "134.33.132.247", - "135.237.61.79", "20.241.203.94", "52.191.23.227", "48.194.102.105", "48.202.133.14", - "51.8.221.179", "52.186.34.47", "57.151.62.229", "20.232.253.10", "20.241.205.165", - "48.194.103.134", "48.206.106.48", "172.214.2.3", "74.179.212.41", "128.203.123.4", - "48.216.135.228", "40.76.132.252", "4.156.62.147", "20.242.133.14", "13.92.75.107", - "48.194.117.106", "20.242.218.246", "20.185.213.94", "135.234.219.180", "20.121.253.21", - "52.255.211.68", "135.234.253.122", "20.242.238.207", "128.203.108.15", "74.179.199.219", - "128.203.106.197", "13.92.74.156", "52.146.85.169", "52.226.196.86", "135.234.249.68", - "134.33.212.222", "134.33.213.92", "20.237.93.245", "40.88.235.179", "52.191.23.224", - "20.253.98.81", "40.88.192.71", "20.237.24.181", "128.203.105.225", "74.179.210.187", - "48.202.212.175", "40.88.192.73", "172.171.62.28", "40.88.233.159", "134.33.213.118", - "51.8.239.21", "135.234.219.223", "4.156.119.224", "52.146.85.168", "52.191.94.237", - "51.8.239.129", "135.234.219.80", "20.88.185.204", "57.151.62.77", "134.33.212.186", - "48.206.106.49", "74.179.198.240", "52.186.34.57", "48.194.54.148", "20.127.248.50", - "20.241.171.30", "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", - "13.82.216.169", "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", - "20.169.229.46", "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", - "20.169.229.92", "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", - "40.90.243.232", "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", - "172.210.91.191", "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", - "57.152.55.92", "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", - "172.210.90.119", "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", - "172.171.186.158", "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", - "4.157.231.174", "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", - "20.121.176.173", "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", - "20.242.207.230", "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", - "20.237.38.135", "20.62.141.31", "51.8.47.218", "104.45.171.209", "20.231.232.154", - "57.152.2.80", "135.237.11.87", "57.151.46.244", "172.212.15.63", "74.179.244.93", - "4.156.59.40", "4.156.59.85", "48.216.148.42", "134.33.255.190", "51.8.225.81", - "135.237.10.218", "48.216.155.49", "172.214.119.100", "48.194.103.86", "172.171.52.9", + "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", + "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", + "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", + "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", + "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", + "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", + "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", + "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", + "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", + "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", + "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", + "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", + "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", + "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", + "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", + "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", - "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.31.204", - "52.186.33.225", "20.242.139.243", "52.224.72.149", "20.242.230.200", "52.224.140.98", - "48.194.18.18", "20.102.0.242", "20.81.112.111", "20.121.246.203", "20.81.50.198", - "52.226.147.213", "172.171.182.143", "57.152.79.75", "135.237.57.10", "48.202.133.118", - "48.194.18.110", "172.171.87.168", "51.8.52.86", "20.253.97.235", "40.121.120.116", - "52.249.209.201", "52.234.160.205", "40.121.120.76", "172.171.128.9", "20.241.171.60", - "20.246.146.125", "20.253.117.162", "52.186.33.238", "48.195.175.75", "20.253.113.195", - "52.224.28.121", "52.146.82.53", "4.255.110.46", "20.253.97.234", "172.210.99.147", - "20.246.147.115", "20.237.104.246", "48.206.106.61", "52.191.23.220", "104.45.170.18", - "48.194.42.110", "135.237.59.73", "135.237.110.0", "20.242.218.239", "51.8.47.223", - "57.152.79.158", "135.237.44.220", "134.33.211.216", "135.234.159.160", "20.253.119.252", - "20.185.212.210", "48.194.103.131", "135.234.216.9", "52.191.201.41", "52.186.102.222", - "52.188.137.180", "4.255.111.148", "51.8.225.189", "172.212.121.239", "20.232.61.25", - "172.171.146.138", "52.226.230.169", "52.224.141.126", "48.206.105.102", "52.226.247.167"], + "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": - "containerapp-e2e000003--y4kedib", "latestRevisionFqdn": "", "customDomainVerificationId": - "C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB", "configuration": + "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": + "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": {"secrets": [{"name": "containerapp000002azurecrio-containerapp000002", "value": - "D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"}, + "***"}, {"name": "newsecret", "value": "test", "keyVaultUrl": "", "identity": ""}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": @@ -4454,42 +3862,41 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: - keep-alive Content-Length: - - '8078' + - '5097' Content-Type: - application/json ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs cache-control: - no-cache content-length: - - '7136' + - '4325' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:28 GMT + - Tue, 24 Mar 2026 05:55:55 GMT expires: - '-1' pragma: @@ -4503,11 +3910,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/14cb9780-9ad8-4262-9043-e73a14459b7c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/e4627207-58ef-4427-a6c3-4b2369eb1f34 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: DFF13AA3B39141108B4BCA984C8E6440 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:53:28Z' + - 'Ref A: 8FC07E1B367E4862AA2AC34321F0CE97 Ref B: BY1AA1072318062 Ref C: 2026-03-24T05:55:55Z' x-powered-by: - ASP.NET status: @@ -4519,7 +3926,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4527,27 +3934,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:27 GMT + - Tue, 24 Mar 2026 05:55:56 GMT expires: - '-1' pragma: @@ -4561,11 +3967,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2f93b297-9e4a-4cce-a5fb-3c6816db2ffe + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/cd0d9c91-24fa-4273-b382-463b525735fe x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DA2D75342566407FBF73D99735F87EE8 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:53:28Z' + - 'Ref A: C3E8134529584186A81D7578B1FA70AC Ref B: BY1AA1072318060 Ref C: 2026-03-24T05:55:56Z' x-powered-by: - ASP.NET status: @@ -4577,7 +3983,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4585,27 +3991,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:30 GMT + - Tue, 24 Mar 2026 05:55:58 GMT expires: - '-1' pragma: @@ -4619,11 +4024,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d17c0f7a-4260-4638-94e6-0cdf4b4a4614 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/28d356eb-f8f8-4ef3-a998-85f5b6f4e5a2 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1BF3179AEEEC447293AB7E3E47F75683 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:53:31Z' + - 'Ref A: F44C52974FCF45F3AD96AD8891A2179F Ref B: SJC211051201045 Ref C: 2026-03-24T05:55:58Z' x-powered-by: - ASP.NET status: @@ -4635,7 +4040,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4643,27 +4048,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:34 GMT + - Tue, 24 Mar 2026 05:56:00 GMT expires: - '-1' pragma: @@ -4677,11 +4081,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b8dfb909-57ff-45cd-afd8-bce88d331575 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/0de5384e-2426-4071-bb90-912cb0ce516b x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1DFA10CDCE924F74A646F9129F09EC94 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:53:33Z' + - 'Ref A: E6DADEE961EC4C3EB591E37F165F1FF7 Ref B: SJC211051205011 Ref C: 2026-03-24T05:56:00Z' x-powered-by: - ASP.NET status: @@ -4693,7 +4097,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4701,27 +4105,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:36 GMT + - Tue, 24 Mar 2026 05:56:02 GMT expires: - '-1' pragma: @@ -4735,11 +4138,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/6a5cf143-922b-4cb6-9305-679a70a9efe1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/e2312522-0df5-4178-9200-544aa5102489 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1624825F2C2E476DBCA140E1CD2AF6F1 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:53:36Z' + - 'Ref A: CBEE3B84D5194D3FA61E1D861AAB363C Ref B: BY1AA1072317029 Ref C: 2026-03-24T05:56:03Z' x-powered-by: - ASP.NET status: @@ -4751,7 +4154,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4759,27 +4162,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"InProgress","startTime":"2026-09-14T23:53:28.4367352"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"InProgress","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:38 GMT + - Tue, 24 Mar 2026 05:56:05 GMT expires: - '-1' pragma: @@ -4793,11 +4195,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4c51e112-1f9e-4b02-bbea-427ef7992a34 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c9a8bf35-6262-45dd-a8cb-a3d3ea278526 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1654839391EF466C9818193F81D505F2 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:53:39Z' + - 'Ref A: A9B8271806C0464F944A4C2B754EB8BE Ref B: SJC211051204025 Ref C: 2026-03-24T05:56:05Z' x-powered-by: - ASP.NET status: @@ -4809,7 +4211,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4817,27 +4219,26 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0?api-version=2025-07-01&azureAsyncOperation=true&t=639250268085077529&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=AgkuzNwKbpkVZblBNULJgfFVIElv7LBsq1abJSSQnqXZPyqVSTVld-D86uj0PMdW2VHCB0ZTsJnF685RNebsiR-fKV9uB0wtlgOlj7p_TsweT1xmobp6yBD0aHr4p6NtZs4ma7hryLeqwukiM8RgxVBFUmpVPJh7dea3ZDLfC9W_5_scAVLRDAbc5gSaOtaBxCCWJ8aNgTxtZtFtcWaPwA8hinC9PpuIQ6YKFDWlIkHi1Em7_eCQdMS5Y1LPLXSHLe_nc_I2tZ3_TDLDJJjk2aWF9Zm-_GPimoP4M16qloqQ3iKLwQCaO0elkNL6N1GZjua7qkxEIxxAKNeJ9In1LA&h=frmlxDtHvGdhoJdliXHb9FCoeB1D9N3gU5QoHUpgKZM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe?api-version=2025-07-01&azureAsyncOperation=true&t=639099285559514749&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=WJfxshCELgny0_B96ADXVVrTlKCj77htksp-6LcbsTolxV0_xYQbXuIny-Jtp9EdV9jOmXoxEzvvYPPxo9TY30rqAR-Q6Aqy6fo-GXcCXK_HuGQVOgPytgl6O0Jd-WJfMZdZXXcaZs0JzNG-_6SZakCf0VuZ3c2FPR9qjDJ20HE3lFzeqD-IvSJydoeGhCkMYmb97KB5htvXO0nctk43R8SpwilSSKXp0wx4uFvRojZHdDp2yR6p62l4AHeTBiV8HmT5bwjBV4qEzgHCF30mUpGumYv1gzl_5wKN5XvMjsQ598M8eQ-KKjCkcopF9Zc77CAZJgvN1rrq1y8-H8hwiQ&h=cvudAp3JTtj6JN51AnSnQ1-tJbaIrkO3rQr0PwA6xCs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/778abea4-3507-4b07-9d56-ebb9a5b8deb0","name":"778abea4-3507-4b07-9d56-ebb9a5b8deb0","status":"Succeeded","startTime":"2026-09-14T23:53:28.4367352"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/a7ac32ab-3d0e-4120-9391-556a41c7c5fe","name":"a7ac32ab-3d0e-4120-9391-556a41c7c5fe","status":"Succeeded","startTime":"2026-03-24T05:55:55.897585"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '277' + - '276' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:41 GMT + - Tue, 24 Mar 2026 05:56:08 GMT expires: - '-1' pragma: @@ -4851,11 +4252,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0c786d8e-77ac-44c8-81fa-8a361c49f0b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/9f349a5d-3577-4e46-8eeb-5d24181c5fa6 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DD92E333FE644CD393CC35DEA4F3C869 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:53:41Z' + - 'Ref A: 4EE0DEF8C3D6412CB4CE71E445B62105 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:56:08Z' x-powered-by: - ASP.NET status: @@ -4867,7 +4268,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret set Connection: @@ -4875,28 +4276,27 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7493' + - '4682' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:41 GMT + - Tue, 24 Mar 2026 05:56:08 GMT expires: - '-1' pragma: @@ -4910,9 +4310,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 12126C16E06C4D14B1087F7A9C8D9845 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:53:41Z' + - 'Ref A: CCC01C783D574577AA8501B30A001860 Ref B: SJC211051203053 Ref C: 2026-03-24T05:56:09Z' x-powered-by: - ASP.NET status: @@ -4924,7 +4324,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret show Connection: @@ -4932,389 +4332,313 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:42 GMT + - Tue, 24 Mar 2026 05:56:08 GMT expires: - '-1' pragma: @@ -5326,9 +4650,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9CF52F6C8E09437BB29674EB441DC710 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:53:42Z' + - 'Ref A: 6038F898746C41AA9A89E8B256D036F1 Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' status: code: 200 message: OK @@ -5338,7 +4662,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret show Connection: @@ -5346,28 +4670,27 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7493' + - '4682' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:42 GMT + - Tue, 24 Mar 2026 05:56:09 GMT expires: - '-1' pragma: @@ -5381,9 +4704,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 85F15374C95F4658AC2E464DA0A09BCD Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:53:42Z' + - 'Ref A: 9C4E884AA8B4470EBE209FC2BA55208F Ref B: BY1AA1072318031 Ref C: 2026-03-24T05:56:09Z' x-powered-by: - ASP.NET status: @@ -5395,7 +4718,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret show Connection: @@ -5405,19 +4728,18 @@ interactions: ParameterSetName: - -g -n --secret-name User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -5425,7 +4747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:42 GMT + - Tue, 24 Mar 2026 05:56:09 GMT expires: - '-1' pragma: @@ -5439,13 +4761,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7e95e4c2-80e4-4ef0-8d62-a020b9ab87e4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/da4138f1-e787-439b-a80f-7f43415a263b x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 40B65E57EA444157B2D3ADA51B90DC51 Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:53:43Z' + - 'Ref A: 05F6652B679A4680B104BA81D538E845 Ref B: BY1AA1072317036 Ref C: 2026-03-24T05:56:09Z' x-powered-by: - ASP.NET status: @@ -5457,7 +4779,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret remove Connection: @@ -5465,389 +4787,313 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39885' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:43 GMT + - Tue, 24 Mar 2026 05:56:09 GMT expires: - '-1' pragma: @@ -5859,9 +5105,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F5C0F2D654F54BB6A820215E7BC56E62 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:53:43Z' + - 'Ref A: 3904BCFA04A74EDC9D306749BDAB337C Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:10Z' status: code: 200 message: OK @@ -5871,7 +5117,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret remove Connection: @@ -5879,28 +5125,27 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0oc4zm3","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7493' + - '4682' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:43 GMT + - Tue, 24 Mar 2026 05:56:10 GMT expires: - '-1' pragma: @@ -5914,9 +5159,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CBF0F3D936CC4C21AEBE08342B09DD79 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:53:43Z' + - 'Ref A: 00C600BB9AE6418B8F08CC34161515A2 Ref B: BY1AA1072317023 Ref C: 2026-03-24T05:56:10Z' x-powered-by: - ASP.NET status: @@ -5928,7 +5173,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret remove Connection: @@ -5938,19 +5183,18 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"D5NFtUMbY8azHVM4p7bzOasaNUELXG5mEbxrGOSKtmSmGqPd0pzJJQQJ99CIACYeBjFEqg7NAAACAZCR6HB6"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000002azurecrio-containerapp000002","value":"***"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -5958,7 +5202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:43 GMT + - Tue, 24 Mar 2026 05:56:10 GMT expires: - '-1' pragma: @@ -5972,13 +5216,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/011e52db-66c9-4fcd-a4d6-9c4cb457bd7c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/8e2e9a85-aeba-435c-8c88-9f89f355079a x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: E6D2A1D6D4994B4C8FC413E14D6503F3 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:53:44Z' + - 'Ref A: 41BDCDD27D774B498C9CAB78E9AF9137 Ref B: BY1AA1072319042 Ref C: 2026-03-24T05:56:10Z' x-powered-by: - ASP.NET status: @@ -5987,12 +5231,11 @@ interactions: - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003", "name": "containerapp-e2e000003", "type": "Microsoft.App/containerApps", "location": - "East US", "systemData": {"createdBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", - "createdByType": "Application", "createdAt": "2026-09-14T23:52:57.7090432", - "lastModifiedBy": "ebaf1741-13bf-4ccb-9cf6-e74d3838634b", "lastModifiedByType": - "Application", "lastModifiedAt": "2026-09-14T23:53:28.3358779"}, "properties": - {"provisioningState": "Succeeded", "runningStatus": "Running", "managedEnvironmentId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "East US", "systemData": {"createdBy": "test@example.com", "createdByType": + "User", "createdAt": "2026-03-24T05:55:24.104175", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2026-03-24T05:55:55.7796029"}, + "properties": {"provisioningState": "Succeeded", "runningStatus": "Running", + "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "workloadProfileName": "Consumption", "outboundIpAddresses": ["20.231.246.122", "20.231.246.54", "20.231.247.19", "20.231.246.253", "20.241.227.6", "20.241.226.169", @@ -6006,62 +5249,28 @@ interactions: "40.121.19.83", "40.121.18.131", "40.121.18.201", "40.121.18.170", "40.121.18.242", "13.92.130.42", "40.121.19.42", "40.121.18.73", "40.121.18.43", "51.8.12.17", "4.156.180.142", "20.242.162.124", "52.188.24.146", "135.234.194.233", "74.179.252.92", - "20.75.182.233", "52.188.26.111", "4.157.110.133", "20.242.213.7", "20.75.223.5", - "4.246.246.168", "20.241.203.96", "57.151.24.126", "52.191.16.245", "40.121.127.182", - "172.214.71.203", "134.33.210.99", "48.206.248.192", "134.33.210.101", "20.253.102.18", - "172.171.86.142", "20.81.104.195", "172.214.71.222", "48.194.103.129", "48.195.188.44", - "52.186.33.216", "52.191.239.15", "20.241.246.84", "172.214.123.235", "128.203.66.61", - "4.157.233.139", "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", - "52.226.252.104", "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", - "4.246.255.52", "52.249.202.205", "135.237.72.218", "40.76.168.71", "134.33.132.247", - "135.237.61.79", "20.241.203.94", "52.191.23.227", "48.194.102.105", "48.202.133.14", - "51.8.221.179", "52.186.34.47", "57.151.62.229", "20.232.253.10", "20.241.205.165", - "48.194.103.134", "48.206.106.48", "172.214.2.3", "74.179.212.41", "128.203.123.4", - "48.216.135.228", "40.76.132.252", "4.156.62.147", "20.242.133.14", "13.92.75.107", - "48.194.117.106", "20.242.218.246", "20.185.213.94", "135.234.219.180", "20.121.253.21", - "52.255.211.68", "135.234.253.122", "20.242.238.207", "128.203.108.15", "74.179.199.219", - "128.203.106.197", "13.92.74.156", "52.146.85.169", "52.226.196.86", "135.234.249.68", - "134.33.212.222", "134.33.213.92", "20.237.93.245", "40.88.235.179", "52.191.23.224", - "20.253.98.81", "40.88.192.71", "20.237.24.181", "128.203.105.225", "74.179.210.187", - "48.202.212.175", "40.88.192.73", "172.171.62.28", "40.88.233.159", "134.33.213.118", - "51.8.239.21", "135.234.219.223", "4.156.119.224", "52.146.85.168", "52.191.94.237", - "51.8.239.129", "135.234.219.80", "20.88.185.204", "57.151.62.77", "134.33.212.186", - "48.206.106.49", "74.179.198.240", "52.186.34.57", "48.194.54.148", "20.127.248.50", - "20.241.171.30", "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", - "13.82.216.169", "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", - "20.169.229.46", "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", - "20.169.229.92", "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", - "40.90.243.232", "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", - "172.210.91.191", "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", - "57.152.55.92", "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", - "172.210.90.119", "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", - "172.171.186.158", "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", - "4.157.231.174", "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", - "20.121.176.173", "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", - "20.242.207.230", "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", - "20.237.38.135", "20.62.141.31", "51.8.47.218", "104.45.171.209", "20.231.232.154", - "57.152.2.80", "135.237.11.87", "57.151.46.244", "172.212.15.63", "74.179.244.93", - "4.156.59.40", "4.156.59.85", "48.216.148.42", "134.33.255.190", "51.8.225.81", - "135.237.10.218", "48.216.155.49", "172.214.119.100", "48.194.103.86", "172.171.52.9", + "20.75.182.233", "52.188.26.111", "4.157.110.133", "128.203.66.61", "4.157.233.139", + "4.246.249.6", "20.168.207.180", "172.210.105.164", "52.142.22.120", "52.226.252.104", + "172.212.65.206", "52.249.211.77", "52.224.151.170", "20.237.50.56", "4.246.255.52", + "52.249.202.205", "135.237.72.218", "40.76.168.71", "20.127.248.50", "20.241.171.30", + "20.241.172.248", "20.241.172.250", "20.246.203.138", "20.246.203.140", "13.82.216.169", + "13.82.216.172", "13.82.216.149", "52.170.33.171", "20.169.229.88", "20.169.229.46", + "20.169.229.29", "20.169.229.38", "20.169.229.62", "20.169.229.109", "20.169.229.92", + "20.169.229.27", "20.169.229.51", "20.169.229.42", "48.216.192.198", "40.90.243.232", + "40.90.242.126", "135.237.112.47", "51.8.74.190", "4.157.197.142", "172.210.91.191", + "172.210.90.42", "40.90.243.227", "40.90.243.72", "52.234.235.220", "57.152.55.92", + "172.212.36.156", "172.210.121.45", "172.214.2.208", "51.8.15.68", "172.210.90.119", + "134.33.213.81", "128.203.83.220", "20.241.192.93", "172.212.121.150", "172.171.186.158", + "52.249.213.152", "74.179.213.114", "4.246.239.152", "4.156.216.65", "4.157.231.174", + "172.171.168.136", "20.185.213.14", "135.237.23.77", "20.75.154.200", "20.121.176.173", + "52.188.183.58", "52.226.222.18", "52.170.171.70", "52.152.194.127", "20.242.207.230", + "52.224.224.85", "52.224.187.13", "20.253.99.205", "48.216.151.10", "172.171.52.9", "20.232.216.204", "57.152.80.247", "20.237.45.193", "74.179.184.211", "52.142.22.78", "172.212.53.114", "172.212.65.70", "20.241.193.184", "20.241.211.237", "20.121.103.252", - "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.31.204", - "52.186.33.225", "20.242.139.243", "52.224.72.149", "20.242.230.200", "52.224.140.98", - "48.194.18.18", "20.102.0.242", "20.81.112.111", "20.121.246.203", "20.81.50.198", - "52.226.147.213", "172.171.182.143", "57.152.79.75", "135.237.57.10", "48.202.133.118", - "48.194.18.110", "172.171.87.168", "51.8.52.86", "20.253.97.235", "40.121.120.116", - "52.249.209.201", "52.234.160.205", "40.121.120.76", "172.171.128.9", "20.241.171.60", - "20.246.146.125", "20.253.117.162", "52.186.33.238", "48.195.175.75", "20.253.113.195", - "52.224.28.121", "52.146.82.53", "4.255.110.46", "20.253.97.234", "172.210.99.147", - "20.246.147.115", "20.237.104.246", "48.206.106.61", "52.191.23.220", "104.45.170.18", - "48.194.42.110", "135.237.59.73", "135.237.110.0", "20.242.218.239", "51.8.47.223", - "57.152.79.158", "135.237.44.220", "134.33.211.216", "135.234.159.160", "20.253.119.252", - "20.185.212.210", "48.194.103.131", "135.234.216.9", "52.191.201.41", "52.186.102.222", - "52.188.137.180", "4.255.111.148", "51.8.225.189", "172.212.121.239", "20.232.61.25", - "172.171.146.138", "52.226.230.169", "52.224.141.126", "48.206.105.102", "52.226.247.167"], + "20.241.183.150", "20.168.206.195", "20.242.232.14", "57.152.50.21", "48.194.18.171"], "latestRevisionName": "containerapp-e2e000003--0000001", "latestReadyRevisionName": - "containerapp-e2e000003--y4kedib", "latestRevisionFqdn": "", "customDomainVerificationId": - "C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB", "configuration": + "containerapp-e2e000003--0oc4zm3", "latestRevisionFqdn": "", "customDomainVerificationId": + "5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD", "configuration": {"secrets": [{"name": "newsecret", "value": "test"}], "activeRevisionsMode": "Single", "ingress": null, "registries": [{"server": "containerapp000002.azurecr.io", "username": "containerapp000002", "passwordSecretRef": "containerapp000002azurecrio-containerapp000002", @@ -6078,20 +5287,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp secret remove Connection: - keep-alive Content-Length: - - '7886' + - '4905' Content-Type: - application/json ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -6104,7 +5312,7 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -6112,7 +5320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:44 GMT + - Tue, 24 Mar 2026 05:56:10 GMT expires: - '-1' pragma: @@ -6124,11 +5332,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9c191a27-48e4-4753-a38d-f8bfb5ae8a47 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/61d8b356-d6f9-4b78-a688-de202ce08734 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 21865ABFAF0544AE8829B83AF8024447 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:53:44Z' + - 'Ref A: 816599FAEA9040529498C23C0DB57675 Ref B: SJC211051204007 Ref C: 2026-03-24T05:56:11Z' x-powered-by: - ASP.NET status: @@ -6140,7 +5348,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -6148,389 +5356,313 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:44 GMT + - Tue, 24 Mar 2026 05:56:11 GMT expires: - '-1' pragma: @@ -6542,9 +5674,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FD6CF2B26C6D47A19EDD8DD037702678 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:53:44Z' + - 'Ref A: BFE51125256A4FF593D00AA543B49B09 Ref B: BY1AA1072316062 Ref C: 2026-03-24T05:56:11Z' status: code: 200 message: OK @@ -6554,7 +5686,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -6562,389 +5694,313 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:45 GMT + - Tue, 24 Mar 2026 05:56:11 GMT expires: - '-1' pragma: @@ -6956,9 +6012,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 231FF277B0434CF08788659B71714302 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:53:45Z' + - 'Ref A: 3512FA170F1C403CB2F3FB534F148289 Ref B: SJC211051204037 Ref C: 2026-03-24T05:56:11Z' status: code: 200 message: OK @@ -6968,7 +6024,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -6976,28 +6032,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:28.3358779"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--y4kedib","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:55.7796029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000001","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7493' + - '4682' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:45 GMT + - Tue, 24 Mar 2026 05:56:12 GMT expires: - '-1' pragma: @@ -7011,9 +6066,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2107AFEBC37347D59769E7D437E66F0B Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:53:45Z' + - 'Ref A: 866E0B3AA9474449B8CEB1CC89614392 Ref B: BY1AA1072318036 Ref C: 2026-03-24T05:56:12Z' x-powered-by: - ASP.NET status: @@ -7028,7 +6083,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7040,8 +6095,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -7052,19 +6106,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:53:46 GMT + - Tue, 24 Mar 2026 05:56:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=maoMITsp3HTqJj0qKoHrlfac2NEDaxEqE6GsAvj3Ysy1xIPds0iEBhb4qBch46B7ftrWXO_ZPL8KBiwR9Q6qsvhXdsJeU7iuatEdQ5wZ7f9JjgAJofeps0lrH3kq1BNHN_RMwotZs5lFJOpNPlFSAKvwu0EvnabW2HKHrhqZypCeefgS53xLUQAtZwZboes049lVFwPXvzu-LadmeOtaWRdOvAFhQg2Hx6mfqyk_6S898Ma92h1ajq3w1-2Rm0_lD-0_BBWtdEFwfDb6ByEXMG1NR9MJEDfisJOBM5ilfEoD5w899YmnYtVxUx580EiX4-Rcvr5dCtwGHA21fwvr9w&h=vc6WTvoleJAKs5cqzc3Ja5YJcgbAw1DO0TjwgpvVf4I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=l-N9Vi3l9-TX_yOuu0QM4TcCIh9TNah7vnMU7t9wfU4plH-1xT11_xNhfceZ3-7flZBf4VtHOkqQSdbsxdwSESXpK4tKza1TT2D6KBseZI2gua_goueOdXclqPuqDpyfc1xFB94vLgBoxaburE9LsrUjIx4UHAsAx4mf0yNAE83dv32qWFTPwkoO4cM-MD5OU8bqOLWHCNmeRtLFnLFoInTRh8szc4lRcvw6jotcyiZ7yLQVjyET4jl-JlF_xOh_cY5ErFmf1lqTiGoCjlpSE4m5cVqCaZaZLUpaqqFqmH6yVhBwAN7vuBwHmo2cIbnVUEGEJ-aAL-d5oeqcmyidHg&h=pmoREmszgFD1_OGHIqPB5EsqTa58JsD3ZbxXmff0r7g pragma: - no-cache strict-transport-security: @@ -7074,11 +6128,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8f90254f-7d86-4567-bf48-5689dae8d7c0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/eastus2/673adef0-8a4a-4ae7-90fa-459031cbda47 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 0D6BF9A9015844DE9F9E16FD6A4C960A Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:53:45Z' + - 'Ref A: 50349BF7FCED4677B7718B2E21CDACFF Ref B: SJC211051205025 Ref C: 2026-03-24T05:56:12Z' x-powered-by: - ASP.NET status: @@ -7090,7 +6144,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7098,19 +6152,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -7118,7 +6171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:45 GMT + - Tue, 24 Mar 2026 05:56:13 GMT expires: - '-1' pragma: @@ -7132,11 +6185,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6c59f474-aa5f-4ca4-aef2-707fa30e8eaf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/f1d73c06-d328-4481-bd02-d6cb554d2ed0 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 85D161E871FB4C7B93AE434E30D5DD95 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:53:46Z' + - 'Ref A: C85F4A1CBAE749AB95A369BE2FE653A4 Ref B: BY1AA1072315054 Ref C: 2026-03-24T05:56:12Z' x-powered-by: - ASP.NET status: @@ -7148,7 +6201,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7156,19 +6209,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -7176,7 +6228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:48 GMT + - Tue, 24 Mar 2026 05:56:15 GMT expires: - '-1' pragma: @@ -7190,11 +6242,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2eb7ad87-dfb5-4bce-abea-cf9d964c44b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ab77b96a-55ff-4d3d-88a7-d4ceb38b6649 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B10A4CDFA82C492FBF48DC2E93AFEB6A Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:53:49Z' + - 'Ref A: 929C22EE3A894C58BFBEDB39B1C6F948 Ref B: SJC211051203039 Ref C: 2026-03-24T05:56:15Z' x-powered-by: - ASP.NET status: @@ -7206,7 +6258,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7214,19 +6266,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -7234,7 +6285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:50 GMT + - Tue, 24 Mar 2026 05:56:17 GMT expires: - '-1' pragma: @@ -7248,11 +6299,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b60a4961-2cd0-4747-ab11-6eac16c4d7c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/8c7e3e3b-9339-4236-8282-0ac9b47ab4ec x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0C6CE73F618845FA97AFAA24BAEE815A Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:53:51Z' + - 'Ref A: BC38B9AD13DF436DBBD44334B085D9D4 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:18Z' x-powered-by: - ASP.NET status: @@ -7264,7 +6315,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7272,19 +6323,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"InProgress","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -7292,7 +6342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:53 GMT + - Tue, 24 Mar 2026 05:56:20 GMT expires: - '-1' pragma: @@ -7306,11 +6356,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0e1112b0-5ea7-491d-afc3-103fa6af4c75 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/138620fe-f8a3-42d1-b4f7-cf00708613fa x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 66DF0429E97849D5BF802B13CDDEFBDB Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:53:54Z' + - 'Ref A: A97A32F8D13148EA9B55A5612807DDA2 Ref B: SJC211051201025 Ref C: 2026-03-24T05:56:20Z' x-powered-by: - ASP.NET status: @@ -7322,7 +6372,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7330,27 +6380,26 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0?api-version=2025-07-01&azureAsyncOperation=true&t=639099285727356568&c=MIIHlDCCBnygAwIBAgIQW7S9mIRniur0NlR57d718DANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwNjE3MDQyM1oXDTI2MDkwMTIzMDQyM1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHzVVoe0O55dormbd1g__i9CChuNndwa-cF9gSr0vo9yAkcz9YezWxXIpeUjaQ4mEBrHtzOwhn8kvgBXg5JAqNIf8uLHM5DxbknrKa1depnO4Tuax07zeRiJDdFA7B5H9IEVpxM3qhnAmzQJemWxy9Z3i_n35NeiiQXMb3Z3LSr9_6AyZ496sFBm2f7jlMEE_5SePxP1YS_BX-ANbLVy6NMdUaRDdhO-5zEX_fKnhXSIh6tmQRoh10pok-x0izIudmYuNtGTMmN7QaVF6iNuMUeJkQ1_1vtyJeQqXOqxSjOmAsAHvTikKayvaQViadVVNKLm31l4Xe3hrgI-aRPcY9AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTpqT3j26R3MVGBnlo3Rls2Z23A0DAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBSmezIVTrW4CFudU_EKu4_ma1QX-ow6R0LolPxxG3Suyd_xEIzyf9b_xi5vFuSZuL4g5a2kcRyjfZcovDn3kEYxrwpu8OvzeS1OFo7YA_YjBjWIdK1FCHyEMEJGcrA-qcCjtVcODhiqYioWQbSoYDSTLvsxfRMBmRvR9dQ7Zc0xpmo04Gp-LkeoUgLrB8Nw7Cxe5nDIdMI10K8eYMjJLfOZMoNuosUoCrkU4fYlp5pWxUcGeRe1etTW-g4h-Qt9QfyGWyKl4RsAr_-vNC_euNlydIZ_wNTti8Zy_XOpM4G0-hCjf4GEIhuFm0NraKKXe4AahRxVuDyknO8YQizDuS3&s=AgZA3SqoIxW-hmQ_w6VcS3eXph6ZeT2mn6IyyeJexiUUX4VhYaZLVDZKlsN1o15nIB5YEEErDurW9-bzMT2HdCGGKA6U6w396CNHAVC8i9wArRySyaZPKEqeWe4ifdHZ_Y6TU44QF8ARngeWro6Mrt0JDauXrrzQOvmBCTZD5AXguDn0pc92Cu3_vKA9h81lLHXOzDykgt9iYrqCMCXMdfNQ4vEQI8xlZt-JSKbYRIYtPRyjyUARRDEKYvd2LvO7G5m-cI2eYjQSAP5pTh093rPP9Ih115LI6rcRiwRAfTjJ7IVg6XbxWv8x1hndyDvZxMaU0S8-HQ1y6GeZ5XjkKw&h=GcKQ9mndUiTRLIWEAyatVGFTMGzAWCXyU9yRkvshK4I response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"InProgress","startTime":"2026-09-14T23:53:46.2844302"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/defcf1d1-6014-461b-abea-58f23e1264f0","name":"defcf1d1-6014-461b-abea-58f23e1264f0","status":"Succeeded","startTime":"2026-03-24T05:56:12.7125034"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '278' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:56 GMT + - Tue, 24 Mar 2026 05:56:22 GMT expires: - '-1' pragma: @@ -7364,11 +6413,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4f651429-472a-4aec-9e0b-4dbd3693a626 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5e65ca00-a2e0-43ce-9e54-f06f1a5be6ae x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D6A324ACF5D84269808CADE8A3FDD865 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:53:56Z' + - 'Ref A: 9276638915DC4EED942414019D1DCF38 Ref B: SJC211051203019 Ref C: 2026-03-24T05:56:23Z' x-powered-by: - ASP.NET status: @@ -7380,7 +6429,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7388,27 +6437,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --replace-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc?api-version=2025-07-01&azureAsyncOperation=true&t=639250268263320902&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=T3vUY4uYqQdmzs6ZW_Hu0SbPJQLk5KFLZ5gUbKzolLHfvqcc6l_sUDL-OJ4oUZ4FHOHkqlJrtz_f8lLRB6tCmxQcJhSp0w6fLipZ-Qj9aHztIGUxsFC69t6YmfNSenKsvfkBdZsZ3CnnI0sWxYEBnLBWlOPORK-dYOdLD2g9OCb8ZYDTkZ_0sbTfGozlLlMe88sLlvkgYIBRtGowoJ17a1NBzCHx9ItDjnxpoklKQ0ppIwYy8g7D4UAKDheVwi2owMEhS8MZN018x_fyRHV_evVkAe1vDfcFkK3HnIECn2SCJS_b5puPTKWz9rwozaLGoSaOKWEKpBi_huM56_OS3w&h=DO7uY3bN9rygcOTU2I7XYbCqMA7gdS6ArUxaAw4SNs4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f9cc8192-bd89-426c-aaca-7a6cd45c97cc","name":"f9cc8192-bd89-426c-aaca-7a6cd45c97cc","status":"Succeeded","startTime":"2026-09-14T23:53:46.2844302"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '277' + - '4683' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:58 GMT + - Tue, 24 Mar 2026 05:56:23 GMT expires: - '-1' pragma: @@ -7421,12 +6470,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d9ce8dfe-91aa-4c95-89d4-f3583690fc24 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0460FF3D12FC4207892550AFB503829D Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:53:59Z' + - 'Ref A: B57503384A9F4B7BB36952039BC66D51 Ref B: BY1AA1072317040 Ref C: 2026-03-24T05:56:23Z' x-powered-by: - ASP.NET status: @@ -7436,56 +6483,337 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: - keep-alive ParameterSetName: - - -g -n --min-replicas --max-replicas --replace-env-vars + - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:46.1602093"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '7494' + - '39885' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:59 GMT + - Tue, 24 Mar 2026 05:56:23 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 802E73FF1A2C43E599D5213D0CE042E1 Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:53:59Z' - x-powered-by: - - ASP.NET + - 'Ref A: 5F16576371564FF4BBEB56A9598B2BCF Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:56:24Z' status: code: 200 message: OK @@ -7495,7 +6823,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -7503,803 +6831,313 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '47420' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:53:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 55B1BE679F134E22BC057D9135036B72 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:53:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp update - Connection: - - keep-alive - ParameterSetName: - - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39885' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:53:59 GMT + - Tue, 24 Mar 2026 05:56:24 GMT expires: - '-1' pragma: @@ -8311,9 +7149,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6E7F2EDF993C4B0CA23D4C6945439D48 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:54:00Z' + - 'Ref A: B7E7B0AC0D5F4273816CB34096E6AEA0 Ref B: BY1AA1072317054 Ref C: 2026-03-24T05:56:24Z' status: code: 200 message: OK @@ -8323,7 +7161,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8331,28 +7169,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:53:46.1602093"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:12.5637864"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000002","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","env":[{"name":"testenv","value":"testing2"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7494' + - '4683' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:00 GMT + - Tue, 24 Mar 2026 05:56:24 GMT expires: - '-1' pragma: @@ -8366,9 +7203,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 28E2B9868229417F8D377AEF467CF19D Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:54:00Z' + - 'Ref A: 052B2DF708074132B5A2338ACBC4FE65 Ref B: BY1AA1072319034 Ref C: 2026-03-24T05:56:24Z' x-powered-by: - ASP.NET status: @@ -8383,7 +7220,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8395,8 +7232,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: @@ -8407,19 +7243,19 @@ interactions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:54:00 GMT + - Tue, 24 Mar 2026 05:56:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=qgIZod6fRJHihMtT8OYe3G13PwoNoHU77WmlMJ13BwFqMD0plG2fno-6bgLyRCexL2OcslJ54MzfeKYKd-ZjayQhwXIkGDzC-PQkTC02_SZ-daKbDRNqc3glPsWoH2FtUcJUbV7yBDsAFC7jEryM1LZqxruXmkzvu-kySmErTweMcLvLxEs7BJsxPW1bDUr6MpW3z21Q6LV71yYJe-oXPufaApScezDYxUqQFf5tmK8-YUjU_42v6fvKKOmWQ88EY_nlw7LqJZPHgSy9OvZC4ZkI_y6u8jA2CWwnD0-oscS5WnGsTZ19i-g1YYrzz1oqym_X04l3M5aLeQL065BhTw&h=z92zgqFY94AfMWO0f-Uz-FJ9Uckk9mtNpx1sEpuaBzA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=nGnObUS2fzfEzjaPvemoLxSKDlfTkJCahp05Q2qA-eXnVJZwM8KuzADfuoW1Eu5e3Lb2IjScnIwMBNaBRe6RYlV-6Wx6nHWsyTXoQogkM5-Q3lWQ-Z-v9wtrTrcLjg-qY8VUKdIVHr2aYyvif-opISYgG1UF-_9QLGksw8_eqbG368ZzlVFq--uhh_u9vm-ChgXmxAxqhURZj6Ncl5Bs3KaDa4oPVCzB_te1ibwXFOetcPFm-BNsXFJRXt4jQ-FbGH5E5SyiWuWbOxpqpaixpMi_Jjck9wjSGZ6BVsHNLPAelX1Ta0B8ZoMlh8brrWtwGP-CwQ3TOd_RLy_K5L6qdQ&h=B-ERuNnmQhnJ7wz89GCBR3A7pv7KjBBYxn2GzWq24Wg pragma: - no-cache strict-transport-security: @@ -8429,11 +7265,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e453e965-3d70-40de-b464-0a29004dfd93 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/644b3668-11d5-4fc1-945f-e2d788b6b71e x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: DECE99C113CF4F99A78386CBD1DF7D89 Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:54:00Z' + - 'Ref A: F124A9D6074E4E8E8B4B390D15943D5E Ref B: BY1AA1072315025 Ref C: 2026-03-24T05:56:24Z' x-powered-by: - ASP.NET status: @@ -8445,7 +7281,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8453,19 +7289,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -8473,7 +7308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:01 GMT + - Tue, 24 Mar 2026 05:56:26 GMT expires: - '-1' pragma: @@ -8487,11 +7322,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/07085135-e06f-4fb7-930c-f363b43d5b06 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1d741503-7667-4e92-a836-5c35e0ee1a6d x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3EF4C5A6517241CFA4BD5FDFA48E801B Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:54:01Z' + - 'Ref A: C23740FAE9194EB8B8633D0624232D30 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:56:26Z' x-powered-by: - ASP.NET status: @@ -8503,7 +7338,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8511,19 +7346,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -8531,7 +7365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:03 GMT + - Tue, 24 Mar 2026 05:56:28 GMT expires: - '-1' pragma: @@ -8545,11 +7379,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/43abe9fd-2353-40b8-b0f4-5f69f18e91a8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/3f7dc4ea-9be6-41e5-9542-3b2aded364d8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D6D03336A7A647CEA15223E46E622279 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:54:04Z' + - 'Ref A: EAE9CD227D3B46EE93FBB094BD519488 Ref B: BY1AA1072316034 Ref C: 2026-03-24T05:56:28Z' x-powered-by: - ASP.NET status: @@ -8561,7 +7395,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8569,19 +7403,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -8589,7 +7422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:06 GMT + - Tue, 24 Mar 2026 05:56:31 GMT expires: - '-1' pragma: @@ -8603,11 +7436,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cfe2eb86-310b-4d51-84a5-e2102affcc19 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/e6428943-ab1b-4af5-8286-1b1601b4b46f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D1493984C9414926BBE98B57FC21957D Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:54:06Z' + - 'Ref A: A51578B47C7F43E18CD66F04A94E55D7 Ref B: SJC211051201047 Ref C: 2026-03-24T05:56:31Z' x-powered-by: - ASP.NET status: @@ -8619,7 +7452,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8627,19 +7460,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -8647,7 +7479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:08 GMT + - Tue, 24 Mar 2026 05:56:33 GMT expires: - '-1' pragma: @@ -8661,11 +7493,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/20eb47f0-0c1c-4754-b218-cd0d072be78c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/58824e6e-f0bf-4615-9342-e424d737ef50 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1E1866D6E69540269374A8B15C4A445A Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:54:09Z' + - 'Ref A: F025D55194CE4297AB0881E8DBB14934 Ref B: BY1AA1072320029 Ref C: 2026-03-24T05:56:34Z' x-powered-by: - ASP.NET status: @@ -8677,7 +7509,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8685,19 +7517,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"InProgress","startTime":"2026-09-14T23:54:01.3000733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"InProgress","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -8705,7 +7536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:11 GMT + - Tue, 24 Mar 2026 05:56:36 GMT expires: - '-1' pragma: @@ -8719,11 +7550,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d83ca64f-6fc9-42d2-b3bc-3c66d1565c63 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/e7c8a6fe-b0b0-4f62-9cf3-681088abba32 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FDF930F42ECF449A8534A4F6793A049B Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:54:11Z' + - 'Ref A: 4C649878B57F45A5B51C8C1B88BAC0FF Ref B: BY1AA1072320025 Ref C: 2026-03-24T05:56:36Z' x-powered-by: - ASP.NET status: @@ -8735,7 +7566,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8743,19 +7574,18 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf?api-version=2025-07-01&azureAsyncOperation=true&t=639250268413297283&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=ZsjQf-YrNRQ1St5v0q4Fxcgb_WL0GXwBo3JgjbvBMy7bzfepb5-t_UyaftQq-3_01K5o9p5qu8q1IT3TzrnL4x7ZgTRUz4_BX-b7u8uarj2XCtr6bkVqZaej5uyiMDkmK77zqgACwJHIaXHTdahJMYSGsV4GbfM5NLH19_Ha9oepMyToV1i6dO02hl32dAyT9jYlmtR6Y2s4yxI1vMBwrNLfQBvJQRu8kCcttdtnjWoWqWCbiGEnuAeIO4pwm1ScdiFzkNZA2im4edeGpAtxP1S79pz-bpfmaiFFoq_bhNK0-t_chXmMZhsXz4yf81S73eiIA7Mxt6yiFer7qq7YDA&h=yg9tEhD0KZJH7ytebYzfNR7ScqlSWRBmIKGLegM8fZA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9?api-version=2025-07-01&azureAsyncOperation=true&t=639099285859384652&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=AeUMK9Sk4jOg3jULHV3eep3Gv3nR8yBssLdYmhAT8ixZv1s0lNIlnIFgA8IG3wbPHwcJUncnDJx7B8hs6jg-KpAwGrelP6iXEGkYknqjWf2AO2FlUut1f654zvfS3WQqMbj5Y1d5yU0NSHBft3a7YwY08gpB8ZlGwTOCRkbN1zgh3gczctX9a83F3woLbXCcFmiq9fRu7Nz-IUx3IJ0txFFaGWVvu582F2nk3pgC3QI4azHV0cHFc2vmAiLd-fQYZel30n6gEOpv4WQtndE4w58z2EZZ7tJMCYYdfusxd9-LWyqwO_abT5g7JIzXse4p6et5PaolZvaekM8zI0A07g&h=cKKFgyMFsj5XwF-7f28JzfZjcpCtNPNPoJ92DKeZKVE response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/93008c91-a956-4bce-ad0b-6e8b0a727ecf","name":"93008c91-a956-4bce-ad0b-6e8b0a727ecf","status":"Succeeded","startTime":"2026-09-14T23:54:01.3000733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/74b66fe8-eb29-4909-9ff5-6f29e25686c9","name":"74b66fe8-eb29-4909-9ff5-6f29e25686c9","status":"Succeeded","startTime":"2026-03-24T05:56:25.8970205"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -8763,7 +7593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:13 GMT + - Tue, 24 Mar 2026 05:56:38 GMT expires: - '-1' pragma: @@ -8777,11 +7607,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9d9aae66-d73c-411c-a02f-df4e2add25c9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/470adce1-4b33-445f-a6e6-47ee0472fb82 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6FBBDB5032DC47FE96B44CC5773FC3C2 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:54:13Z' + - 'Ref A: D46AAE94DAF04CCBBD9BDDFCDDE3B288 Ref B: BY1AA1072315062 Ref C: 2026-03-24T05:56:38Z' x-powered-by: - ASP.NET status: @@ -8793,7 +7623,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp update Connection: @@ -8801,28 +7631,27 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --remove-env-vars --remove-all-env-vars User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000003","name":"containerapp-e2e000003","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:57.7090432","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:01.1109774"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:24.104175","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:56:25.6259606"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.18.171"],"latestRevisionName":"containerapp-e2e000003--0000003","latestReadyRevisionName":"containerapp-e2e000003--0000001","latestRevisionFqdn":"","customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","configuration":{"secrets":[{"name":"containerapp000002azurecrio-containerapp000002"},{"name":"newsecret"}],"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"containerapp000002.azurecr.io","username":"containerapp000002","passwordSecretRef":"containerapp000002azurecrio-containerapp000002","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"containerapp-e2e000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":0,"maxReplicas":1,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp-e2e000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '7448' + - '4637' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:14 GMT + - Tue, 24 Mar 2026 05:56:39 GMT expires: - '-1' pragma: @@ -8836,9 +7665,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3B78D283BFDF466BA1C15243650C48E4 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:54:14Z' + - 'Ref A: 73A95C8B6DC442C1B32BF6BCBD52D953 Ref B: SJC211051205045 Ref C: 2026-03-24T05:56:39Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml index b9712feb3f7..5994906ab1c 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -13,389 +13,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:16 GMT + - Thu, 09 Apr 2026 18:46:34 GMT expires: - '-1' pragma: @@ -407,9 +331,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FEFD30B925334C8086A2C2FFB24D7E37 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:54:17Z' + - 'Ref A: 81DF483E783C4D98933C5543A57F49B7 Ref B: BN1AA2051015039 Ref C: 2026-04-09T18:46:35Z' status: code: 200 message: OK @@ -419,7 +343,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -427,28 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '1779' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:17 GMT + - Thu, 09 Apr 2026 18:46:36 GMT expires: - '-1' pragma: @@ -462,9 +385,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 03F20158F7CC40619BD6345894EC791B Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:54:17Z' + - 'Ref A: B3844DBEEF01430999E2AF077AAD7CF2 Ref B: BN1AA2051013037 Ref C: 2026-04-09T18:46:37Z' x-powered-by: - ASP.NET status: @@ -477,7 +400,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -489,24 +412,23 @@ interactions: ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:25 GMT + - Thu, 09 Apr 2026 18:46:49 GMT expires: - '-1' pragma: @@ -518,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/81440836-aea4-4891-ace7-3dc91491a0ca + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/98d11168-e94f-45d5-a6bb-a63e6b018f0b x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: 2665E81C7B5F44D69FAF21CE3D301C64 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:54:18Z' + - 'Ref A: 2C4F85ADDD2A4A8989516354E85B068A Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:46:40Z' status: code: 200 message: OK @@ -534,7 +456,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -542,22 +464,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdb4rv5c4z3oyncmfh5clduumtxs3vwru5fboct4tlk6kad5qwdjs4nlgoucaafy7o/providers/Microsoft.ContainerRegistry/registries/containerappd46vnkk5c6aq","name":"containerappd46vnkk5c6aq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' headers: cache-control: - no-cache content-length: - - '1230' + - '6965' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:26 GMT + - Thu, 09 Apr 2026 18:46:51 GMT expires: - '-1' pragma: @@ -569,9 +491,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DAA266C56FAB4C4E8EEA7DE82A197414 Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:54:26Z' + - 'Ref A: 5D0DD95D11064C2183A55E115718AB53 Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:46:51Z' status: code: 200 message: OK @@ -581,7 +503,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -589,24 +511,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:26 GMT + - Thu, 09 Apr 2026 18:46:54 GMT expires: - '-1' pragma: @@ -618,9 +539,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6C09C00AE2784DD081DCA3FB028584B3 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:54:26Z' + - 'Ref A: 80A4186B485446ADB2F5D43C48DF40DE Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:46:53Z' status: code: 200 message: OK @@ -630,7 +551,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -638,24 +559,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview response: body: - string: '{"value":[{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acrouvbstr6isw5ks3lbrkhd.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' headers: - api-supported-versions: - - 2026-09-01-preview cache-control: - no-cache content-length: - - '1693' + - '20786' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:27 GMT + - Thu, 09 Apr 2026 18:46:56 GMT expires: - '-1' pragma: @@ -668,10 +587,14 @@ interactions: - nosniff x-ms-original-request-ids: - '' + - '' + - '' + - '' + - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1955CB19F02F4A189EA48AEF0EA51DAA Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:54:27Z' + - 'Ref A: C1FE7AD308FC4EB7A7D4C5BFE020CBCD Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:46:56Z' status: code: 200 message: OK @@ -682,7 +605,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -694,10 +617,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-03-01-preview response: body: string: '' @@ -707,18 +629,17 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:54:29 GMT + - Thu, 09 Apr 2026 18:46:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268699504141&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=K1SSATW6ZCTTM-JcTSD6j2T5dMvYjfJ5T9Uu_JAM24Qy7EV0zskozNjJmb5CFFN5zwqEJ2ljsC_txJ1cC_S5M2Hbmodxx3J6fyWEgFTg-zqlWMsG2RkdcbnbxCUf0n8JGvc3keqCF20cXpBB7L8dCEc77Rdstv7d1-_zI1DOUC1zlGlWx6OJRZhWe29uhY6pqwUgIofm3rXZAvnd_8BuSTWKT82RR72g8aoeSfepH06cqd7leMSQrS1fjR-w9s96o1O7HW3_4pbvSuREptikatHxD0LWvQdHufpvIzAyiCYK72-9b0V3b4xhicKeE1kT2I1rz3LHTT3h-MqfXD2Qaw&h=b8O9Ioi9D4Eh5XDiheMgcx7T9s4nZdyMYIX0Orq_Hr4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs pragma: - no-cache strict-transport-security: @@ -728,64 +649,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/69a3dc44-8332-423b-b7a0-c50b66bceb34 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2a36d3ee-e3fe-4e51-ba97-733be268c807 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: AC3BEF3AD0284C90BC92A014A8D12711 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:54:28Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268699504141&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=K1SSATW6ZCTTM-JcTSD6j2T5dMvYjfJ5T9Uu_JAM24Qy7EV0zskozNjJmb5CFFN5zwqEJ2ljsC_txJ1cC_S5M2Hbmodxx3J6fyWEgFTg-zqlWMsG2RkdcbnbxCUf0n8JGvc3keqCF20cXpBB7L8dCEc77Rdstv7d1-_zI1DOUC1zlGlWx6OJRZhWe29uhY6pqwUgIofm3rXZAvnd_8BuSTWKT82RR72g8aoeSfepH06cqd7leMSQrS1fjR-w9s96o1O7HW3_4pbvSuREptikatHxD0LWvQdHufpvIzAyiCYK72-9b0V3b4xhicKeE1kT2I1rz3LHTT3h-MqfXD2Qaw&h=b8O9Ioi9D4Eh5XDiheMgcx7T9s4nZdyMYIX0Orq_Hr4 - response: - body: - string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '56' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:54:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268703747107&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=kjt94O9EZPO35iE67tiqadpt5phQD1Rg9EaKvb2SVFepH09R4NiAe99lEBn7eO6drq45H2nAzW4xk3h620uQh8y1yRSxsjQ3Kv3ILDmMgPQ0VyAnwRt7QGEFA01RAxoYYovsRBUxCNkPGBVGznuwK0vuhvP7hFk-OfGSykei8Xv3qPbZ_mQETElotswmrK5PMMXq7DDSbpy62wcBCRr5G3q6_fMvUBjalBTwNjybR0I0hczRH-lHHpY1pt-XlGtr66u0mFvV6N0HLOkM_8nj7xWvpS4rLJX41LQBfRdGuw0r8hAzAmqPbuVIt7HnSp3x-rzDieSi80qEwDVsoU3ZfA&h=FUkQClJZvDjsUAjDQegtgXC42Zt8BTzli92BWrJic0E - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/74393ad4-9adf-4a8f-9fc1-55ef97e61ed9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '799' x-msedge-ref: - - 'Ref A: 4C477D4BFD084C39A37868A005257A39 Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:54:30Z' + - 'Ref A: 65836825BBD84F259BA9D087A4696890 Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:46:59Z' status: code: 202 message: Accepted @@ -795,7 +665,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -803,10 +673,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-9dfc5f52-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250268703747107&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=kjt94O9EZPO35iE67tiqadpt5phQD1Rg9EaKvb2SVFepH09R4NiAe99lEBn7eO6drq45H2nAzW4xk3h620uQh8y1yRSxsjQ3Kv3ILDmMgPQ0VyAnwRt7QGEFA01RAxoYYovsRBUxCNkPGBVGznuwK0vuhvP7hFk-OfGSykei8Xv3qPbZ_mQETElotswmrK5PMMXq7DDSbpy62wcBCRr5G3q6_fMvUBjalBTwNjybR0I0hczRH-lHHpY1pt-XlGtr66u0mFvV6N0HLOkM_8nj7xWvpS4rLJX41LQBfRdGuw0r8hAzAmqPbuVIt7HnSp3x-rzDieSi80qEwDVsoU3ZfA&h=FUkQClJZvDjsUAjDQegtgXC42Zt8BTzli92BWrJic0E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs response: body: string: '{"status":"Succeeded"}' @@ -818,7 +687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:40 GMT + - Thu, 09 Apr 2026 18:47:02 GMT expires: - '-1' pragma: @@ -830,11 +699,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/221142b1-558b-432c-a0d4-aef374e7a67e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/1c4d9862-aa0b-4ddc-89b7-9440dc9968c8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8C7E8E13EE5C4B98A389F0E726335BC6 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:54:40Z' + - 'Ref A: 5C210DB918394B91973684B8EA718635 Ref B: BN1AA2051013025 Ref C: 2026-04-09T18:47:02Z' status: code: 200 message: OK @@ -844,7 +713,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr credential show Connection: @@ -852,22 +721,22 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdb4rv5c4z3oyncmfh5clduumtxs3vwru5fboct4tlk6kad5qwdjs4nlgoucaafy7o/providers/Microsoft.ContainerRegistry/registries/containerappd46vnkk5c6aq","name":"containerappd46vnkk5c6aq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:52:53.6903628Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:52:53.6903628Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphploemg4gjez7wwg7gsw7nlb45twbshxamsbrhalps5ef377oxhdauggpxc5k7zo/providers/Microsoft.ContainerRegistry/registries/acrouvbstr6isw5ks3lbrkhd","name":"acrouvbstr6isw5ks3lbrkhd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827Z"}}]}' headers: cache-control: - no-cache content-length: - - '1230' + - '6965' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:40 GMT + - Thu, 09 Apr 2026 18:47:04 GMT expires: - '-1' pragma: @@ -879,9 +748,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B067705ABF6B44F4925AC45D1AC1CC49 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:54:41Z' + - 'Ref A: 969EE93254A04D409B992E7D64DBE1F6 Ref B: BN1AA2051014019 Ref C: 2026-04-09T18:47:05Z' status: code: 200 message: OK @@ -891,7 +760,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr credential show Connection: @@ -899,24 +768,23 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-09-14T23:54:19.5348659Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:54:25.9124659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:54:25.9125055+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:41 GMT + - Thu, 09 Apr 2026 18:47:07 GMT expires: - '-1' pragma: @@ -928,9 +796,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AED3F702BDAF49E79099DF8773613DDB Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:54:41Z' + - 'Ref A: 96153C972B9A4EE6AA1240D3C76A7F2E Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:47:06Z' status: code: 200 message: OK @@ -940,7 +808,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr credential show Connection: @@ -950,16 +818,15 @@ interactions: ParameterSetName: - -n --query User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000002","passwords":[{"name":"password","value":"EA2EgihsSDWIwYyA4fjweCocAvq4T9h5FCkCDz6xZf5npd3PttL4JQQJ99CIACYeBjFEqg7NAAACAZCRIHDM"},{"name":"password2","value":"2dVinKe6DygBJTYrmNHaepTxGlPaKXRt4Pt5mQRKkHcvI7AVjfB5JQQJ99CIACYeBjFEqg7NAAACAZCRG3ZB"}]}' + string: '{"username":"acr000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -967,7 +834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:42 GMT + - Thu, 09 Apr 2026 18:47:09 GMT expires: - '-1' pragma: @@ -979,13 +846,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/0d1f539a-c503-415a-9834-2175a59812ed + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/d003e1a0-c5c1-4722-857f-15ca515817b0 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 7DDC71F8F34D4DDFAFF7D30420A96853 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:54:42Z' + - 'Ref A: 1D7D7F7E39F4420B958C04A12856D9FF Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:47:09Z' status: code: 200 message: OK @@ -995,7 +862,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1005,389 +872,313 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:42 GMT + - Thu, 09 Apr 2026 18:47:11 GMT expires: - '-1' pragma: @@ -1399,9 +1190,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D900DF7CCC1B4B06A03A278B5D56F0B3 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:54:43Z' + - 'Ref A: 8717E93CE85241DD8621CED1BF48EFBB Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:11Z' status: code: 200 message: OK @@ -1411,7 +1202,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1421,28 +1212,27 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '1779' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:44 GMT + - Thu, 09 Apr 2026 18:47:13 GMT expires: - '-1' pragma: @@ -1456,9 +1246,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B2951B88B3FE4D5B89E1ADFA5BCE89E1 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:54:43Z' + - 'Ref A: EA334DE36513489BB40E1955127D65C6 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:47:13Z' x-powered-by: - ASP.NET status: @@ -1470,7 +1260,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1480,389 +1270,313 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:44 GMT + - Thu, 09 Apr 2026 18:47:14 GMT expires: - '-1' pragma: @@ -1874,9 +1588,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D5B0DB44B23643868A411667CDB53250 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:54:44Z' + - 'Ref A: A33AF7EBE16C435D8B369243CC412549 Ref B: BN1AA2051012037 Ref C: 2026-04-09T18:47:15Z' status: code: 200 message: OK @@ -1884,7 +1598,7 @@ interactions: body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000002azurecrio-443-acr000002", "value": - "EA2EgihsSDWIwYyA4fjweCocAvq4T9h5FCkCDz6xZf5npd3PttL4JQQJ99CIACYeBjFEqg7NAAACAZCRIHDM"}], + "***"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1898,7 +1612,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1912,31 +1626,30 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:45.1483249Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:45.1483249Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg cache-control: - no-cache content-length: - - '6781' + - '6762' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:47 GMT + - Thu, 09 Apr 2026 18:47:18 GMT expires: - '-1' pragma: @@ -1950,11 +1663,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/5a9560c2-0b41-4b59-9165-6baf4d690cad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/f9b94549-f461-470a-8227-dd57ca7699da x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: F2C57E20B2AD4AAA97F5443CD88E3D5F Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:54:44Z' + - 'Ref A: 093094C3F4DE41009F580DD914A369BF Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:16Z' x-powered-by: - ASP.NET status: @@ -1966,67 +1679,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp job create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --environment --registry-server --registry-username --registry-password - --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count - --cron-expression - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04","name":"1462b6f5-42f3-4c6a-9e05-88241d8aea04","status":"InProgress","startTime":"2026-09-14T23:54:45.4292916"}' - headers: - api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, - 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '282' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:54:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/94cb0411-c22a-4b1c-a0a5-27ac385ef64c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8DC3CBA8D67E477AA657F7B4303E842E Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:54:47Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -2036,19 +1689,18 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04","name":"1462b6f5-42f3-4c6a-9e05-88241d8aea04","status":"InProgress","startTime":"2026-09-14T23:54:45.4292916"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"InProgress","startTime":"2026-04-09T18:47:17.6055813"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: @@ -2056,7 +1708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:49 GMT + - Thu, 09 Apr 2026 18:47:20 GMT expires: - '-1' pragma: @@ -2070,11 +1722,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e90998cd-64e6-4fe9-81fd-2feb79633320 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d5d49e6c-c6e9-498b-b9c3-a63ec8315ba1 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B0DFEB947B004C99AF9824964FC18858 Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:54:50Z' + - 'Ref A: 9AE9F17A837D4A7593DAF12327BDDE84 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:47:20Z' x-powered-by: - ASP.NET status: @@ -2086,7 +1738,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -2096,19 +1748,18 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04?api-version=2025-07-01&azureAsyncOperation=true&t=639250268874139403&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=guMnepWUrV9D1V1HZwmygtalLTuRLGxIgMDlWfJZHr5TKTRKZAFF5M_kzgeJCeSiwOKvPAme6-71Xd032Nbpsqc5L77IXObP_WYj5Am8l9Pj0e6ydMKzJgtVsgFuehJWWenrMOYUk45z_g35V4uXTtSPdFQygV1zyH0OKCF-FdPdiDtNPGhRUvotKenwPWxIF4ixNJgPxfHj_04PN8H_4wOjiBe6pgiNgWN5T_YFR88t6hlEJTa48GT_c-UuGR_BNgzynwo3n-ju6srxqkn918cCMeSGp85xrdOHhPi61JFwFMPPjr_sfrNTtS0m1EaME0APHe6ufWNTl0C0mNEWRg&h=0ew3SKCA3LIryE5OHPGJPeJ6qH1iy2L76hO3zYciA34 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2?api-version=2025-07-01&azureAsyncOperation=true&t=639113572389744086&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=MmWAyg4FtZ0xoMNvIIr-6HkEVlKVzfxbeXaBzX4vxVhF11SOS312AC2695Lc3CPbwOpIRsADWGcpiqkTjb76KQEzMtLrFfMgmmLJ69exAiDCDD3jtnh_6h7TUk1VxU3kSCHfJazR49FsxjRrDovlqNQaWh08FcvKy9yEgyhNTy3C-bqLGSYPgAaXtpiN7oP2BlEH4uVDvMSE-KtFD-A4LOeAKeGYwl9Pz8pXbrDKcvtZmnTTNTr1RujS1o1ffOsudj_wUHXtVJ922ExcaVRUI-Ym1xOBFo1WMA91JayMBL8SQ0xAxN-OvVyCYaXLMUXOWAS_GCZK0X65fWkB4re4Kw&h=4-7vLC-Jma07aKcNBj3Wp29c8711ZZ-UL9hJgHwYFAg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/1462b6f5-42f3-4c6a-9e05-88241d8aea04","name":"1462b6f5-42f3-4c6a-9e05-88241d8aea04","status":"Succeeded","startTime":"2026-09-14T23:54:45.4292916"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/38fe9b79-34c7-4929-b26d-acfb4f8731e2","name":"38fe9b79-34c7-4929-b26d-acfb4f8731e2","status":"Succeeded","startTime":"2026-04-09T18:47:17.6055813"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: @@ -2116,7 +1767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:52 GMT + - Thu, 09 Apr 2026 18:47:23 GMT expires: - '-1' pragma: @@ -2130,11 +1781,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/286088b0-b5c5-4b7d-8083-dc404d687251 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/88c578ab-d53d-490e-8b5a-1d32ef22dd93 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3EB4AAAE80484F328537830102704EDB Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:54:52Z' + - 'Ref A: 7335F136400F487CA6BADB27B36308E4 Ref B: BN1AA2051015033 Ref C: 2026-04-09T18:47:24Z' x-powered-by: - ASP.NET status: @@ -2146,7 +1797,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -2156,29 +1807,28 @@ interactions: --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:45.1483249","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:45.1483249"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '6814' + - '6759' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:53 GMT + - Thu, 09 Apr 2026 18:47:26 GMT expires: - '-1' pragma: @@ -2192,9 +1842,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D7187DC6DDD5494185D4AF0D131A57FF Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:54:53Z' + - 'Ref A: FFB7195E58DE4B80B3CA6B6CF47D2401 Ref B: BN1AA2051012025 Ref C: 2026-04-09T18:47:25Z' x-powered-by: - ASP.NET status: @@ -2206,7 +1856,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job show Connection: @@ -2214,389 +1864,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:53 GMT + - Thu, 09 Apr 2026 18:47:27 GMT expires: - '-1' pragma: @@ -2608,9 +2182,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DEDE6580AB474A03A679E21B05BE5F01 Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:54:53Z' + - 'Ref A: 966F1477B51A42D4B7DDEE67DB90ADCF Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:47:28Z' status: code: 200 message: OK @@ -2620,7 +2194,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job show Connection: @@ -2628,29 +2202,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000003","name":"aca1000003","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:45.1483249","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:45.1483249"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:47:17.3181759","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:47:17.3181759"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000002azurecrio-443-acr000002"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000002.azurecr.io:443","username":"acr000002","passwordSecretRef":"acr000002azurecrio-443-acr000002","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000002.azurecr.io:443/k8se/quickstart:latest","name":"aca1000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000003/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '6814' + - '6759' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:55 GMT + - Thu, 09 Apr 2026 18:47:29 GMT expires: - '-1' pragma: @@ -2664,9 +2237,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 198F9E82522346B69C35AC3574B8CDD1 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:54:54Z' + - 'Ref A: 16CBA3CFCE244C7492EB31B6B5F5D4B9 Ref B: BN1AA2051014031 Ref C: 2026-04-09T18:47:29Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml index ae42c324861..4ca8e0e1aaa 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -13,389 +13,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:58 GMT + - Thu, 09 Apr 2026 18:39:21 GMT expires: - '-1' pragma: @@ -407,9 +331,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 649EA6A3C1E2496897CBF857B3D39D59 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:54:58Z' + - 'Ref A: D79E4ABE17ED479DA18AB68266456F42 Ref B: BN1AA2051014035 Ref C: 2026-04-09T18:39:21Z' status: code: 200 message: OK @@ -419,7 +343,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -427,28 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '1779' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:54:58 GMT + - Thu, 09 Apr 2026 18:39:21 GMT expires: - '-1' pragma: @@ -462,9 +385,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 433325E3DE894E86A087978C8580D0B0 Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:54:58Z' + - 'Ref A: 100F81752CDD43F783029C74CAC1807E Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:22Z' x-powered-by: - ASP.NET status: @@ -477,7 +400,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -489,24 +412,23 @@ interactions: ParameterSetName: - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1592' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:06 GMT + - Thu, 09 Apr 2026 18:39:32 GMT expires: - '-1' pragma: @@ -518,13 +440,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/2fcb48bb-b699-42c7-b99d-374396be5968 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/e7859cc0-887c-46bc-8d6b-42554cb1b658 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: BE25002873C144C88C6F632EF97A2CCF Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:54:58Z' + - 'Ref A: ABB76CC525DC4ECC89A1B310523E84AB Ref B: BN1AA2051015053 Ref C: 2026-04-09T18:39:24Z' status: code: 200 message: OK @@ -534,7 +456,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -542,22 +464,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7xeqdiflrg4yjpvzinii67qstso4yykocskggsidtovzk72mvy56dwcxpd2za6d3k/providers/Microsoft.ContainerRegistry/registries/acr2busfcgnuii6m5h6ait3m","name":"acr2busfcgnuii6m5h6ait3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' headers: cache-control: - no-cache content-length: - - '1230' + - '6363' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:07 GMT + - Thu, 09 Apr 2026 18:39:33 GMT expires: - '-1' pragma: @@ -569,9 +491,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 333376D60AE043D086032FD0DC9C491F Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:55:06Z' + - 'Ref A: 52E5459154AD422EB7322ADCA46053CC Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:34Z' status: code: 200 message: OK @@ -581,7 +503,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -589,24 +511,23 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1592' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:07 GMT + - Thu, 09 Apr 2026 18:39:36 GMT expires: - '-1' pragma: @@ -618,9 +539,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7C1325705FAB497CA1FF4DA234DF5686 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:55:07Z' + - 'Ref A: 055CD56627984DFE806E3C4F204F0F91 Ref B: BN1AA2051012019 Ref C: 2026-04-09T18:39:35Z' status: code: 200 message: OK @@ -630,7 +551,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -638,24 +559,22 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview response: body: - string: '{"value":[{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' headers: - api-supported-versions: - - 2026-09-01-preview cache-control: - no-cache content-length: - - '1693' + - '19083' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:08 GMT + - Thu, 09 Apr 2026 18:39:38 GMT expires: - '-1' pragma: @@ -668,10 +587,14 @@ interactions: - nosniff x-ms-original-request-ids: - '' + - '' + - '' + - '' + - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: DFC0ED4B95EB44CF9F97AA6DE13258BF Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:55:08Z' + - 'Ref A: A0C1E174972742D7B0110AD636B9F7A0 Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:38Z' status: code: 200 message: OK @@ -682,7 +605,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -694,10 +617,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview response: body: string: '' @@ -707,18 +629,17 @@ interactions: 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:55:09 GMT + - Thu, 09 Apr 2026 18:39:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269094188085&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=cEUgRlHVvMIM770-xBZu9kIKIshU5V7j_bur-_o6C_q0gqFlKoWoR_Lx2hfA1XQJu0mbWsiF9xrs7pnp1YoQljnSY7D-l1n_DAhuLLGgAw60saErVvKaoYNEfepkcM79Ml7EevsZ2rjm7UYbcMBny1qR9jykfK3PMKO9AFoYMTGzqislVhxasYlqgc4IVd074A0hOeE3OvOs9qSyowvQB00E7q7qSBPsMbrZr_x3digpM9hOnwkCJdU9lNTW1uqtkLIVfqliVKNX9LXWp3O8tXgTDj72cAYseGgZbI0VT6os9nTV9iA4BVbqPnvyu1Y7q2JcH58GnFXiEBN2x2NRwg&h=poNXc29O7Xmrk-pIJdwCGKxtJzsBhlScdTsQ2IzGjVg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs pragma: - no-cache strict-transport-security: @@ -728,13 +649,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0f05795c-1814-4960-b12f-1b3925db276d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/d6ec942e-9589-4198-84e7-eb5d4c31a39c x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: BE738E297A5344D3BC46B15AE0741473 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:55:08Z' + - 'Ref A: 208C27AFA6854D4BA96E4E22B660581C Ref B: BN1AA2051014037 Ref C: 2026-04-09T18:39:39Z' status: code: 202 message: Accepted @@ -744,7 +665,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -752,10 +673,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269094188085&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=cEUgRlHVvMIM770-xBZu9kIKIshU5V7j_bur-_o6C_q0gqFlKoWoR_Lx2hfA1XQJu0mbWsiF9xrs7pnp1YoQljnSY7D-l1n_DAhuLLGgAw60saErVvKaoYNEfepkcM79Ml7EevsZ2rjm7UYbcMBny1qR9jykfK3PMKO9AFoYMTGzqislVhxasYlqgc4IVd074A0hOeE3OvOs9qSyowvQB00E7q7qSBPsMbrZr_x3digpM9hOnwkCJdU9lNTW1uqtkLIVfqliVKNX9LXWp3O8tXgTDj72cAYseGgZbI0VT6os9nTV9iA4BVbqPnvyu1Y7q2JcH58GnFXiEBN2x2NRwg&h=poNXc29O7Xmrk-pIJdwCGKxtJzsBhlScdTsQ2IzGjVg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -767,11 +687,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:09 GMT + - Thu, 09 Apr 2026 18:39:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269099351336&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=oU9PA_7DCX4Xx_PE1MeE7qeX3I5VrKd_1Lz_N34xOQND6zw0hZXKCN6uYebFS8ICaOvlYp6RFhMQvILB94dzULj8pzRhEkodZXuta0nJ0Spuj3WIT0fQt_R_4IYcJpImpbodbU4VbSpvpXsV1wRcJVj8XWgIjX2wNIdo0ZMhgzY2WhO08ooS5-M3pSmEYb0p_-H56-bL_CdgFRdWgqa9BHBH81A_ZF7HeStRj1a8I5Z1mF6_m8hr4EuqiqjZkPEP2539ewcNc9NkKsnENLuFz8gzQpDR80fGe-EH1UqfXnT2Jlo10y-_GvZqleCuGf4jMSL2rn5W8Pq6KkJgiJiuVg&h=gwZdJoGwO0qdYMqXanUr3NnH0mnej7qkQ4wsHsyQ594 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w pragma: - no-cache strict-transport-security: @@ -781,11 +701,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/93389441-b410-4918-a7a9-61fe8556eef1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/55671bb4-e502-4109-b3a4-2d9d8a15f4a8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0C1452B2DB5742D6B01053C707789B79 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:55:09Z' + - 'Ref A: FE9C3EF657EE4579AF7E2BCBFF379AA3 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:39:41Z' status: code: 202 message: Accepted @@ -795,7 +715,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr import Connection: @@ -803,10 +723,9 @@ interactions: ParameterSetName: - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-b626699c-b097-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250269099351336&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=oU9PA_7DCX4Xx_PE1MeE7qeX3I5VrKd_1Lz_N34xOQND6zw0hZXKCN6uYebFS8ICaOvlYp6RFhMQvILB94dzULj8pzRhEkodZXuta0nJ0Spuj3WIT0fQt_R_4IYcJpImpbodbU4VbSpvpXsV1wRcJVj8XWgIjX2wNIdo0ZMhgzY2WhO08ooS5-M3pSmEYb0p_-H56-bL_CdgFRdWgqa9BHBH81A_ZF7HeStRj1a8I5Z1mF6_m8hr4EuqiqjZkPEP2539ewcNc9NkKsnENLuFz8gzQpDR80fGe-EH1UqfXnT2Jlo10y-_GvZqleCuGf4jMSL2rn5W8Pq6KkJgiJiuVg&h=gwZdJoGwO0qdYMqXanUr3NnH0mnej7qkQ4wsHsyQ594 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w response: body: string: '{"status":"Succeeded"}' @@ -818,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:20 GMT + - Thu, 09 Apr 2026 18:39:52 GMT expires: - '-1' pragma: @@ -830,11 +749,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e0d181a9-1760-435a-abde-5f8122cd48b8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/bd6cccd9-9a0a-483d-9b5d-e1112d3434d6 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FD6BA1BDA02147F3B88D6F4D5B87C4A4 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:55:20Z' + - 'Ref A: 71803075B0394E0696867BAEF523461C Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:52Z' status: code: 200 message: OK @@ -844,7 +763,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -853,389 +772,313 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:20 GMT + - Thu, 09 Apr 2026 18:39:53 GMT expires: - '-1' pragma: @@ -1247,9 +1090,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 80F432B564234FE892B08E253ACBECF4 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:55:21Z' + - 'Ref A: 86D2A59EF3D04A31B46BF4B61E5D4F11 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:39:54Z' status: code: 200 message: OK @@ -1259,7 +1102,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1268,28 +1111,27 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '1779' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:20 GMT + - Thu, 09 Apr 2026 18:39:54 GMT expires: - '-1' pragma: @@ -1303,9 +1145,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 701F5504157643C59348DE3942247E9F Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:55:21Z' + - 'Ref A: 4C59E4AF517E4ACEBFBE7C2896A307BB Ref B: BN1AA2051014049 Ref C: 2026-04-09T18:39:55Z' x-powered-by: - ASP.NET status: @@ -1317,398 +1159,322 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp job create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit - --trigger-type --parallelism --replica-completion-count --cron-expression - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + - containerapp job create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit + --trigger-type --parallelism --replica-completion-count --cron-expression + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:21 GMT + - Thu, 09 Apr 2026 18:39:56 GMT expires: - '-1' pragma: @@ -1720,9 +1486,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EA50FCF5F1774766A4CD0E0789BFD794 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:55:21Z' + - 'Ref A: AA230AA512F94FCF833078E7FF1AD076 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:39:56Z' status: code: 200 message: OK @@ -1732,7 +1498,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1741,22 +1507,22 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7xeqdiflrg4yjpvzinii67qstso4yykocskggsidtovzk72mvy56dwcxpd2za6d3k/providers/Microsoft.ContainerRegistry/registries/acr2busfcgnuii6m5h6ait3m","name":"acr2busfcgnuii6m5h6ait3m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:19.5348659Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:19.5348659Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557Z"}}]}' headers: cache-control: - no-cache content-length: - - '1230' + - '6363' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:22 GMT + - Thu, 09 Apr 2026 18:39:57 GMT expires: - '-1' pragma: @@ -1768,9 +1534,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 245DA05D8F4148D98C50494DA87B23F3 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:55:22Z' + - 'Ref A: 9AC1E5DF27A84B179AEEA970BD938B7C Ref B: BN1AA2051014053 Ref C: 2026-04-09T18:39:57Z' status: code: 200 message: OK @@ -1780,7 +1546,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1789,24 +1555,23 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:54:59.5906909Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:06.4461903+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1592' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:22 GMT + - Thu, 09 Apr 2026 18:39:59 GMT expires: - '-1' pragma: @@ -1818,9 +1583,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 269058AC198C4E7090C046FD2B4EE93F Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:55:22Z' + - 'Ref A: 8E88063BCB744109834A12B9738E1D0B Ref B: BN1AA2051014021 Ref C: 2026-04-09T18:39:59Z' status: code: 200 message: OK @@ -1830,7 +1595,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1841,16 +1606,15 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"DBLpbniaYkfY0jp9PSuY8q9LOr9h3rSDUPUsj89kJSIoWwQwsX9vJQQJ99CIACYeBjFEqg7NAAACAZCRv24T"},{"name":"password2","value":"Evhbzq9va6SZQpKYMoSnMx9WGegvQx4AEV4QCANdJEKuxUTOVb7ZJQQJ99CIACYeBjFEqg7NAAACAZCRriYb"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -1858,7 +1622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:24 GMT + - Thu, 09 Apr 2026 18:40:01 GMT expires: - '-1' pragma: @@ -1870,13 +1634,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/2b1b7f50-3e72-467b-854f-34dae89d76e8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3218cb1b-7714-43c3-911e-77df9149fcdd x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 7DBDBF0EF6CF4ABC84AB0CA4EAE2F33D Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:55:23Z' + - 'Ref A: 700ADF7EE3E34DB49784D78D4BA76AA1 Ref B: BN1AA2051014025 Ref C: 2026-04-09T18:40:01Z' status: code: 200 message: OK @@ -1884,7 +1648,7 @@ interactions: body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "DBLpbniaYkfY0jp9PSuY8q9LOr9h3rSDUPUsj89kJSIoWwQwsX9vJQQJ99CIACYeBjFEqg7NAAACAZCRv24T"}], + "***"}], "triggerType": "schedule", "replicaTimeout": 200, "replicaRetryLimit": 2, "manualTriggerConfig": null, "scheduleTriggerConfig": {"replicaCompletionCount": 1, "parallelism": 1, "cronExpression": "*/10 * * * *"}, "eventTriggerConfig": null, "registries": @@ -1898,7 +1662,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1911,31 +1675,30 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:25.1647634Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:25.1647634Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 - * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw cache-control: - no-cache content-length: - - '6801' + - '6710' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:25 GMT + - Thu, 09 Apr 2026 18:40:05 GMT expires: - '-1' pragma: @@ -1949,11 +1712,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/496ed975-9453-4783-be23-b94ce64eda9e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/2b2af31d-3904-49aa-8c31-cbdd5ce263b9 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 174F2D4A0CEF46A09587FA3E9638FBCA Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:55:24Z' + - 'Ref A: E0FCBF5CE2E84377A600596BCE208499 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:40:02Z' x-powered-by: - ASP.NET status: @@ -1965,7 +1728,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1974,19 +1737,18 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007","name":"8ed449f3-e362-459d-ac95-4b27fdd99007","status":"InProgress","startTime":"2026-09-14T23:55:25.4447406"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: @@ -1994,7 +1756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:26 GMT + - Thu, 09 Apr 2026 18:40:06 GMT expires: - '-1' pragma: @@ -2008,11 +1770,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2091372a-0daa-41cf-87bf-090060f0680c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/2f5ee287-de12-4045-a480-6ddd550c16fa x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8A4E89CA4D9E47158ADD01F4BD73B96A Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:55:27Z' + - 'Ref A: 0280B490106341D88CFBEB937445EAE3 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:40:06Z' x-powered-by: - ASP.NET status: @@ -2024,7 +1786,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -2033,19 +1795,18 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007","name":"8ed449f3-e362-459d-ac95-4b27fdd99007","status":"InProgress","startTime":"2026-09-14T23:55:25.4447406"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"InProgress","startTime":"2026-04-09T18:40:03.8491944"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: @@ -2053,7 +1814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:29 GMT + - Thu, 09 Apr 2026 18:40:09 GMT expires: - '-1' pragma: @@ -2067,11 +1828,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0e97ff60-e4c0-446f-886e-2a1162ef5751 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/cae3d9c2-99d2-443f-a256-0d45a1a811d4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CEA052AB1C874477A51095ABE8308554 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:55:29Z' + - 'Ref A: 425F1797C326411098C34645F653B0CD Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:40:10Z' x-powered-by: - ASP.NET status: @@ -2083,7 +1844,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -2092,19 +1853,18 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007?api-version=2025-07-01&azureAsyncOperation=true&t=639250269268053905&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=i7BLx6nv4cYzYdyhv717sQFO8G2TYezcXKYU_thsGcRoGE1ZjoiiEo5HJsBMT9YwBj_W6Q20pebwXgJTPDY-rp4TEkCQHweQn129vr-_MR9Gw2QV5w_3iIsJd9nU5Q5K81n_jU8tvcm1Oe8PJjcLxT1eSFcJMsJYjJ4OxnZFq1YsaOpfuvtqIKQ6PpVxu3EdUx5P1Sb4btL7i5QUdezCrNbyAarzDYHb2bRYv2I2YA56m88gtO0CUec1jgG1cop28tKk4RoiCWLZJuXFJnb2jqUeJZ3Av4-i7ke_9HnzouyZPlPEitnzDlQRDK1F1G5hRWIwRIbXhBIXBNAnTXItmg&h=DQM_-_9mG696DVVOaveLNziTpZtszHLtzgVfkJV_u1I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed?api-version=2025-07-01&azureAsyncOperation=true&t=639113568054189998&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=jQyvogLaV-mQrWnl-mMI-oIQaHAUp0UNVtIcZOhsR7pgSPwUkpLPgtThEFvHTctQBcsQqSLz9seDFBTn-8oiVx74WP1wQQYQxx6Lo8AORvj0OWP0pXvXGTZ-PmLSZlKyKimKT5yYU2HA7uhiZzvJtCuZXN5WforMeEepMjeQJRN2DhSH0jvztWcQaLTsXUrSfBqzCehrbLUBjUgVXsW4OUKB3suRrnmkAua6tLoeIrQRoxcMGQl5-f1xQ2Qfw7_8vzQDOdUI7O2EBHke-orVGViULdnkqCyuClgzYmEjwzGdjO1aUan84D8GB9mXsLOxT5iqY9Xe4slhFSbrLQgDiQ&h=bgSTv-rd0pB57xzNcKSDfFPhLf0Xog3aAwKNdb6f4Aw response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/8ed449f3-e362-459d-ac95-4b27fdd99007","name":"8ed449f3-e362-459d-ac95-4b27fdd99007","status":"Succeeded","startTime":"2026-09-14T23:55:25.4447406"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/db54f7ec-3608-4bea-b529-779725e58aed","name":"db54f7ec-3608-4bea-b529-779725e58aed","status":"Succeeded","startTime":"2026-04-09T18:40:03.8491944"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: @@ -2112,7 +1872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:32 GMT + - Thu, 09 Apr 2026 18:40:12 GMT expires: - '-1' pragma: @@ -2126,11 +1886,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7e9e7802-789a-44e6-9eec-44cd9f62e74e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7217f9cb-3ece-440a-b441-6a09ebd2c092 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 290A1E1613D04B3AAA95280C0D2EC6CB Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:55:32Z' + - 'Ref A: 04716B3FF17C4B8781604E4B9184B5A5 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:13Z' x-powered-by: - ASP.NET status: @@ -2142,7 +1902,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -2151,29 +1911,28 @@ interactions: - -g -n --image --environment --registry-server --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --cron-expression User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:25.1647634","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:25.1647634"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '6798' + - '6743' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:32 GMT + - Thu, 09 Apr 2026 18:40:14 GMT expires: - '-1' pragma: @@ -2187,9 +1946,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7F3C1344551D432A9AC71C03064F11FB Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:55:32Z' + - 'Ref A: B84F3253837E4C72860E5BC974F43DC7 Ref B: BN1AA2051012051 Ref C: 2026-04-09T18:40:14Z' x-powered-by: - ASP.NET status: @@ -2201,7 +1960,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job show Connection: @@ -2209,389 +1968,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:32 GMT + - Thu, 09 Apr 2026 18:40:16 GMT expires: - '-1' pragma: @@ -2603,9 +2286,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1BEA096E1DAF44B89329438A0E8B825D Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:55:33Z' + - 'Ref A: 18DEF2BCDF744F248D088A28AE173CD5 Ref B: BN1AA2051015051 Ref C: 2026-04-09T18:40:16Z' status: code: 200 message: OK @@ -2615,7 +2298,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job show Connection: @@ -2623,29 +2306,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/aca1000004","name":"aca1000004","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:25.1647634","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:25.1647634"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:40:03.5908719","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:40:03.5908719"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Schedule","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":null,"scheduleTriggerConfig":{"replicaCompletionCount":1,"cronExpression":"*/10 * * * *","parallelism":1},"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca1000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca1000004/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2026-03-02-preview cache-control: - no-cache content-length: - - '6798' + - '6743' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:34 GMT + - Thu, 09 Apr 2026 18:40:17 GMT expires: - '-1' pragma: @@ -2659,9 +2341,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D09DAF97EEC046A3BA56AD50CADEA559 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:55:33Z' + - 'Ref A: 5CE77785D034439397FAC293550F7FEC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:40:17Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml index 583b6834f1b..73325194a10 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -13,389 +13,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:38:33 GMT + - Thu, 09 Apr 2026 18:32:46 GMT expires: - '-1' pragma: @@ -407,9 +331,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8743E2F74A1F4D2D9412312AE8E14B12 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:38:34Z' + - 'Ref A: 935694BF77FE4F489DA734B06EAD4422 Ref B: BN1AA2051015037 Ref C: 2026-04-09T18:32:46Z' status: code: 200 message: OK @@ -419,7 +343,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -427,74 +351,84 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group - ''client.env_rg_eastus'' could not be found."}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '112' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:38:34 GMT + - Thu, 09 Apr 2026 18:32:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D22FC0E2596F4A1994128134CDF0E4E8 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:38:34Z' + - 'Ref A: 5DF609807C014522A61BCFAF26C14FB6 Ref B: BN1AA2051015021 Ref C: 2026-04-09T18:32:47Z' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: - body: '{"location": "eastus"}' + body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": + true}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - group create + - acr create Connection: - keep-alive Content-Length: - - '22' + - '90' Content-Type: - application/json ParameterSetName: - - -n + - --sku -n -g --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/client.env_rg_eastus?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus","name":"client.env_rg_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: + api-supported-versions: + - 2026-01-01-preview cache-control: - no-cache content-length: - - '237' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:38:37 GMT + - Thu, 09 Apr 2026 18:32:57 GMT expires: - '-1' pragma: @@ -505,17554 +439,47 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/ab59e23b-3481-45b7-be3c-a155148dd568 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: CCAFB9A6FE404515A17D645B26CD1CAE Ref B: BN1AA2051015045 Ref C: 2026-09-14T23:38:35Z' + - 'Ref A: 9D22F35D42194E88980BD08345D78EF0 Ref B: BN1AA2051012011 Ref C: 2026-04-09T18:32:49Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp env create + - acr import Connection: - keep-alive ParameterSetName: - - -g -n --logs-destination + - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '47420' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 994E1C1E580F470B9C737B9BDFD39866 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:38:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '47420' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C0782C5CB0EA4E8199DECF503E890C72 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:38:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '47420' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F8661F0B0C8740D093DA18645A982533 Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:38:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '47420' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B08DB1F88DBB45E3932B52ED11B45330 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:38:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/managedEnvironments/env-eastus'' - under resource group ''client.env_rg_eastus'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '236' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: CE177108198A49CE8B8079E4CF2C9976 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:38:39Z' - status: - code: 404 - message: Not Found -- request: - body: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey": - null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": null, - "logAnalyticsConfiguration": null}, "customDomainConfiguration": null, "workloadProfiles": - [{"workloadProfileType": "Consumption", "Name": "Consumption"}], "zoneRedundant": - false}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - Content-Length: - - '339' - Content-Type: - - application/json - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":null},"daprConfiguration":{"version":null},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - cache-control: - - no-cache - content-length: - - '1734' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0ea039e6-6de3-4fd7-bfe4-d825ae5bd4f3 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-msedge-ref: - - 'Ref A: F7879FA325D648299E8548DD8A3E1EE0 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:38:39Z' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/dac9e185-c89c-471f-b9dc-45fb5b870158 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6C4A595F616646E98FCCCCE84FD27B6C Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:38:42Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/084a5efd-6566-4e7b-8ac8-4acfc425f568 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C683AE0740CE4C079D20238BD496BD4B Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:38:44Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/63145dff-2f57-4c1f-b3c3-a6b939d990ec - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FA647CB479064A81A2CD1ABAD608CAC6 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:38:47Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/33fdbf38-f3a0-4f5c-b957-f58c875bb563 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AEA494D0EE344961889555B51464746E Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:38:50Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/54afd7e0-863c-4480-bd84-600272e29e11 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AB6BA69BC24B49F1B0ABC2B6E5B3E6ED Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:38:52Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/737a38f2-c8ef-4795-b89e-53cf9f349312 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C8C5A99BCD2643ACA27C0122B3AB5E4C Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:38:55Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/52d17a97-90b4-4709-ad3f-dd829894f498 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E31CC1D117B54726BD77103A88D944A1 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:38:57Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/07a42578-ceca-4473-9648-c25c3a30bca0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F00CA577986F4A29A4FBEB8C8A2B1428 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:39:00Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/98ad3fe0-b7ee-4025-b3c1-5eb6263d97c1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1A45B17BC9574F5C9CED228D4701DC74 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:39:03Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/afcbf0d6-816f-40d9-aa22-69e1a0ab04eb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C16644D798EC48DCB3A45C33B54C2106 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:39:05Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2ce05576-8107-4f9e-9e75-6a015d1beb4a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 80C7295F98CA4641A35B894874B4A6BD Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:39:08Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e5b29cc6-2590-4b67-ad0c-0fc5fd728e26 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A74ABA84F3A14303AF708B5A2B5777D5 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:39:10Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9c07897a-2bf5-44f4-8933-23bb2be5ad5e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4FF5FA7F95A840ED8C5F6FE5E55893CB Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:39:13Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/81f2f965-f2a9-4a97-9818-aa66694ccbc9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4BD0D7D5B3B349BEBD4F028FB00BCC7B Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:39:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2768b83d-f215-48dd-8881-439323ba54b4 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A2D4D38852B147D8803484B7EDECD72F Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:39:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3833764d-f011-47cc-9fcb-0021083c88d7 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6B66AA7E923C46229F14FBA410DCE19E Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:39:21Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/58a4c70f-2e3d-4cf7-a0c5-ba0c1b2786da - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6A7F75F6D6154F659D2DF39EE514C27F Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:39:23Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/057a68f4-7898-4c8e-b668-f03cb8e7e42c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1B59D91DFC604EB6B7CB9A979BBBD388 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:39:26Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0a5f7de2-0be0-4aea-9505-0ba90510908e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9CB3E710A70A4660A5B16A605B12DA3C Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:39:28Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/168e4e06-3922-433d-9377-402b7e867f32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 161AE7BFC0C246EBB87A4618311FCECA Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:39:31Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/84ce01c8-6156-484a-b5f6-da5a2b0703fe - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3B129429B8544A6489B436A7241FE5CD Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:39:34Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ecb1b19c-2a88-4fef-98aa-93234c98044b - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B065C0DA52BA4247B94E46F922F1DA10 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:39:36Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/17d09b33-8ad8-4d77-856a-36e46866ebad - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5ED7706022B447EDAE89D2816C05C364 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:39:38Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/91cc4934-23b4-4745-bd1d-1ff9f7c8f10d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4459FA4297B9419E9032A06E3DF69103 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:39:41Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c21d952a-22e9-496f-af74-19e9c2dc5c31 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CC7126981B5F41078F06952EA9F198B2 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:39:44Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/38253584-6323-46d9-99ea-f2efeef23b88 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CF1DC41381A14F1090A1B776F1E68DA5 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:39:46Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/1371f6c8-bdff-4ca6-8322-f1f72ab57580 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C619B3DF12C74D87A0F4B0533E96298E Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:39:49Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3e731374-a4d2-4efe-9281-8514f05f1c73 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 72753CF6DF5F4802B1452912E781EA21 Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:39:51Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6a0eebf4-4152-46f6-a937-103169cdab4a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4DAFC11D5AF24086A9BAE98016CC406A Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:39:54Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/97bf5722-71b0-47cd-8e7b-0910d71ff0ae - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E39E7802BFA94DA590213D20F8A85B78 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:39:56Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:39:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3a510b21-3cb9-4c23-ae56-3e759b8f4912 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 86B141FD7E474561BF162B16945F04A4 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:39:59Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1eba1cbe-c108-4c9e-a482-f625985e0c62 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A3DF988631B54DE3B0D9F867C00AC3FB Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:40:01Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e57bfeb5-3b17-402f-972f-7aa6c715123a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BF65CA14F5024B90AF74A9A61573140C Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:40:04Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3f9d55ff-a4b8-4f3e-a9e2-21eb3bd6e1b6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BAF1A19FDEA644B094A7B0180BD891A2 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:40:06Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a871ad35-e2fa-4911-bd73-3dfb2458de47 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9BFCD6F55BAC4E448EF52C9C1157F2B8 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:40:09Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f5008a3a-80d9-41b4-80a7-73d1803cb969 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 22A365A880F9423DA5608EADF9257B77 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:40:11Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/1d2ec76b-c11b-498f-9e64-4b08306d76b1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9EC36279012147C6B6315E24F88E2A47 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:40:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e0bd4902-d62d-4db4-b9c4-b3fe21ffb0cb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 66D09C22A4634611800CC91CFF7B08F0 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:40:17Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e4765c20-d827-4d3b-9446-22c73a7b93f3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 11CACD82330247BFB511984C1FEB48EE Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:40:19Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/36540a3d-c579-4c01-bae2-a736a2c3427d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9D4B76CBD712415781DB678C7D1CA07A Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:40:22Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f5e337bd-6f87-4c07-80a7-e8ec7e590a99 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E49C73653A364AEABF08C688839D7AC4 Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:40:24Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d2abb396-f6f6-45af-8268-4289e80d249d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 242CD080A8D14F8F91D0D5E27DB4F64C Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:40:27Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/277b64a8-04ec-41da-9dc5-c9932b197824 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DC44D1C7E9B1450A9CF346847A2F7DE5 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:40:29Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3058ecc2-9d98-4091-b605-bc06a286e784 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BC54C98EDBAD4EB3834F73DB298EE851 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:40:32Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/54e5299d-bb66-4a94-a75f-ca0c1853fd7f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A57B9890EEAA46A7B289D11A01889265 Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:40:34Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/dab8c254-a7d2-4588-b846-291453c44875 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 17776453022B40DDBCE6CA752AD24A99 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:40:37Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/369c56d9-5cc8-4bb5-b0ff-de1130c2f364 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 902960AF39D246C6AD0344581B6A1A7A Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:40:39Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3f38e7f6-df37-4a4f-b13e-23931c183515 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2C9F656A0EEA4BB6B4E0A75EA816A339 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:40:42Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/61faf995-e088-41a9-a61c-554c23c30f41 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 97A9BBDDFA7F49ABB8522A28BE080CB1 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:40:45Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/60566ec4-12b5-48a1-adf7-1035f19e0dcb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 50F39EB589EB49A3AD76FC6D77CE3C49 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:40:47Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0caa0326-19ff-45c7-b7bc-3c095be3470a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BFCCF3FB0BFB45848B6E8B84D2E3D7F6 Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:40:50Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/eee1e42f-57e0-4cc7-9e67-a5df7611b3c9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3F81C1BC8A5C4634A77D23CC3AB22268 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:40:52Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/299aebe1-4a24-4572-8a93-fff0336c9175 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 572E533C4BB743159E5B685EC4E57CD5 Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:40:55Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:40:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b8479b64-fade-4328-bec1-a860f55c47a6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 62AF20F9E27B4F67A2D4697559006294 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:40:57Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/966a0f66-f9b7-49ea-ba31-c576dbb58a31 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 41A8354AA865416B9621672E74A80D1E Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:41:00Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/17674582-693b-41d9-8f50-5dddedaa4694 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D9FCE073F4114D549E2D08E0C942D9AB Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:41:03Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/577c3d4d-b487-4310-b954-c5782e0d1df0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1CC0F2A82D8D4BF798F2BC0256C7B087 Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:41:05Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1c322e1d-ddd9-437f-bba6-062017b5f264 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D2D0DFD0492B4842B66368A0564C30A1 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:41:08Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9a646cb2-04b8-410d-8e0c-54913d8513a5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2A7A2EAC510C4223BC036BEE176C2648 Ref B: BN1AA2051015045 Ref C: 2026-09-14T23:41:10Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9d286dc9-1952-4e13-a168-4fdc02c9ee45 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8218BF3EE1244FDDB484F4500E18132D Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:41:13Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3912de73-0f9e-4bc1-ab77-2fecaa9c859a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D07219F7521A445F8D824C1ED353E6E8 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:41:16Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0088bc7d-8d99-4f94-8277-c8169c7121a1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8AD283F2F9FF4E72AD2B8FBFAC6CBE67 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:41:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f8d8eaa6-1c19-4bc6-ae42-845c2f6fd810 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EFE932685880486987B0F99D5CDAA022 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:41:21Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4667ff4a-7068-4b02-a010-2024bd87ab65 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 62D6CFED635B4DD8B494E6D0E5AF2846 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:41:23Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/fb84538c-750c-432d-bc6f-8c91310221e0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5BBE3DD54C6040A685D61622257ED3AF Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:41:26Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/acb9e9a6-3401-4ba8-a75f-f3ae4618c9d5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8ABC2423D0FC4370889DFBDC9F0DC155 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:41:29Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5ebcc8d4-cec7-4619-8a12-23f6bb2a9a6f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 068DB6DD669F4DDEBC95A0D7BB170394 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:41:31Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c85d26dc-ad54-4ff2-b22e-bde3aaea6762 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BC7E36A4355B481085B486348B8C45AC Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:41:34Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0b99bbdd-bfa7-451a-99a0-9f439479a757 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6ADCBE75C1BF42D68E1C45DE5CAE9151 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:41:36Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4dbb1053-7784-4309-be2e-10d4d86316b3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AB4EBCA6B6E947189CB304F66248999A Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:41:39Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4469d6f3-43c6-4e04-b80e-fc774e142b98 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 5EC456A163424AE7B21C1B395FF4F848 Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:41:41Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/51e1cc65-104a-4bb1-bbf3-440b463682fd - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 390E117C83864974A3D2053F49348C15 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:41:44Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/98c32223-6ae8-42ec-aec0-c52bf163a489 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 41963AA975434FF1A26F1658EE5160B0 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:41:47Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d1dfa3c5-6b66-4a1b-945a-6ebe1b03bab4 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D5D0A23BE5D644A599A2C02524537461 Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:41:49Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/63a1e58e-6c68-4bd3-a296-bb72eae726d1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7DD3973153B14835A48BED79B5DE96C0 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:41:52Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c1acf420-809c-4f63-bd87-81038031f1d1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8A3D3C9B42C64375A6585C5E4C83D32B Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:41:54Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e1b4186d-8d79-46d1-ac99-769ef1f3e3f0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3DAA44C828554090BFC9BC298387E47A Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:41:57Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:41:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a0be204d-12fb-4298-ad6a-2c81bcb4e7f1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1B08A0472EE649D08DDE617D2CF2E4B7 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:41:59Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d19c5012-abf1-48c7-aa4c-03a88c94a4b3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 806F61F547E14D46A51CDDD4F99A815F Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:42:02Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8c55887f-98e7-440e-b96e-a4e1a46215e7 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E5BC2F3C0DDA441B83227EA8DBAA17C2 Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:42:05Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d2a4b049-c8c5-4307-b431-69f063bf2850 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 27517A97605F4EDC9FD82EFDE8E0E4E1 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:42:07Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/18d12c8a-ef76-4595-b01c-39e1216b87a5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 87BD293FDAD54F1B93EEC9ECE87D4C0B Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:42:10Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d9713f16-3f7d-4a30-b37f-dded2b8a48b1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BF89F577A90C4749925FE158A31611F6 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:42:12Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d38389d0-a420-4a16-bb9a-68b5b5c87fff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 58505F6EA2F74FCB8C64091796AE9769 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:42:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/690b2e39-df5b-432d-972d-d2d8e955a5d4 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 22A98E1A9BF24EC893457EFB07D456EE Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:42:17Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/97b440db-9ae6-4eb0-a952-0f1ce7f3983b - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 808A8001BE7A4B12B86AFD80814BA5BA Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:42:20Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/bb1f30fa-3fdd-40cf-b41f-6bf6af0769db - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7EFEFCF1F89447E3A00FEC164BBC05EA Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:42:23Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3aed6c6c-4167-4380-b825-9357c8fecc53 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 45AED6C511754C2684231AE233AC3B9A Ref B: BN1AA2051013031 Ref C: 2026-09-14T23:42:25Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0dbc848c-7c74-4baf-9e46-2fa12383541e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DF621EBFAEFC42C0B35A01576D95C9EB Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:42:28Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3addd9bd-a859-4f8e-acd0-4265c772c28a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BDFB5CCA2BDE4CBE90FED582186E9C06 Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:42:30Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1d891299-7c8c-4484-b16b-eea888e74e8e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D2159A3DEEAD48ADA5963A018C375F1D Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:42:33Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3c8fc75b-08b4-4dc2-8c8b-88d6f97a4bdc - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C9A13FD8E4204168A09A5C47D64079FC Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:42:36Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6e257b8a-1ee8-4b7b-8ba3-adc491ac42a9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E461F28B3501441A9BFC4F87A96339AE Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:42:38Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4ad46e90-1176-4293-9e35-fb6d35f84feb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E026FE3F7F78430FAF99FB725DDC0AA0 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:42:41Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/48dfac01-8926-4897-9c48-a80a67f3632b - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F3E23CB5BC8341DC8356E5EA3599D112 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:42:43Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7863513a-d6a9-4e79-9426-367d65907b36 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A81EF4354C86404CA9F20660C3F0F793 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:42:46Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a1201d04-d14a-4d2a-a85d-ed40362f8449 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2DFD255A16C142BF8FEA1139BF71C601 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:42:49Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/80424f8b-0ca8-4385-8158-7b0ab03cef0d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8392F6C1F921456BBF68A91140EC5D27 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:42:51Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4fc7a745-201f-404f-a169-44b845adbeff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 262E0525DD864AF38077B885CB4BDE91 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:42:54Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a8fce480-224d-45ae-ba93-505bb30ace03 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 11F3C4C2F3D9451090016A4F46F522FF Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:42:56Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:42:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9f484da7-3b5b-4488-988a-20dbed112750 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AFD1AC63157D4B94A46F9B93FAA6AF73 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:42:59Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0385bc4a-cfd7-47ce-b77f-6aaa88326c11 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B59236A6924D42939BBA334799CE7DB5 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:43:01Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/eb1370cd-9d4c-4d32-8a23-1470058a3f1c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D8E45EE2D711426A8751551576D0C56D Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:43:04Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c902eb94-b3f0-4502-ac53-3c13d406bbe0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C364B7D510514B1DB2F9A1D0A71AAB73 Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:43:06Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9ac858e5-8523-4b38-92a2-c47a0ee63506 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C3102409B09C4CC997492954122BD1A6 Ref B: BN1AA2051012021 Ref C: 2026-09-14T23:43:09Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5bfa31c9-241e-4cd2-b489-4fe124c46671 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B2F8AE9BFFCC47B6B313F91A7C206009 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:43:12Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a767fe84-f22a-4370-95fb-2f067bccaea2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7973320B525C42EF9C2E912E0A7A62D3 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:43:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ca833caa-7717-4ae7-aac0-6333d5b71d99 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 135CA2A0BC3F4F19B424890AB65315CB Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:43:16Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/361ef890-1c30-4fd4-b16b-459ac62f1d81 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4F8E0FB5CE194A5CA8500C8F7E802A30 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:43:19Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c8ce9226-76c4-4db1-b0b3-291077057025 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 222718E7630640A99D60FF272F70BD39 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:43:22Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d4547b3a-262e-46f7-9aec-20ea45e2cc99 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9A5DB7DC4F9E4425B4DFF0C3A4ACEFC2 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:43:24Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/af2a1f85-b504-498d-b2a1-75a64dcb3cf3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BB067046780B499EBA3C0D1B2375B1A6 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:43:27Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b8b99b52-8263-48b7-b2f6-c5b045c513d7 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1172B79EDD374895B348DDDEFDCA14C7 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:43:30Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8e738a82-ec52-46da-80e0-4c60d45a2ce2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A233DA0FDDC24C208C1ED28C62D868D6 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:43:32Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3a451c26-9569-4a1f-8cb4-44485f45795d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C32715BFE9BB4D539E47C1AA77E9C988 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:43:35Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/1dbf58cb-a34e-4809-82d2-4823999e9e45 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4AA90284B2BE49D980F630AACD90AB5C Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:43:37Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4e2fd147-a204-4159-8d7f-a211c2089ce6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8EEAF2334EE04D01953909C44D7F2BE7 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:43:40Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/547b5fec-1f33-41b4-ba25-64f84a0443d6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 305FCDB12BD34EB2885B143A25C9E092 Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:43:43Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/26946918-b062-4d34-ac17-3bafd61fa7b6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0E8BEA0DB29C4967A0892FF68AB22BE0 Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:43:45Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5df92124-cfbd-4d2a-b82a-73120fbab7a5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A029C54968C145F38B46637D375430E9 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:43:48Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/bc721a6a-c2f2-4012-975c-6a18e078eb72 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0CC34E413C6A404C9B3D3121C8372CD2 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:43:50Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e8a79488-32c8-4a35-97fa-16a0e970421e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6FE5312579D448BB9C4A791546A3086B Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:43:53Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/93694691-0f11-4e95-b115-cf99be6dbe77 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DAB8B65AB5AA48EB8D3B34EC383C8D6A Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:43:55Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:43:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0794bb1d-110e-4330-b04e-7167d9567193 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B26AA218F1F64598B2F27142CA15C81D Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:43:58Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5d6e22b3-bce5-4c25-836c-eb47173e3a66 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 24AA672FBD5B48BC809CADB24AB4BDAA Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:44:00Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/075abf13-e1a4-4574-9594-ee6525b24e06 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2467C6DDDCC94CF1BB77A9290EFE418C Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:44:03Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/789fd557-33ca-42f3-a7a0-3e360e8b7e26 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 025AAC7D15CE435480A49638833CAC37 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:44:05Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7e56c507-d01d-4cc5-bba9-c7e9a1ba4839 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 81D8863B83DC477386785285B6448721 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:44:08Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d2f21cf3-6fe7-416b-8c01-d3393dfe9bc9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 84EDB54666394A96A6BEDC53161E9BCC Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:44:10Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2308c09d-5cea-4982-8b2a-76be2b1f6cdb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7473C86494C7443BA7557F17281F4434 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:44:13Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ec1422f0-2ec5-4cde-b8cf-036f46d95767 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E997206F0B374C80B82D651473119781 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:44:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/41a8dbdf-d2a5-4919-8681-a3396789f6ed - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 651591A2C4C544A78472C32C966BFD39 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:44:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7fe31fb4-947a-492c-ae51-327a7c9bd158 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 56A350BD87CD47BA906BCEEC40B689BB Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:44:20Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/647779e9-00a7-4663-9706-bf38278b12e0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D2C103C9AB5546D5A73CF5FCE646CE07 Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:44:23Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5e77cd5a-f5ef-4fe3-ac80-11cd3acf9a40 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 315D7BD602654C10AEC7916CACA875F5 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:44:26Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6c84dbbd-0e2a-4b14-b692-67869b99fae3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4AC86D7C577C45009154EF69F75F7C6B Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:44:28Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8ee40fa9-b21a-43ca-8921-8a235deb953e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EF0F67DD846244799700339BA58D781B Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:44:31Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8c98aed0-b240-4e36-bd26-c0db3fd271bb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 89D8BAA237424E3887D984CCA8E37B99 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:44:33Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e4acbaf5-82c8-4717-8f34-d8ff5af2caf5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 60D84FF1BF30419E9F740B0BF59164D8 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:44:36Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d4f2d9da-0f21-423a-820b-d26ab8475bea - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 20150FC587154E7F807C009C7D51B69F Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:44:38Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c0ac3c2a-b09b-4a11-a39b-f7ae98b26e62 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D51A7DC5CD124FA4B7EE67F874D484A9 Ref B: BN1AA2051012017 Ref C: 2026-09-14T23:44:41Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9676c2db-7a80-4a10-a712-6f3f237da755 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8D08413B62124778AFD576941298C91B Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:44:44Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/66491a08-6d10-4619-a75a-f7aca0bf14e1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A8BF64E2D7AB43D4AC629496CC0894E1 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:44:46Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/325e69ad-69c6-41af-b47e-2742af70bfd7 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 08EF6F8D30BA4AD9A1095D3678CCC2B3 Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:44:49Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/691aaf9e-12b4-4f52-97ce-6c8886e0ce40 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A4C833BB8A564B84B7747BC5A316308D Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:44:51Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5e82c763-9be1-4cf4-aff1-4c24a95670c4 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 09D7824A42EC4C4A9CE856BE94BB32F0 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:44:54Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/040806c2-7130-41d3-afc9-154699adeea8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D78CA93390DA4FB7A2E3EF2A45AAFA8B Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:44:56Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:44:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7c4dfbea-a0c9-4fc9-ae2c-e4548a9bd7a8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 194EAC896504440EB86EECCE059F7765 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:44:59Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/fd8476d2-8623-4ba2-b2b0-bdd54ff99a01 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AB78393C9B164D35A4BA6A7A9EB2F6C7 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:45:01Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/007d06e6-9cea-477c-b0c5-7f0ef9589c7a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7E8A5712EF264C16A190FAE7383270A9 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:45:04Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6a56aa11-fce5-4814-90be-e860141e73e0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 130D91F1D9B34A46B04DF50C3583FA00 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:45:06Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/89051dab-f43b-480e-989e-ba08af0b9bb1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 15600C60C41448AAA538938761E2B0E0 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:45:09Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a18bf587-67ee-4c83-8e8f-8c32b8b7dd10 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E2BCDB2CCF434DAEA6EF946A7C5F22AA Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:45:11Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/ec200b0c-9a91-4c45-bf4f-c906564dd431 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7C16941A447E4A03B602BDECC66BD8AC Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:45:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5f3ed51f-4f4a-45b5-962e-ea00f67b1025 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0FDE88219A94413F8E99E476B2A3FC4D Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:45:17Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a5ace027-fbfd-49d3-a99a-27e5c2dd1309 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C9B5C6BD701F45EBB5119ABAB24E7D32 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:45:19Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c7d21f9a-9fae-4060-8088-fb126419f2b8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1EE1140ECDD746C8A35F4961BB77CBFE Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:45:22Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9bd78dca-377d-4e09-acb3-7bf8c2c01ee0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DF6CDC6244ED439FB431F9171B1B6218 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:45:24Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/35ed4d38-cc8d-4ab8-8893-efeab786f4c4 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E42490E5A1DF4B538613E8A411385247 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:45:27Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b59ececa-8559-4b96-a32c-5e359124ed4c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 23AB92BCA5C04FCB8CD8FA1F50EF230F Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:45:29Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5138a8b4-b0ab-4a34-8c56-259a0a0f980e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B3484F76681D460CB8B95933210BAD33 Ref B: BN1AA2051013045 Ref C: 2026-09-14T23:45:32Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/145071f1-5fd6-4bef-bff3-526108ac48b2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B6E9DE98247D4666B9D2F3E2FCAC1E33 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:45:35Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/333afa70-b7dc-4c39-a356-1e8d5dd38766 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2D716E661A5C4689B7A0A869196B944A Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:45:37Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6ceda030-28b0-4dfe-88b3-190e885186be - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3ECBCA69BF4642D4A5C0449D9CE11AC1 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:45:40Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/ecbc7577-106f-45fa-888b-448dd0ec6f81 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 81213C9B70274C4F9259DF9EDC54E5DD Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:45:42Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3a708a2c-8180-4fa2-8519-c6b6dbd1101a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 82F23FB0473F4CD7A79C54A2A804D7DA Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:45:45Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2cca347d-6d7b-434c-a4ab-5c1190960043 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9B54D5CACBA7497C9A2471915437EE39 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:45:47Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5366eac1-0ddf-48be-8758-73ddb4f22caa - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6C1CD595140446C9BAD6F99845E5E749 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:45:50Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/64746068-bbd4-494e-b0cf-6969c8c0bf21 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D10F223429CB4B89B242C3AF7571BB15 Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:45:52Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b7afdba1-b88f-429d-98c5-322dee2e4982 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 43132B2C90F64997A18F0EC79117D622 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:45:55Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:45:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/9a0e6224-4833-46eb-bd98-a7992faad80e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 99303729E9534380B742D64CFC1892E7 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:45:58Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/984525e6-7eec-4d9e-b762-e733e7119266 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 54BCD8B996C540BBAED31F8547151F73 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:46:00Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/fc36b495-5dce-43e6-a02c-9bfb28b84695 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6BC41E7F4F42429189FE7EBB7162704F Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:46:03Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/04702176-d12c-4323-bae3-f417eb0181f3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F7C2990A3BA246799F78CE5B605FE652 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:46:05Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/fb04c6e7-25a5-4634-8ce0-885072d22974 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A8393A080E4D49E6A6B9BEB68DF4FED4 Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:46:08Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0d1ea74b-b422-40fb-98e7-005135f30449 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E92D2246DD5F4EC2A24CBFA6C3C5F876 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:46:10Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/235cf3fa-d7f9-47a9-a4c4-249ab6ab2e4a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2E401542603E48D7962EA2A056C30ACF Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:46:13Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e2aafbf5-cb49-48e3-b798-1766b2ae8ad0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E54A5AA6B95D4F8B866012AC8C472F63 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:46:16Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2744bf92-1184-48c0-85fa-da3f627c87ba - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 159AC6D45FCF4EFBA189F6448BB978C4 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:46:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/ab983544-db89-4af0-acd0-29dc44cdc878 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DD683FA6031543F48EEC0D4C9937D079 Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:46:21Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/81df69ce-0ac5-4a53-8bc7-41f202052a67 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0A51299C9FD74DDF8833798CCB5DF290 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:46:23Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/75903991-f8ca-453a-8e6a-e8e86eebe8f5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A902572BE6114B71BA0C264920E7ED8A Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:46:26Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7348194d-f35d-49d0-b14b-059c5442e658 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 96A82189E2294F5EBB2AC7BBA4219D1C Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:46:29Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4af29195-1374-4266-8aa7-e8a65739f588 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E65561DA45664CCC9E7F697B45045869 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:46:31Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/55e4ff2d-e588-46b2-ac0a-2e3da8088b03 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A6660C6737CB4EC3A38D081396308B8D Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:46:34Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d4c86b09-7d49-484c-a034-36dedad9361b - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C2C03EBB7B8541659985C4CC02B3D23D Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:46:36Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0c9d7054-f90f-4e53-b495-c35e94deae9f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 42F3D0DB3415422CBA98D08FB34FE1FD Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:46:39Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/295b58d4-2439-4836-858a-76dc426b0de9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6D62FC842177472E84C38D75F7E7731E Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:46:41Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/fcea1b16-f0af-442d-80b8-5e986934ac06 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DBFA8EB15DD84140B209BF7C71A9840C Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:46:44Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/5ac8b8e9-c486-4186-94d5-f203392e0df0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D3B11311C8C04222AC83554E1393B1DF Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:46:47Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8a116b71-2a67-4dfa-9260-cd387da28081 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 07040AF17CB341318E9142B854488823 Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:46:49Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2805ec3a-fec2-4f19-b48e-39000cc9e6c5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0D5467D79CEB4C4E97C52DD4E93E90A2 Ref B: BN1AA2051013021 Ref C: 2026-09-14T23:46:52Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/009bf7bd-7db0-4885-8fb0-6114859cb61e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EA3D86C405194B4AB26EBD8064056FF8 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:46:54Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f6398833-8d1f-4a8e-8755-505503f014a2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9B145EA595A8453BBDAF6B4405AFFD7D Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:46:57Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:46:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cf2707c9-1b40-4bac-80d3-849492403d02 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: AF547D2A209C4DCEBBF64297938695B5 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:46:59Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6e6de651-9597-440d-af90-345ff13e809d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9312BDAA014846168F823D1562DCCFA0 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:47:01Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2ea50480-3c18-4061-b2ae-81429d799a1d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2A0E2C635FAB47C98A1ED29FD63B49AC Ref B: BN1AA2051015039 Ref C: 2026-09-14T23:47:04Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5805a4a4-cf80-45f0-a0f1-df3a269d3ade - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1D2981ED6FF048529DDC165EBA9D704A Ref B: BN1AA2051014031 Ref C: 2026-09-14T23:47:06Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0415869d-eb37-4f4c-a893-971e579427a5 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 73D5602281B74F308E1504925FF03BA4 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:47:09Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/c0c136b9-27e5-4794-918c-2a91a0a30c99 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 4582641C438D4D51B9DC8AFADE5A777C Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:47:11Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d6351596-e8a2-44d7-a24f-6b3787095f97 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0075183E7C8547ADB7CDD8C0304DC0FD Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:47:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/a5c868ef-7695-43f7-a69f-d4640b45f348 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 12A8CB3F57A9423DA61082AC42288BE3 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:47:16Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/682e8272-fc3e-4a71-9689-63efdb32a790 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F7AF1630DE6F4750A2CB03D52AD93595 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:47:19Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/0d482eda-fa23-4468-9cb7-aec9c0e2dd3f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 7EE0E0C8860C40C3BB405F0C2AD00ACB Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:47:22Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/30e1e634-de32-4126-b577-903687a2a501 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C1537EA6525346879B87594DB0DC1799 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:47:24Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/82903366-26ee-498f-87e6-c1183bb8ce11 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0327436C07A3424EB82A8A3F96054E7D Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:47:27Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/efe0e859-0af3-4fe4-9767-07fed26c0e3d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FD1621BA028E4DD5B6717977E3FF8433 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:47:29Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5dc231e2-0331-47ef-b164-b90c80c3ebef - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D00C2776349F4697BD6277822E82F0CF Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:47:32Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3673ac95-859e-482e-b33d-d7dbb9fddfad - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E3D9FDC3D402400FA06431F00FA91BE9 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:47:34Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7857cae4-8907-4ad1-9a47-4e26b1f159b2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C0F205C8D63842CE921957A6F0643469 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:47:37Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/d9a46f10-ece2-4656-9944-3db5fb201989 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C739231AF03542D9A9D67ED757BFC045 Ref B: BN1AA2051014045 Ref C: 2026-09-14T23:47:40Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/03784c00-597b-44bc-9f77-32539dc4d52c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 479FE8185C674C0AAF7E79244483EC86 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:47:42Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3dff3961-4ea4-4428-8bda-d26b8e80f748 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D3B943F45CF340DF9D6243A9A2EE3FE4 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:47:45Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0513d26c-1602-4786-9f03-ec237ba4412e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8877D856C4B64DF9B3F3FE3163AD02F8 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:47:47Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/eb19fece-0446-4133-bf2e-155779d14698 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B56EE9685554458CAC460D61CECB0FAB Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:47:50Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/fffc5a5b-6bc9-4aa7-859c-45629ce5af17 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 178A0B111BAA4E7D983FF8BD1E9F9403 Ref B: BN1AA2051015023 Ref C: 2026-09-14T23:47:52Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e2fe3efa-e2d7-469d-ad50-af62677f87de - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 518AC6EBD46A426E83BDF398E683F5CF Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:47:55Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ac6c0859-6994-4425-8eb0-dc54facd2c40 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 074E7E3D4A364200AA365A2142721460 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:47:57Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:47:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4e3fca6e-9b75-4c4f-b623-8861e3198c89 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A8C70F72A2B74CFFAB913874F9C44896 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:48:00Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/f1f3df61-9a4b-4477-918a-dd2643e0b61f - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 97B8E3C3D6E14B3297A10CAD9BD69BB4 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:48:02Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/22cc9adb-7859-41d8-a2aa-47c80ffa27dc - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0EB26E6D21DE4E24B95679C281A5F1FD Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:48:05Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8cdbc0c6-4acf-4fc2-b50c-d13be1d509fb - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 032A06B1AA744BF4A417B56FCE88D246 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:48:08Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/41815337-d7f8-4a4d-975d-3fccfac9dd59 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 85D7BFF234084F11A91331DD39FA1237 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:48:10Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/e7db5130-776b-408c-8205-046d2e2eeaa3 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 97F28042B55B429C87E03CB44089613E Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:48:13Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/23ec133b-293c-47cd-97f3-0486ae0499d1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 13166904B8124748931EB30200EE599F Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:48:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4e0cad3e-107b-4cab-a39c-3b1526fb06be - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: BD4993DDFF994A58BB14C476F7B5EB77 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:48:18Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/24ba9766-4738-4e77-b519-17f2069cabe8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: F34F5F18528242C0A2362010B061752B Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:48:20Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/e7dcfcde-ccb0-4a20-8703-9595ed5027df - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3C2C4719DF1B4AD289E8DBB218207ED1 Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:48:23Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/09f536df-527f-417b-8284-fc4ef9d7760b - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 0866CE93F3A04521B3B85B5B7A1EB282 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:48:26Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b20a911a-06a0-48d8-89ed-334ff0b30283 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DC2A4FB74BE0427796CCB76314B56A69 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:48:28Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cff5a786-f16e-4ca6-8cac-e0ef9f1ee3b2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 90C69EF404014A4C84DC258BFB256A65 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:48:31Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3ed4c72d-8b44-46f8-be07-3e1c84ae7686 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 6AFC63008EDF427393513AD3E9E86465 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:48:33Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/f65ae473-56ce-43f1-884c-b99ef3e8d281 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: FE448E7DEF944F878386C24BDC4B19C9 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:48:36Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/89785371-af71-4ff8-b80c-d5ef3d3c9125 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 502DA5FA95684B8991E39575B62E0E87 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:48:38Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/76b9d3ec-b90a-4e19-a8d0-3b798f491eaf - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 005A415D3613441BB1BA8EE203AAE5B0 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:48:41Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4fd45152-ca43-479f-a82b-1b408cd47385 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A58518AA1E924783986136BFCDCC96DD Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:48:43Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/55ed210f-9c22-4903-b531-9ca8608870b1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 97C8712B0BB64AE4AA9E2110C834CC3D Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:48:46Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9255f72d-7745-4883-bc49-b0db76530427 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EB44E42BCE7148D6AA83C30C5A57FF47 Ref B: BN1AA2051012017 Ref C: 2026-09-14T23:48:48Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4fb48420-6850-40d6-8681-21cd162e910a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 74FC669B341443EC8737EC3175D7E64D Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:48:51Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8e590327-02d8-463e-8b39-1b0f55f51654 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: ED5B4C5C611346A4BAADDB32CDF68FCC Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:48:53Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2f307b61-82e1-4aa7-bd0d-8374c79b7782 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 70B6C069499144A081ED80C481BD140C Ref B: BN1AA2051015051 Ref C: 2026-09-14T23:48:56Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:48:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/732c4742-71e3-49ec-815b-ed0872ccb281 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E1CE79638E384A61BF2C730BBE77581E Ref B: BN1AA2051014039 Ref C: 2026-09-14T23:48:59Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/2960b793-5bef-43fe-8076-df017cc3bd53 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D2978BAEF8494226820922AA276D7678 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:49:01Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f277c68b-f18f-4218-909a-88d1caeed7bc - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: A73F93ED23CE47899DAA4C03DE7901C3 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:49:04Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/91b9bf47-6a39-467a-9e74-03e0e65f46c2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E5EACB3D08F84F90B085920B2404D28F Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:49:06Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4b08a4e0-3701-4f09-b84e-b712bc88107a - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: EC6EE5F6B6EA4040838EA173069063ED Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:49:09Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/3617ca9d-d95f-495f-90ce-8b8566fa25e1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 3A62A2833C68450483B540BCDC9B49C9 Ref B: BN1AA2051013035 Ref C: 2026-09-14T23:49:11Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/09f68e6a-6c3c-41c9-a30a-a4be8f2b9091 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 86A77971826340549724FBF7E85B3C6F Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:49:14Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3bc19575-7353-48d4-84cf-dee954d8b5fc - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 765C577CA4594D39B458E143021BE749 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:49:17Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/16a94028-3099-4df4-a2fe-98726a495e01 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E1A83325CCE846E5950F0D507C6DFD45 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:49:19Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/cb7ea29e-c85d-4060-b4a7-be5935c63234 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E880E4FEE6CD485B9FC28652733CEC93 Ref B: BN1AA2051012033 Ref C: 2026-09-14T23:49:22Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/2b8655d5-0fc7-4867-b40f-e9c41a850875 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 1BAD9266CD0940F6A84A2D44E1580A0C Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:49:24Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/259558b1-5d2b-48a3-a14d-637f098178b2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: D53B74E991EC4D93A2E5E7D44AE7F849 Ref B: BN1AA2051013031 Ref C: 2026-09-14T23:49:27Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"InProgress","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '284' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/263a9911-f7a5-42bb-9eb3-97f48dfa23d0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E26CDCB0AA1D4643B7BF3EA0B4A70C11 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:49:30Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1?api-version=2025-07-01&azureAsyncOperation=true&t=639250259219789539&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=IwvwmO1DHx1H97ureu7LVfjuPnM7EcqmBqz0bIExGi9euGA56CPhFph9YMfBiHGN0hCmhHGS9oV-l_Es3hOvSZzT-Fust9K1923bd0K4IaoVvHVdZ3h9OVQ0jzwfvQ1JVg5WPqTQFpgFNHKNv3uj-7BFfegDLiEAAJ5DBg4CoEreToQn7quoOhd2pxtGmfnN-Zm789-QO5mE4OfJJzkC1iHjrEz8POHtybbh0ZTIebpxL4C4rEhhKsAbrkuFvBt1Qxrb-s0-b0cZ2xZOwRm2QOZ7OzLfCiMmu5qprtjE2oaQZHr_5LGLsj9ArvoAP1CV8IMNglJXGLb3-A2akpwUEQ&h=hmGu59OTUhYE3czmxCWdQUM4zncLSH1uXTRvsIc1vq4 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1cc773d8-8912-49f3-b0d0-310e4f11aee1","name":"1cc773d8-8912-49f3-b0d0-310e4f11aee1","status":"Succeeded","startTime":"2026-09-14T23:38:41.8302815"}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '283' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/82810650-ca35-4425-830f-d97ca1ec75f8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 8AB2D7F2B32541448E84CB289E1B09F6 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:49:32Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env create - Connection: - - keep-alive - ParameterSetName: - - -g -n --logs-destination - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '1779' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B94BE7ECBE034B0599A3D7220AE2A629 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:49:32Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '47420' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9EA78CB20C534706932369AEA5234DFE Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:49:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp env show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '1779' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: E95E5914DCAD4023AEDECF5CA418BE55 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:49:33Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "sku": {"name": "Basic"}, "properties": {"adminUserEnabled": - true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr create - Connection: - - keep-alive - Content-Length: - - '90' - Content-Type: - - application/json - ParameterSetName: - - --sku -n -g --admin-enabled - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' - headers: - api-supported-versions: - - 2026-09-01-preview - cache-control: - - no-cache - content-length: - - '1681' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/b6cec40d-d027-45a4-a967-4fd2985740fc - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: FFA45D170EE34606B7A230A497938935 Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:49:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '576' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 22EE75C8A3314BE3A97863FA7093B2C4 Ref B: BN1AA2051015025 Ref C: 2026-09-14T23:49:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' - headers: - api-supported-versions: - - 2026-09-01-preview - cache-control: - - no-cache - content-length: - - '1681' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B4704177AC96407B9E743541ABEED1A6 Ref B: BN1AA2051013019 Ref C: 2026-09-14T23:49:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview - response: - body: - string: '{"value":[{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}]}' - headers: - api-supported-versions: - - 2026-09-01-preview - cache-control: - - no-cache - content-length: - - '1693' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: ADEA9BC33CD745CCB22F0A6A23743707 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:49:43Z' - status: - code: 200 - message: OK -- request: - body: '{"source": {"registryUri": "mcr.microsoft.com", "sourceImage": "k8se/quickstart:latest"}, - "targetTags": ["k8se/quickstart:latest"], "mode": "NoForce"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr import - Connection: - - keep-alive - Content-Length: - - '150' - Content-Type: - - application/json - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview - response: - body: - string: '' - headers: - api-supported-versions: - - 2017-10-01, 2019-05-01, 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, - 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, - 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, - 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, - 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, - 2026-03-01-preview, 2026-09-01-preview, 2026-11-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 14 Sep 2026 23:49:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265845095101&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=cdteZcc32tdWbPAeThUas39GDdfS8mnuHTz2FAsLHOWvYr4xfV18tH24YsvTMVqNg7Wv0uAJh7264c6Ytsqq4mvc9Zy68tN3Fv6bzBu91iyOebInZ1YKrL0cMO8exma6ZGiJAJauQFiD_eFwPzddtrMNhUBlUZi5USuUoCFnD4xPURErhUHlCqUpo0eZ3bkoV5R7vfwASgEiZqo37wlUjWgQgE6G9LRcIn2tTJC6NTSAk0naZEW8us-1dOeSYic59sCRl_fFMCqi2kuj2tyS4WyK-PKQ1aPVmnSB6O4d1zN1PnMd-EZwxUeFQxxh85bkElHctQ_Wm0OPxrHgwbezag&h=etPsvwo9Tgsb2NV8xqIFPK3wS7-P1dfEiz-3kcLOxlQ - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/f6327066-70ec-4638-a2bd-e39e6e185e1f - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 69190658517C487F8C4AA6D0F167B976 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:49:43Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265845095101&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=cdteZcc32tdWbPAeThUas39GDdfS8mnuHTz2FAsLHOWvYr4xfV18tH24YsvTMVqNg7Wv0uAJh7264c6Ytsqq4mvc9Zy68tN3Fv6bzBu91iyOebInZ1YKrL0cMO8exma6ZGiJAJauQFiD_eFwPzddtrMNhUBlUZi5USuUoCFnD4xPURErhUHlCqUpo0eZ3bkoV5R7vfwASgEiZqo37wlUjWgQgE6G9LRcIn2tTJC6NTSAk0naZEW8us-1dOeSYic59sCRl_fFMCqi2kuj2tyS4WyK-PKQ1aPVmnSB6O4d1zN1PnMd-EZwxUeFQxxh85bkElHctQ_Wm0OPxrHgwbezag&h=etPsvwo9Tgsb2NV8xqIFPK3wS7-P1dfEiz-3kcLOxlQ - response: - body: - string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' - headers: - cache-control: - - no-cache - content-length: - - '56' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265853448591&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=ejyEVyYLoy0whxSsntC7CNAU4My-Ul9ORkZx4SpQv2IVkcW4hk9J0H-p8rvC446hnrD3i0X9jaW9Ri4CI4bhIzonreDJekR6j-6vji58BnrHSteDXdi5mZnw9hjXm8DqYh9hiqLJtV8HcC21d7UbAZ4svPj8b2YCGUUjbh_VoELryIPn-fv6DKcLHMs3ZBMle3wBN23v_ZyeFDfS8sgllZEMdd1BNQUOV31GlQqABTxoGTRV7r1vh5XbGTlxwRw9cWOLWhZZbafCmdTRsW4-H8DUSVODR-3WMFWScksW5YIedZ2M1Ruh2jpOJeVuV1dUXz4UWgaLRweiYIL2o9Qa3w&h=11ZP0AupYzgDBa3c5qMeGofxjIYU_RwORARNXScnlwI - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/0aa7a1ff-ebf1-48a0-9168-930e2bb237ba - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CF80DD740BAB405DAC034D684527A14F Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:49:44Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr import - Connection: - - keep-alive - ParameterSetName: - - -n --source - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-f437f788-b096-11f1-bbe0-8f5c36754747?api-version=2026-09-01-preview&t=639250265853448591&c=MIIHlTCCBn2gAwIBAgIRAN0yZzL8aR42UZysboj3ciowDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjA4MTQwMDQwMTRaFw0yNzAyMDkwNjQwMTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzoSOkVR7MNj87TdZrq2tsL7eEWBZ1UxYUjlHs2t1x6Xn31o-6e5yM1I79Xw17HpG_ZRC01sH0DmLucuBF6EGQR50aTJ6mx22HrEe4YQhQiTieYabApNFEW7C1Z3sqhwTVaWGvV9-nw9anTx1HztS5s2jjMeJoebstq-wBIvYIOyM7hj12vYY5vdXTn9Sask3V8S3KBxdPpOFhQ5pKF6CgT-fQ9-scbzgeKeWuPXZTO0EeH02xAsj1c-lki5VGv0RewzD2beJxGO1-CxJFOfH9H3UnlZMKLg6kT-aBTn6RuYVuLJoMYYC-eHbYtahA3x5r3yutNG8gegIMlLlcdTGAQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU7naFfTwmNksX70OjHOYQPsR55KIwHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS8zOS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzM5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvMzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAJrRoJWjIzsymA0Vpio4e2hRDOWlG5PpWmWos3Gflt8XcQwRsU-vvdeWk-uT-wHYn52846N5Ue5cbvM8NV-labOA852VL2mtuHnz7bkkRfWTlP-tB-JYDS8l0yGcTENq-UNlakbleLgtfD-Qr09l853jhegiUP3vJKLXMCFF1C2maSNhwZg1MlrEswNSPzRH0Xj9q0-487lH42RncuRXCIqd8ljf1_8v-IXMl6WtDdQDYjQE_s-OHN0BNXt0t4wTd5ikeG6NCH2SHC2wB-PchAiE5P4oHK6Vx3M0q3TEexP11Up6I9ksnpNBw256ZKPa0pX3urxLa215fDhtScA9RzA&s=ejyEVyYLoy0whxSsntC7CNAU4My-Ul9ORkZx4SpQv2IVkcW4hk9J0H-p8rvC446hnrD3i0X9jaW9Ri4CI4bhIzonreDJekR6j-6vji58BnrHSteDXdi5mZnw9hjXm8DqYh9hiqLJtV8HcC21d7UbAZ4svPj8b2YCGUUjbh_VoELryIPn-fv6DKcLHMs3ZBMle3wBN23v_ZyeFDfS8sgllZEMdd1BNQUOV31GlQqABTxoGTRV7r1vh5XbGTlxwRw9cWOLWhZZbafCmdTRsW4-H8DUSVODR-3WMFWScksW5YIedZ2M1Ruh2jpOJeVuV1dUXz4UWgaLRweiYIL2o9Qa3w&h=11ZP0AupYzgDBa3c5qMeGofxjIYU_RwORARNXScnlwI - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/341108eb-0c3d-46d0-8bdc-0ff6e55d343d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 9016295DDDC6458BBB3A82166AA87459 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:49:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -n --query - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '576' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 2A3525B42E6448A294AA3B1B2BA39C7D Ref B: BN1AA2051015033 Ref C: 2026-09-14T23:49:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -n --query - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:34.4670077+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:34.4670077+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:49:34.4670077Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:49:41.0544252+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:49:41.0547444+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' headers: - api-supported-versions: - - 2026-09-01-preview cache-control: - no-cache content-length: - - '1681' + - '6365' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:49:56 GMT + - Thu, 09 Apr 2026 18:32:59 GMT expires: - '-1' pragma: @@ -18064,465 +491,43 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: C54DC0863EE54D2D8E82FA2FE086588E Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:49:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - acr credential show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n --query - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview - response: - body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"},{"name":"password2","value":"5I6MiKDmUKqW2yVtpXJ0JdRHRleox3JxdCULOIRVYFiVb0qo0FxhJQQJ99CIACYeBjFEqg7NAAACAZCRFdrW"}]}' - headers: - api-supported-versions: - - 2026-09-01-preview - cache-control: - - no-cache - content-length: - - '269' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:49:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/69d90aa0-168f-4cee-89b8-f895e2bf75cc - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '16499' x-msedge-ref: - - 'Ref A: 297736BE80A84E299CEF72C8C07A8024 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:49:57Z' + - 'Ref A: C406F4E866A442E486CBEFE2C002240E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:32:59Z' status: code: 200 message: OK - request: body: null headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + headers: + api-supported-versions: + - 2026-01-01-preview cache-control: - no-cache content-length: - - '47420' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:49:57 GMT + - Thu, 09 Apr 2026 18:32:59 GMT expires: - '-1' pragma: @@ -18534,9 +539,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 20CDFB5D553946E98B938793B5BA6529 Ref B: BN1AA2051013023 Ref C: 2026-09-14T23:49:58Z' + - 'Ref A: DACC7961348A4026AAD64B1FABA2D290 Ref B: BN1AA2051015031 Ref C: 2026-04-09T18:33:00Z' status: code: 200 message: OK @@ -18544,458 +549,195 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp create + - acr import Connection: - keep-alive ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password + - -n --source User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, + userAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732+00:00"},"properties":{"loginServer":"zoeycr0707.azurecr.io","creationDate":"2022-07-07T02:33:57.1740353Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-13T02:48:09.3423154+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-05T06:44:34.9117515+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr0707.westus.data.azurecr.io","zoeycr0707.eastus.data.azurecr.io","zoeycr0707.eastasia.data.azurecr.io","zoeycr0707.brazilsoutheast.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478+00:00"},"properties":{"loginServer":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3.azurecr.io","creationDate":"2026-04-03T15:09:57.5559478Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T15:10:04.8223633+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832+00:00"},"properties":{"loginServer":"sourceregistrysamesubtlooq6fpioky74bs2un.azurecr.io","creationDate":"2026-04-01T17:33:00.9939832Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856011+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-01T17:33:08.5856477+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217+00:00"},"properties":{"loginServer":"sourceregistrysamesubukkys6mhexcveowosic.azurecr.io","creationDate":"2026-04-03T02:29:44.0697217Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554141+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:29:50.9554562+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758+00:00"},"properties":{"loginServer":"sourceregistrysamesubuvvbznkjfl5ivvh62gd.azurecr.io","creationDate":"2026-04-03T14:50:41.5316758Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T14:50:59.4577582+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T14:50:59.4578072+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-03T19:54:29.5891485+00:00"},"properties":{"loginServer":"zoeydct0922.azurecr.io","creationDate":"2025-09-22T16:59:00.2524234Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-09-22T16:59:08.5874888+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-09-22T16:59:08.5875706+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601+00:00"},"properties":{"loginServer":"zoeycr.azurecr.io","creationDate":"2026-02-27T05:09:40.3291909Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-27T05:09:47.0426921+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-09T00:23:06.8429512+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeycr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397+00:00"},"properties":{"loginServer":"zoeylocalcr.azurecr.io","creationDate":"2026-03-02T20:31:39.2746934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-02T20:31:46.0177389+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"regionalEndpoints":"Disabled","dataEndpointHostNames":["zoeylocalcr.southcentralus.data.azurecr.io"],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Enabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939+00:00"},"properties":{"loginServer":"zoeytestacr0402.azurecr.io","creationDate":"2026-04-03T02:02:13.1468128Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745429+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-03T02:06:21.0745981+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestacr0402.uksouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}},{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073+00:00"},"properties":{"loginServer":"zoeytestkrs.azurecr.io","creationDate":"2026-02-03T21:53:36.2717073Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473585+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-02-03T21:53:42.4473982+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Enabled","dataEndpointHostNames":[],"regionalEndpointHostNames":["zoeytestkrs.koreasouth.geo.azurecr.io"],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}]}' headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '1779' + - '19086' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:49:57 GMT + - Thu, 09 Apr 2026 18:33:02 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 0864C8C742A14EDAA642F0510F764266 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:49:58Z' - x-powered-by: - - ASP.NET + - 'Ref A: 8FFD0E23271F4E378A7504390687E463 Ref B: BN1AA2051015023 Ref C: 2026-04-09T18:33:01Z' status: code: 200 message: OK - request: - body: null + body: '{"source": {"registryUri": "mcr.microsoft.com", "sourceImage": "k8se/quickstart:latest"}, + "targetTags": ["k8se/quickstart:latest"], "mode": "NoForce"}' headers: Accept: - - application/json + - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp create + - acr import Connection: - keep-alive + Content-Length: + - '150' + Content-Type: + - application/json ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password + - -n --source User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + string: '' + headers: + api-supported-versions: + - 2017-10-01, 2019-05-01, 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, + 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, + 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, + 2024-01-01-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, + 2025-06-01-preview, 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 09 Apr 2026 18:33:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/c07d67de-0f42-4a8f-9101-4f4996a9c554 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 1012E8D384A540D7B2B2D30B58232633 Ref B: BN1AA2051015029 Ref C: 2026-04-09T18:33:03Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + response: + body: + string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '56' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Apr 2026 18:33:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/522bd5fc-1bfb-4482-bc19-4ba9adaa6e17 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9462B692FCA9409D9D16339D52E8616B Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:05Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr import + Connection: + - keep-alive + ParameterSetName: + - -n --source + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + response: + body: + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '47420' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:49:58 GMT + - Thu, 09 Apr 2026 18:33:16 GMT expires: - '-1' pragma: @@ -19006,68 +748,143 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/a843b716-c68d-4d00-bbf7-8aba702d0ffa x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C32230FC52DC4AF183C1B90135CE62CB Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:49:58Z' + - 'Ref A: 8894CADC7C5B4832950EBDF9E6A80642 Ref B: BN1AA2051013029 Ref C: 2026-04-09T18:33:16Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "configuration": {"secrets": [{"name": "acr000003azurecrio-443-acr000003", "value": - "3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"}], - "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, - "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": - false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, - "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io:443", - "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-443-acr000003"}]}, - "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io:443/k8se/quickstart:latest", - "name": "aca000002", "command": null, "args": null, "env": null, "resources": - null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": - null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp create + - acr credential show Connection: - keep-alive - Content-Length: - - '1192' - Content-Type: + ParameterSetName: + - -n --query + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/zoeydct0922","name":"zoeydct0922","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-22T16:59:00.2524234Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-22T16:59:00.2524234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/zoeytestacr0402","name":"zoeytestacr0402","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:02:13.1468128Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:09:34.6009939Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeycr","name":"zoeycr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-27T05:09:40.3291909Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-09T00:23:06.7636601Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/zoeylocalcr","name":"zoeylocalcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-02T20:31:39.2746934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-02T20:35:02.9066397Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeytestkrs","name":"zoeytestkrs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"koreasouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-02-03T21:53:36.2717073Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-02-03T21:53:36.2717073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtlooq6fpioky74bs2un","name":"sourceregistrysamesubtlooq6fpioky74bs2un","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-01T17:33:00.9939832Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-01T17:33:00.9939832Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubukkys6mhexcveowosic","name":"sourceregistrysamesubukkys6mhexcveowosic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T02:29:44.0697217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T02:29:44.0697217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubuvvbznkjfl5ivvh62gd","name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T14:50:41.5316758Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T14:50:41.5316758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-03T15:09:57.5559478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-03T15:09:57.5559478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/zoeycr0707","name":"zoeycr0707","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zoeyumi":{"principalId":"ca03812b-c688-4f4c-9ba0-11fbbefcbb32","clientId":"f040c27b-aba8-4b61-9eb6-4baf06dbe35c"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-07T02:33:57.1740353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-05T06:44:34.8009732Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6365' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Apr 2026 18:33:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 25013C196C964BD2A036CF7F2CCB5ECC Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:33:17Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password + - -n --query User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:59.569086Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:59.569086Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw + - 2026-01-01-preview cache-control: - no-cache content-length: - - '7101' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:49:59 GMT + - Thu, 09 Apr 2026 18:33:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 940C3E473F1443049CD3EC10C7214075 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:33:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr credential show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --query + User-Agent: + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + response: + body: + string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + headers: + api-supported-versions: + - 2026-01-01-preview + cache-control: + - no-cache + content-length: + - '269' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Apr 2026 18:33:20 GMT expires: - '-1' pragma: @@ -19078,26 +895,24 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-async-operation-timeout: - - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/318a5ed7-d0cd-4eb2-88d1-b8245e2a9307 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/db30c45f-f6a3-419a-a04c-8076870826b2 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' x-msedge-ref: - - 'Ref A: C3E883DBD92044D298358D064594DF8B Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:49:58Z' - x-powered-by: - - ASP.NET + - 'Ref A: 83E48A07885D4308A191192885072445 Ref B: BN1AA2051013019 Ref C: 2026-04-09T18:33:20Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -19106,47 +921,327 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:00 GMT + - Thu, 09 Apr 2026 18:33:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/7f4f4883-4de5-45ea-a4cc-ecc776f48fb8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4408E85F6ECB47999E4B4E3C6FEBCF3A Ref B: BN1AA2051013033 Ref C: 2026-09-14T23:50:00Z' - x-powered-by: - - ASP.NET + - 'Ref A: FCE26477FA874AE4BD33D82497129109 Ref B: BN1AA2051015017 Ref C: 2026-04-09T18:33:22Z' status: code: 200 message: OK @@ -19156,7 +1251,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -19165,27 +1260,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '278' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:02 GMT + - Thu, 09 Apr 2026 18:33:23 GMT expires: - '-1' pragma: @@ -19198,12 +1293,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/d8995560-aa9b-4511-8ee2-75bd5fa1e8b4 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F39AA01A1D7942BCA4DE99F6A394BC02 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:50:02Z' + - 'Ref A: 3F443B86EF314F78BAE30E2BFD947002 Ref B: BN1AA2051015025 Ref C: 2026-04-09T18:33:23Z' x-powered-by: - ASP.NET status: @@ -19213,9 +1306,9 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -19224,116 +1317,414 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:04 GMT + - Thu, 09 Apr 2026 18:33:24 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/cbf9d257-5b9f-4721-a3ce-302a9db75c29 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6DF7E6DA8068401AA092670B20D93D36 Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:50:05Z' - x-powered-by: - - ASP.NET + - 'Ref A: DFEC64F36CEB4003829B4938A7FA4A3E Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:24Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "configuration": {"secrets": [{"name": "acr000003azurecrio-443-acr000003", "value": + "***"}], + "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, + "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": + false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, + "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io:443", + "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-443-acr000003"}]}, + "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io:443/k8se/quickstart:latest", + "name": "aca000002", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: - keep-alive + Content-Length: + - '1192' + Content-Type: + - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U cache-control: - no-cache content-length: - - '278' + - '7048' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:07 GMT + - Thu, 09 Apr 2026 18:33:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f52ae34e-fcc8-459d-8eab-f3be487511ff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/3871540a-7a46-4dc6-a69b-de9b56d9fac2 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' x-msedge-ref: - - 'Ref A: 99620ABA72E841AA89C2A14C5AA36EEB Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:50:08Z' + - 'Ref A: 12CDD39E935A4B7A8A5B7E8E1B6341D4 Ref B: BN1AA2051014023 Ref C: 2026-04-09T18:33:25Z' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -19342,19 +1733,18 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"InProgress","startTime":"2026-09-14T23:49:59.8833774"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: @@ -19362,7 +1752,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:10 GMT + - Thu, 09 Apr 2026 18:33:27 GMT expires: - '-1' pragma: @@ -19376,11 +1766,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/8e36f7a3-ae3f-49dc-893c-6d897b123f93 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/4c88da92-c7ec-43b5-b317-33e9fde772a5 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7DADFD2FAD9D477EAB789F3554C92CD1 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:50:10Z' + - 'Ref A: F9233BAF3569419996A0E1FA8088943F Ref B: BN1AA2051012017 Ref C: 2026-04-09T18:33:28Z' x-powered-by: - ASP.NET status: @@ -19392,7 +1782,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -19401,27 +1791,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d?api-version=2025-07-01&azureAsyncOperation=true&t=639250266000378401&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=D_hYLYALy72mogpwyMGucMiSeGKsdORrrD36VEXnSIPGZ6KuIpn-0SqB_VUoB_xH0nRHG4RueTbQxBXN2MZJ4A6_useF_mt7KdVZ5PJ3lli5swqPzlYm--4kz6tH8bWHxl1Uj9EqUQDHfkPKUh7oohewR0luukyjHq9ztw6bzldYHbUEvGDOS7aluqHFHs-1yhrSrPkPEWFbbiehSY_J82MGOE-xpbJbFmDQGn4S7svL_xIbJiIOM3HZ19o2pMrfBZ5JGpYfzZ3qKxz74pm-pqjsd7bDyuhM1J7xISAiCkjztyhk0IfE-99QGM22QzXiDxOE7b62f2Tf0m6vAQDyww&h=cdBYxZ_V6h_y4fv6e3UoGtnOwtaz7KtP9zqKEsGb6Gw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/310b45ae-0473-4cb1-90a7-7a1251dc4a7d","name":"310b45ae-0473-4cb1-90a7-7a1251dc4a7d","status":"Succeeded","startTime":"2026-09-14T23:49:59.8833774"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '277' + - '278' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:12 GMT + - Thu, 09 Apr 2026 18:33:31 GMT expires: - '-1' pragma: @@ -19435,11 +1824,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/8f3cc687-2a50-446b-a8c8-35d55ebbd531 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/060ef7e5-15bb-4fb2-8ec5-8a7adef9f3ea x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A1E7038E18BA421EAF1FB08AB823610F Ref B: BN1AA2051015035 Ref C: 2026-09-14T23:50:13Z' + - 'Ref A: F8B8363DA5BF4923B53875A2B05CC309 Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:33:31Z' x-powered-by: - ASP.NET status: @@ -19451,7 +1840,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -19460,28 +1849,26 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:59.569086","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:59.569086"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000002--2urrvr5","latestReadyRevisionName":"aca000002--2urrvr5","latestRevisionFqdn":"aca000002--2urrvr5.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '7738' + - '278' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:14 GMT + - Thu, 09 Apr 2026 18:33:34 GMT expires: - '-1' pragma: @@ -19494,10 +1881,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/7e664e93-3760-4628-ba57-67dc10fc9985 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AF245C73CDCA49DE83178A8A2B79B948 Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:50:13Z' + - 'Ref A: 3B2C9E30C5424A44B6BF3EB1342F5A79 Ref B: BN1AA2051015035 Ref C: 2026-04-09T18:33:34Z' x-powered-by: - ASP.NET status: @@ -19507,413 +1896,57 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp show - Connection: - - keep-alive - ParameterSetName: - - -g -n --show-secrets - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France - Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password + User-Agent: + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"InProgress","startTime":"2026-04-09T18:33:26.8950094"}' headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '47420' + - '278' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:13 GMT + - Thu, 09 Apr 2026 18:33:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/e1e7f557-17ee-4d00-869c-9736a043ba07 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CB46A9C346C34B42A2935AED30BAA309 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:50:14Z' + - 'Ref A: 48BD08A5D6794290A20D875CA56C15A8 Ref B: BN1AA2051013033 Ref C: 2026-04-09T18:33:38Z' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -19923,36 +1956,35 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp show + - containerapp create Connection: - keep-alive ParameterSetName: - - -g -n --show-secrets + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc?api-version=2025-07-01&azureAsyncOperation=true&t=639113564071282936&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=b-jZOfhpnJY0_ftqSJBDXxr28o8PHuQ4TDRDjXvxcKzHZpQZU_aBVNvj1jpHWaEpsM2GK0lop1ujsHwuwgJjGQG6rrV4zaGUokjKPXwwQrJMDtRbQAmLJnTnlahFOpVpfCSJGvAgsPVXERQHcguvI-0QC6pGQldUHqeoTEm4rGpuWBgZ_-OxQbtS1J1tedjfRq-Z_kFwwAAToEnqGQ7wJ-Ld2M-NSNDVG4sJfksXPatWhV-qYaokO5no8LPDKm5BxIyvfrXKnuOvExuAILaLASyPYPSWkMKTQO2VKWZElBYhGTUR8AGDazdsgDdJiyqEUxsdpNAFqRzXpP1wkxwjLw&h=xaSKHZ-CZqRIcxAg8Muvc73ukCu38_ULjcqD8tZCY5U response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:49:59.569086","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:49:59.569086"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000002--2urrvr5","latestReadyRevisionName":"aca000002--2urrvr5","latestRevisionFqdn":"aca000002--2urrvr5.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/1743da3b-7fcf-427b-97d3-34b78f2645bc","name":"1743da3b-7fcf-427b-97d3-34b78f2645bc","status":"Succeeded","startTime":"2026-04-09T18:33:26.8950094"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '7738' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:15 GMT + - Thu, 09 Apr 2026 18:33:41 GMT expires: - '-1' pragma: @@ -19965,10 +1997,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/f8084cb3-71eb-423f-b1f1-9c4a78b02f73 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3F722B92E0044FD0AA490272D7325DC3 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:50:14Z' + - 'Ref A: C1AEB49CE7A748718236187D0F3F8226 Ref B: BN1AA2051012023 Ref C: 2026-04-09T18:33:41Z' x-powered-by: - ASP.NET status: @@ -19980,37 +2014,36 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp show + - containerapp create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n --show-secrets + - -g -n --image --ingress --target-port --environment --registry-server --registry-username + --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002/listSecrets?api-version=2025-07-01 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '150' + - '7681' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:16 GMT + - Thu, 09 Apr 2026 18:33:42 GMT expires: - '-1' pragma: @@ -20023,14 +2056,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/b9664a14-b633-468d-86c4-a5a5640665a6 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B61B4776865C44019254FDC871B5FC5B Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:50:15Z' + - 'Ref A: A32FE836747A4DD8A801E2CB0C3BF1AD Ref B: BN1AA2051013051 Ref C: 2026-04-09T18:33:42Z' x-powered-by: - ASP.NET status: @@ -20042,412 +2071,391 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp create + - containerapp show Connection: - keep-alive ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password + - -g -n --show-secrets User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39902' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Apr 2026 18:33:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EC81DEB16E0C4F0CA2EB0A4B6388BDCE Ref B: BN1AA2051014017 Ref C: 2026-04-09T18:33:44Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n --show-secrets + User-Agent: + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002?api-version=2025-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000002","name":"aca000002","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:26.6126725","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:26.6126725"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000002--xtaq42i","latestReadyRevisionName":"aca000002--xtaq42i","latestRevisionFqdn":"aca000002--xtaq42i.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-443-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000002.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io:443","username":"acr000003","passwordSecretRef":"acr000003azurecrio-443-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io:443/k8se/quickstart:latest","name":"aca000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '47420' + - '7681' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:16 GMT + - Thu, 09 Apr 2026 18:33:46 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E3825AF0B5D44B38B3D7047D3C3EA388 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:50:17Z' + - 'Ref A: 3A2F6B8B36B04807A1E7F56A911D5AC3 Ref B: BN1AA2051012029 Ref C: 2026-04-09T18:33:45Z' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -20457,37 +2465,36 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - containerapp create + - containerapp show Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n --image --ingress --target-port --environment --registry-server --registry-username - --registry-password + - -g -n --show-secrets User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + string: '{"value":[{"name":"acr000003azurecrio-443-acr000003","value":"***"}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '1779' + - '150' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:17 GMT + - Thu, 09 Apr 2026 18:33:48 GMT expires: - '-1' pragma: @@ -20500,10 +2507,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/7d0d9b73-ad40-4e82-bfa3-193e8d0bb5e1 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' x-msedge-ref: - - 'Ref A: 55A09361DF9D4FF3A8943BE28AF96A1D Ref B: BN1AA2051013049 Ref C: 2026-09-14T23:50:17Z' + - 'Ref A: 84D1EA72669F406EA501976FC4886A18 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:47Z' x-powered-by: - ASP.NET status: @@ -20515,7 +2526,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -20524,389 +2535,313 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:17 GMT + - Thu, 09 Apr 2026 18:33:49 GMT expires: - '-1' pragma: @@ -20918,97 +2853,76 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C78CE2AE93D246789B6C6797098B2D8F Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:50:17Z' + - 'Ref A: C77679F8F174482EB4F403773474F244 Ref B: BN1AA2051015047 Ref C: 2026-04-09T18:33:49Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": - "3LM2PFWobK5WzhMMPBJzmRgl0wv1HXzvK1Hi8enuxhkYPy0uoAb9JQQJ99CIACYeBjFEqg7NAAACAZCRTai3"}], - "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, - "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": - false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, - "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io", - "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}, - "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io/k8se/quickstart:latest", - "name": "aca000004", "command": null, "args": null, "env": null, "resources": - null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": - null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' + body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: - keep-alive - Content-Length: - - '1176' - Content-Type: - - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:50:18.4486682Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:50:18.4486682Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:07:49.6289405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:07:49.6289405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"calmwater-dea219f7.eastus.azurecontainerapps.io","staticIp":"4.156.74.210","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.16.4-msft.2"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '7087' + - '1721' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:18 GMT + - Thu, 09 Apr 2026 18:33:51 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westeurope/7745a5c8-3fd9-489c-9a8d-57d456050b5f - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 59CD560984F444C28A5A7ED1AEC5969F Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:50:18Z' + - 'Ref A: FC9214C9F82348C7A1E82FDD22177055 Ref B: BN1AA2051012049 Ref C: 2026-04-09T18:33:51Z' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -21017,116 +2931,414 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 cache-control: - no-cache content-length: - - '278' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:18 GMT + - Thu, 09 Apr 2026 18:33:52 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/4659efa0-855c-442c-a7a9-558e4e138e35 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A2BD905DC4EE4E6C8E6DA37699BDFAEB Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:50:19Z' - x-powered-by: - - ASP.NET + - 'Ref A: 0D074FA4E3DE4D45AB14EB3D470B3796 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:33:52Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", "value": + "***"}], + "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, + "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": + false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, + "stickySessions": null}, "dapr": null, "registries": [{"server": "acr000003.azurecr.io", + "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}, + "template": {"revisionSuffix": null, "containers": [{"image": "acr000003.azurecr.io/k8se/quickstart:latest", + "name": "aca000004", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: - keep-alive + Content-Length: + - '1176' + Content-Type: + - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s cache-control: - no-cache content-length: - - '278' + - '7032' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:21 GMT + - Thu, 09 Apr 2026 18:33:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/6ef3639a-0bfc-48fc-8d1d-479daa73d9da - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westeurope/0c457244-70bc-4ec7-b3e2-7efb30ec9a8e + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' x-msedge-ref: - - 'Ref A: 0828507BD9724B538333B10A6F123568 Ref B: BN1AA2051014017 Ref C: 2026-09-14T23:50:21Z' + - 'Ref A: 93BDC2F67E684F32B0098BD941B76E50 Ref B: BN1AA2051013017 Ref C: 2026-04-09T18:33:54Z' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -21135,19 +3347,18 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: @@ -21155,7 +3366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:24 GMT + - Thu, 09 Apr 2026 18:33:56 GMT expires: - '-1' pragma: @@ -21169,11 +3380,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/60610b19-9ac6-4a0b-83ed-a3f7200233e6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7eef5cd0-059c-443d-8f9e-51dbc47fb520 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: AE13CB726DD34E68A10503DE9854DF1A Ref B: BN1AA2051013051 Ref C: 2026-09-14T23:50:24Z' + - 'Ref A: 7523EC4659204296AFD52448CCE7CE85 Ref B: BN1AA2051013011 Ref C: 2026-04-09T18:33:56Z' x-powered-by: - ASP.NET status: @@ -21185,7 +3396,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -21194,19 +3405,18 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: @@ -21214,7 +3424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:26 GMT + - Thu, 09 Apr 2026 18:33:59 GMT expires: - '-1' pragma: @@ -21228,11 +3438,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/3d7cc705-49ce-49cb-babf-a03a21e6391f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/4b2d4182-7784-4e1e-993f-d6899c9a7aa7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2B46B7E097E94398AF30F10D6F134894 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:50:26Z' + - 'Ref A: 1E1F8F2A0B074C938D8D04BCD262DAB4 Ref B: BN1AA2051014029 Ref C: 2026-04-09T18:34:00Z' x-powered-by: - ASP.NET status: @@ -21244,7 +3454,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -21253,19 +3463,18 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"InProgress","startTime":"2026-09-14T23:50:18.7326576"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"InProgress","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: @@ -21273,7 +3482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:29 GMT + - Thu, 09 Apr 2026 18:34:02 GMT expires: - '-1' pragma: @@ -21287,11 +3496,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/5c7b5d30-f1ba-4122-810c-226d25cd1635 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/8fcb7cf1-0bd9-48f8-b8e2-4ae1ed9475b8 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D405D2BF78F14DA883D79E0BD76AEE8D Ref B: BN1AA2051013025 Ref C: 2026-09-14T23:50:29Z' + - 'Ref A: F36A5CAB75D6496193668CAA2F649E16 Ref B: BN1AA2051012009 Ref C: 2026-04-09T18:34:03Z' x-powered-by: - ASP.NET status: @@ -21303,7 +3512,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -21312,19 +3521,18 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a?api-version=2025-07-01&azureAsyncOperation=true&t=639250266188705476&c=MIIHlDCCBnygAwIBAgIQeEidveEb90AyQzV3Vg_ZqzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxNDAyMjAwMFoXDTI3MDIwOTA4MjAwMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYxs1-79GYWLBbRPIjkwmCOuHul311U9QxeCklZJjzNEtw5oYC99Nn4o26HdePGYfCeWxFBBuTI_xU-6PRUWpPx24WQj3WYK8hqYdXcqL2q5tJcniwzbZRvtl3KSxJ5gDfK6mMoWo9Bnpbv0HAPf0rxJrvrjhxhxO2OuoocOrsBJD0GU6tj0AL9IyM2KqgqkjydjjlbyKdj5ydVbYsBSIY_fLPoyaJMgclHKrtffFIP37m_67StoFxvnXES6LfXhnjO7piUhHLZ3OgjUD0ujkwKp_TzEBZnCcjfHa7tw2logS-4_OqjgukICvKaH0guAbHU3odMES0Hne8iI23PN9hAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSLlzPAnD-FGNAB1-EkGmsJT_MwxzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMzL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzMvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMy9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCFUdwB9UkyOPYGCRoKPKNoAL2NWGCqRS_DcylwcLIBC3_ZaaQQOYsdLw76zS1Ab1gVmnx3QzsOf3VAbZMYAeLIgiS3UQVlOBcDBWINNC5Gn5CcBhOsbw2C4-x9f6EiEQ7r4xvAdW0MzovTeYxie1KhshskO2UqymIklAVd2ygaIL2AlcTxnzffFHJQ2dY9CPVmRsbhoIJCya6FbQbGODxthCqapX2XAmdu-Em1VaO163PYTcwa_JjQraiHpBheSXgr_vioV3l_G32GIZoI_06-_lkGB9j0jMjaqy0ZzsbZtSu4zwnP28TrazrTy8wivHNsjrS6kYTALeY6lCPhYSH1&s=Mv0_l7PRP2UQKDlDkex3J8pTVzhmyhmty9Gyt0V0iRrnSpAh0c31aZl2tsUbF_X3LEbqJfYVG6M-JbZGf3qjx_ajNg2utJ0XwlBO063ucvXYrgV9jckCJy9QtAzuUNqsNaocuHIyuZYx7crXGLt7WThLgUvIhmAbIlVHXtB3scPiePcTAvWIEao8H6jLvEF8vAFRMwmLquMGYYV7ABjZE3OnnA5xoQnnNde8nyu0gDGAFFMSwO1oLPV4Z0ElmEymJe0pq5-LBVRqa-ZKiYTvZ7fbesT28TrBTnbDzZgbDvr4piBMFiDd1EUR1vLd-DNB2FY7dtY5qDhENeypH6VYfg&h=9qd2cweBFz2RlMxCfUJeAshQkmiTJRGU4QhsmZGcA04 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb?api-version=2025-07-01&azureAsyncOperation=true&t=639113564357620438&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=EjgUcRRrJvJl-Jcp5N5S1pQKtrAm2WSbHweJOmnumxVRkiZUxPO18FH5X0LF5ZaB0kHSDSe5r9rNcJrxBmMcz6zvlnYC5WnG3VbJvxJ9BZPlbaOzFVVDR87_KoEzsJU0eeBL9soKI57vHW-J6hVZpHJHwbtmzTosl_XhIirmq6kY34DsNfgkyMYYmYK3R0FP4IBUm7gI7PxeioiYtVp50jVkmiot2ftuC4Y3jzjzQkADSPOy97fAH7eT1OHTqicS_drRK4CJ1fhjXm937ru9OLsqfFBV4nWievYZ4DBCoFCBdVDQ3lazXd67TNgWqyHrUBnhk15DeycyhqBGUedqKQ&h=UdmvHrICxSpQNwODeQ6iIBPyTNLAQ9zoUGko0AgiN2s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/ba2e3f18-359e-40d7-a386-c566ab3e318a","name":"ba2e3f18-359e-40d7-a386-c566ab3e318a","status":"Succeeded","startTime":"2026-09-14T23:50:18.7326576"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/6436e2bc-78cf-417b-b24d-22289ba3dfcb","name":"6436e2bc-78cf-417b-b24d-22289ba3dfcb","status":"Succeeded","startTime":"2026-04-09T18:33:55.4292773"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: @@ -21332,7 +3540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:31 GMT + - Thu, 09 Apr 2026 18:34:06 GMT expires: - '-1' pragma: @@ -21346,11 +3554,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/ce87781a-4921-46a6-afa9-850a451e6a5f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/b3517880-1ec7-4b4f-a7e1-43d7650872c1 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E21FA611BB6F4ED198837A34E2C94F45 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:50:31Z' + - 'Ref A: 6BCFFB8675514934A3A49DCFB58418BC Ref B: BN1AA2051014051 Ref C: 2026-04-09T18:34:06Z' x-powered-by: - ASP.NET status: @@ -21362,7 +3570,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp create Connection: @@ -21371,28 +3579,27 @@ interactions: - -g -n --image --ingress --target-port --environment --registry-server --registry-username --registry-password User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:50:18.4486682","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:50:18.4486682"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000004--r1icsoy","latestReadyRevisionName":"aca000004--r1icsoy","latestRevisionFqdn":"aca000004--r1icsoy.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '7724' + - '7665' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:32 GMT + - Thu, 09 Apr 2026 18:34:08 GMT expires: - '-1' pragma: @@ -21406,9 +3613,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 776E17115D8C422D99E79D9370B4B378 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:50:32Z' + - 'Ref A: FF5BDBE74853474AB2E78819619C6AC1 Ref B: BN1AA2051014045 Ref C: 2026-04-09T18:34:08Z' x-powered-by: - ASP.NET status: @@ -21420,7 +3627,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp show Connection: @@ -21428,389 +3635,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","Jio + India West","France South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39902' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:33 GMT + - Thu, 09 Apr 2026 18:34:10 GMT expires: - '-1' pragma: @@ -21822,9 +3953,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E181DFCABDC44D74B306F1EF73AE5EF5 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:50:33Z' + - 'Ref A: 9F6386055C2B4F8F850FC71FF364F70E Ref B: BN1AA2051014027 Ref C: 2026-04-09T18:34:10Z' status: code: 200 message: OK @@ -21834,7 +3965,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp show Connection: @@ -21842,28 +3973,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.13.12 (Windows-11-10.0.26200-SP0) AZURECLI/2.85.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000004?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000004","name":"aca000004","type":"Microsoft.App/containerApps","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:50:18.4486682","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:50:18.4486682"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"latestRevisionName":"aca000004--r1icsoy","latestReadyRevisionName":"aca000004--r1icsoy","latestRevisionFqdn":"aca000004--r1icsoy.livelycliff-89b3fad7.eastus.azurecontainerapps.io","customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.livelycliff-89b3fad7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:33:55.1370469","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:33:55.1370469"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","20.81.104.143"],"latestRevisionName":"aca000004--kqbnyqg","latestReadyRevisionName":"aca000004--kqbnyqg","latestRevisionFqdn":"aca000004--kqbnyqg.calmwater-dea219f7.eastus.azurecontainerapps.io","customDomainVerificationId":"2DD3A71C8E9D34C30DA9FCD4385F5DB05375BDE7270F6068D9130FE999C34DAE","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000004.calmwater-dea219f7.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003","identity":""}],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr000003.azurecr.io/k8se/quickstart:latest","name":"aca000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview cache-control: - no-cache content-length: - - '7724' + - '7665' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:50:34 GMT + - Thu, 09 Apr 2026 18:34:11 GMT expires: - '-1' pragma: @@ -21877,9 +4007,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F32E522F67C240FBABB40286EEE4E93F Ref B: BN1AA2051013017 Ref C: 2026-09-14T23:50:33Z' + - 'Ref A: 0FDF6DDD4AF94FE09B1A06EB21164EF2 Ref B: BN1AA2051014033 Ref C: 2026-04-09T18:34:11Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml index f876e9a45f4..bc75eefaf54 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -13,389 +13,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:36 GMT + - Tue, 24 Mar 2026 05:58:06 GMT expires: - '-1' pragma: @@ -407,9 +331,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1FCA46D8DC7D485DB94F2FCE63458923 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:55:37Z' + - 'Ref A: 83B1E760B79941F5A809ABB7697DCB31 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:58:06Z' status: code: 200 message: OK @@ -419,7 +343,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp env show Connection: @@ -427,28 +351,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1779' + - '1726' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:37 GMT + - Tue, 24 Mar 2026 05:58:05 GMT expires: - '-1' pragma: @@ -462,9 +385,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F51D286E9AC04DF6A9A2E5B0D18E3FF5 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:55:37Z' + - 'Ref A: 9FE8A553BACE41579EC8E06F4465CCE9 Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:58:06Z' x-powered-by: - ASP.NET status: @@ -476,7 +399,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -485,862 +408,313 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West - Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany - West Central","Japan East","UK South","West US","Central US","North Central - US","South Central US","Korea Central","Brazil South","West US 3","France + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '47420' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:55:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 74D7D38422704EF08780BDFB7A6E13B7 Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:55:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp job create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --environment --replica-timeout --replica-retry-limit - --trigger-type --parallelism --replica-completion-count --image --cpu --memory - User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:38:40.1039554","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:38:40.1039554"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelycliff-89b3fad7.eastus.azurecontainerapps.io","staticIp":"172.171.56.19","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.18.1"},"daprConfiguration":{"version":"1.16.4-msft.12"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"C94D0743D8DDA78B92FD9FF8F50197C33C0C8020ED1D273731F0B65DBC6B8EFB","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' - headers: - api-supported-versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, - 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01, 2026-03-02-preview, 2026-07-01 - cache-control: - - no-cache - content-length: - - '1779' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:55:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: ADBE37C863D6405C9B7E0F211B6E73D4 Ref B: BN1AA2051012023 Ref C: 2026-09-14T23:55:38Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp job create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --environment --replica-timeout --replica-retry-limit - --trigger-type --parallelism --replica-completion-count --image --cpu --memory - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:38 GMT + - Tue, 24 Mar 2026 05:58:06 GMT expires: - '-1' pragma: @@ -1352,93 +726,76 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 45804C21FAE444C387A3657E50565DB9 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:55:38Z' + - 'Ref A: 4FE57FC526674F44AF549E8D36135AD3 Ref B: BY1AA1072316054 Ref C: 2026-03-24T05:58:06Z' status: code: 200 message: OK - request: - body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": - null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", - "configuration": {"secrets": null, "triggerType": "manual", "replicaTimeout": - 200, "replicaRetryLimit": 2, "manualTriggerConfig": {"replicaCompletionCount": - 1, "parallelism": 1}, "scheduleTriggerConfig": null, "eventTriggerConfig": null, - "registries": null, "dapr": null}, "template": {"containers": [{"image": "mcr.microsoft.com/k8se/quickstart-jobs:latest", - "name": "app000002", "command": null, "args": null, "env": null, "resources": - {"cpu": 0.25, "memory": "0.5Gi"}, "volumeMounts": null}], "initContainers": - null, "volumes": null}, "workloadProfileName": null}, "tags": null}' + body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: - keep-alive - Content-Length: - - '845' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:39.2342337Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","name":"env-eastus","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:45:37.8175021","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:45:37.8175021"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-7ac1ab4e.eastus.azurecontainerapps.io","staticIp":"20.124.136.140","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/managedEnvironments/env-eastus/eventstream","customDomainConfiguration":{"customDomainVerificationId":"5E8E4A7445792ED8E0EC431456C515D50A57A0296144556BF8F442F77BA54CFD","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled"}}' headers: api-supported-versions: - - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, - 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6590' + - '1726' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:39 GMT + - Tue, 24 Mar 2026 05:58:06 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-async-operation-timeout: - - PT15M - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/76b73abc-eed6-461c-8716-ea7eeab02e4c - x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5E05DA5E1C714EA8BA682CDD9D0CC312 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:55:38Z' + - 'Ref A: 6BCAE525F7B4459BBF436D0662204DBE Ref B: SJC211051204033 Ref C: 2026-03-24T05:58:07Z' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1447,57 +804,409 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West + Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany + West Central","Japan East","UK South","West US","Central US","North Central + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39885' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Mar 2026 05:58:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FAF3C3C2102D4857941D9535F01490B1 Ref B: BY1AA1072320034 Ref C: 2026-03-24T05:58:07Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus", + "configuration": {"secrets": null, "triggerType": "manual", "replicaTimeout": + 200, "replicaRetryLimit": 2, "manualTriggerConfig": {"replicaCompletionCount": + 1, "parallelism": 1}, "scheduleTriggerConfig": null, "eventTriggerConfig": null, + "registries": null, "dapr": null}, "template": {"containers": [{"image": "mcr.microsoft.com/k8se/quickstart-jobs:latest", + "name": "app000002", "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: + - '845' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --environment --replica-timeout --replica-retry-limit + --trigger-type --parallelism --replica-completion-count --image --cpu --memory + User-Agent: + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"InProgress","startTime":"2026-09-14T23:55:39.5099183"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411Z"},"properties":{"provisioningState":"InProgress","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M cache-control: - no-cache content-length: - - '282' + - '1331' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:40 GMT + - Tue, 24 Mar 2026 05:58:10 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - PT15M x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/9c047c76-6d9f-4446-8f45-de1f79b77211 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/35154f62-1978-40ba-822f-e34d95c2ee7d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' x-msedge-ref: - - 'Ref A: FC832FCCF9E84552BDBE3D3D0E9F6D83 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:55:39Z' + - 'Ref A: 2A98C9C49BAA4AB08290BB04F4038388 Ref B: BY1AA1072318034 Ref C: 2026-03-24T05:58:07Z' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1506,19 +1215,17 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"InProgress","startTime":"2026-09-14T23:55:39.5099183"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1526,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:42 GMT + - Tue, 24 Mar 2026 05:58:10 GMT expires: - '-1' pragma: @@ -1540,11 +1247,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/b9748dcd-059b-416b-8afd-126df2c84bb0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b7f0bc80-740a-4d8b-925b-4d47bb643dc6 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 78C1594732E64BC2B7293B1A3F2B9AE0 Ref B: BN1AA2051014027 Ref C: 2026-09-14T23:55:42Z' + - 'Ref A: A4F9CA8EBA054874A4349F476B4087EE Ref B: BY1AA1072319031 Ref C: 2026-03-24T05:58:11Z' x-powered-by: - ASP.NET status: @@ -1556,7 +1263,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1565,19 +1272,17 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"InProgress","startTime":"2026-09-14T23:55:39.5099183"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"InProgress","startTime":"2026-03-24T05:58:09.9196862"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1585,7 +1290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:45 GMT + - Tue, 24 Mar 2026 05:58:13 GMT expires: - '-1' pragma: @@ -1599,11 +1304,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/7b500293-b141-40e3-a8e3-c977860c6282 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/50c4cc15-57ed-48c1-a844-317737629347 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5475D72DD664423D9F52843B094BE72A Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:55:44Z' + - 'Ref A: BE236F084B0B4394A74941946295233E Ref B: SJC211051205027 Ref C: 2026-03-24T05:58:13Z' x-powered-by: - ASP.NET status: @@ -1615,7 +1320,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1624,19 +1329,17 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8?api-version=2025-07-01&azureAsyncOperation=true&t=639250269397029846&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=tEcQKZ-9RnMcOc30edqEzjC2g5AEexrN0GHusoBBTxGZHj3uxCIKgH2Y-pRHZPX04wpAyRCaco0Qsrs7IV9g1G88fEAmh692WUYngJtQsDAYcOatUDGDCD7K_VlLS6FqhQlO_nxi4DK238ytwQ9B84s8iqNgqVMnUemTcZDDRtzgcDb78-eDk4GvQxzBmaCkGqn43RRzTfamZSyLfxHeZTmlZRaVVtWQOcrj1jXmA4qRCg8vPK6B_J-KtYhIkVRzCOjX0udVUQXd1PSU4zFSqqTIA4c83pVAiFire7wZn3epeM07TF_ZMlT7lvgAi6H71q-bt2pPBmicPDfkQLYugg&h=YPMhHUD0CJgcR558WtIIAaBbfwofaJQt-dEzq6qsUNM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702?api-version=2025-07-01&azureAsyncOperation=true&t=639099286911066047&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=Ce8isIAjMfQfZss8EpN0qk0h8r_tngfA2F6aEOZuBGX-1ai3q7pMH6Q59TWM078Cksqno2nsi6ww4yNTYjM1JM_kXcukt-poNaoAkJDGNHzs3vLwVwDARmOiyOBABzin6to0WV1Ixl2xyC_IjfZHvNYScanLgGJ5CU0nTgJtKwO7wNGQPR8n3MDhYyW3U3U_S29vYLkQL9vY2Dn3b5ZdKM0KWrXwqmRTAgN5rKIFIdl1HZ1B4WhhuzuZHLFqY6fAV0Ibq2c-rsrT-bJ5x7hCnyQ53YRgIvDNR3Bgwwzp1KuaYPLfNMqHI1bcEzI7xDqkKJpETRg_VmmiFze-uPXD7w&h=fl1ahPle77RyIhU096Aib2ciMr8EhIKbnyjPeuamq1M response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/359312f7-bf88-4203-9fed-ec72b351dcb8","name":"359312f7-bf88-4203-9fed-ec72b351dcb8","status":"Succeeded","startTime":"2026-09-14T23:55:39.5099183"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationStatuses/643ac31f-a222-4cb8-a74b-7c894dde7702","name":"643ac31f-a222-4cb8-a74b-7c894dde7702","status":"Succeeded","startTime":"2026-03-24T05:58:09.9196862"}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -1644,7 +1347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:47 GMT + - Tue, 24 Mar 2026 05:58:15 GMT expires: - '-1' pragma: @@ -1658,11 +1361,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/289d7f51-b780-4665-932a-db0e3805be9b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/abf2851f-acad-442c-82f1-40ba686d412c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E7818EC6B51D41F58C2D4CE45D0C5260 Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:55:47Z' + - 'Ref A: 8EEE2B56E7AD43DA8B3F98C7005A0D63 Ref B: BY1AA1072316036 Ref C: 2026-03-24T05:58:16Z' x-powered-by: - ASP.NET status: @@ -1674,7 +1377,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job create Connection: @@ -1683,28 +1386,26 @@ interactions: - --resource-group --name --environment --replica-timeout --replica-retry-limit --trigger-type --parallelism --replica-completion-count --image --cpu --memory User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:39.2342337"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6609' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:48 GMT + - Tue, 24 Mar 2026 05:58:16 GMT expires: - '-1' pragma: @@ -1718,9 +1419,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 92614E249CAF420198246C55C903FA86 Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:55:47Z' + - 'Ref A: FACC70A2E96A4D579BBDC7230B96989D Ref B: BY1AA1072316023 Ref C: 2026-03-24T05:58:16Z' x-powered-by: - ASP.NET status: @@ -1733,7 +1434,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: @@ -1745,24 +1446,23 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:48.7941079+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:48.7941079+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:55:48.7941079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:55.7388818+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:55.738926+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1680' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:55 GMT + - Tue, 24 Mar 2026 05:58:24 GMT expires: - '-1' pragma: @@ -1774,13 +1474,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/fa78d77b-f8f5-443a-b4f5-07e3016ac401 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/7f2a7b6a-c21d-4e09-a9ab-b2a9e2d6797c x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' x-msedge-ref: - - 'Ref A: CC505386D1AE4204B691ED718E102E9B Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:55:48Z' + - 'Ref A: 8F7996EF5799498F8FDC268A5001D21F Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:17Z' status: code: 200 message: OK @@ -1790,397 +1490,321 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: - keep-alive ParameterSetName: - - --server -g -n - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West + - --server -g -n + User-Agent: + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39885' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:56 GMT + - Tue, 24 Mar 2026 05:58:25 GMT expires: - '-1' pragma: @@ -2192,9 +1816,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 8DBD48AEF97B4E0BA33B4317B6AC3060 Ref B: BN1AA2051014053 Ref C: 2026-09-14T23:55:56Z' + - 'Ref A: 77939CA83F664FB5B7818885C61BAC91 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:58:25Z' status: code: 200 message: OK @@ -2204,7 +1828,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2212,28 +1836,26 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:39.2342337"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:09.778411"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":null,"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":null,"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi","ephemeralStorage":""}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6609' + - '1350' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:56 GMT + - Tue, 24 Mar 2026 05:58:25 GMT expires: - '-1' pragma: @@ -2247,9 +1869,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1B7C420D7DE840D5A0F550074B0DB6FC Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:55:56Z' + - 'Ref A: 2FFF2425312D41118FC671E78102B179 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:25Z' x-powered-by: - ASP.NET status: @@ -2261,7 +1883,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2271,8 +1893,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: @@ -2282,8 +1903,7 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -2291,7 +1911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:57 GMT + - Tue, 24 Mar 2026 05:58:26 GMT expires: - '-1' pragma: @@ -2305,13 +1925,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/a066a0af-1047-4472-98be-b983ddee13fd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/2f039500-99e3-4fb7-a16a-67997ac0be85 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 4074423576FD43D1ABEC4828963B71A1 Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:55:57Z' + - 'Ref A: C3CBD52FCA3F4672A176CDA3B2E39F51 Ref B: BY1AA1072316029 Ref C: 2026-03-24T05:58:26Z' x-powered-by: - ASP.NET status: @@ -2323,7 +1943,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2331,22 +1951,21 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7juybbsrkvqkio2ys7avrdjfyzmphiv43k7bp6xoh7pzl7tfedjxwwelrukegcotp/providers/Microsoft.ContainerRegistry/registries/acrzzuc7i2xxxwgo2ytumlcm","name":"acrzzuc7i2xxxwgo2ytumlcm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:54:59.5906909Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:54:59.5906909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:48.7941079Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:48.7941079Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp1","name":"acr06jan2025cp1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:50:22.6092217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:50:22.6092217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-registry-create-test/providers/Microsoft.ContainerRegistry/registries/acr06jan2025cp2","name":"acr06jan2025cp2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-01-07T00:57:35.4736246Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-01-07T00:57:35.4736246Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubi6tsnumxp3lxcjni4uw","name":"sourceregistrysamesubi6tsnumxp3lxcjni4uw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-23T20:36:25.3774478Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-23T20:36:25.3774478Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubl5wyr3lej3bx7yqb3hr","name":"sourceregistrysamesubl5wyr3lej3bx7yqb3hr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:31:24.8841471Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:31:24.8841471Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_43t35qnmoccqzqycecfzrv4cahdow5t2yoxri4eufm3lggfdtbjbdipvaa/providers/Microsoft.ContainerRegistry/registries/cliregjsoch2h4akj4uy","name":"cliregjsoch2h4akj4uy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T03:59:20.4174507Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T03:59:20.4174507Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134Z"}}]}' headers: cache-control: - no-cache content-length: - - '1230' + - '3356' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:58 GMT + - Tue, 24 Mar 2026 05:58:26 GMT expires: - '-1' pragma: @@ -2358,9 +1977,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7D810F11A7574A638D2F0927508B573F Ref B: BN1AA2051014025 Ref C: 2026-09-14T23:55:58Z' + - 'Ref A: 1735641CAEC74F1C9C8C8F5E35799BEF Ref B: SJC211051201045 Ref C: 2026-03-24T05:58:27Z' status: code: 200 message: OK @@ -2370,7 +1989,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2378,24 +1997,23 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:48.7941079+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:55:48.7941079+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-09-14T23:55:48.7941079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:55:55.7388818+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:55:55.738926+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1680' + - '1595' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:55:58 GMT + - Tue, 24 Mar 2026 05:58:27 GMT expires: - '-1' pragma: @@ -2407,9 +2025,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: E799D31E173040EC880221B07E06E89A Ref B: BN1AA2051013047 Ref C: 2026-09-14T23:55:58Z' + - 'Ref A: 1E7F1F40570441B483D86D0D742ED390 Ref B: BY1AA1072318042 Ref C: 2026-03-24T05:58:27Z' status: code: 200 message: OK @@ -2419,7 +2037,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2429,16 +2047,15 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview response: body: - string: '{"username":"acr000003","passwords":[{"name":"password","value":"EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"},{"name":"password2","value":"9RBUNaHBq82xP3168uW2BfNmNLfdUSogLQXZ2QWZhWGxMX5qzCnhJQQJ99CIACYeBjFEqg7NAAACAZCRnBar"}]}' + string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: @@ -2446,7 +2063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:00 GMT + - Tue, 24 Mar 2026 05:58:27 GMT expires: - '-1' pragma: @@ -2458,26 +2075,26 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/feb78c28-5a9e-4e8e-948a-1ca9d9bc1c9f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/85885868-5b4b-4a86-8230-725bdf0bbaaa x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 09D66651B8BC430A80569196D52B6C34 Ref B: BN1AA2051015053 Ref C: 2026-09-14T23:55:59Z' + - 'Ref A: E342E2A0B6BB491B812C73E33605B0FB Ref B: SJC211051205011 Ref C: 2026-03-24T05:58:27Z' status: code: 200 message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}], + "value": "***"}], "registries": [{"server": "acr000003.azurecr.io", "username": "acr000003", "passwordSecretRef": "acr000003azurecrio-acr000003"}]}}}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2489,8 +2106,7 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -2500,18 +2116,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:56:01 GMT + - Tue, 24 Mar 2026 05:58:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269612873004&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZjpPyAEbdgNd1U6VyV0sq2hkco5bYTdxohTeSz961xTFvyF8ZxCp9Bxts1y7XEryyfUxcV3CU073le5Ivc8ce6GK3VEQpbGVDb3aJSqydsETlo5rfl9shMsRvcYywtosfmAbsIQsPqiOAYUWBBNklnoiMnUBqidvXozcDwUcnYQqE_1APARh8ruo3lCZs351AjV6T0iSUJrjNq5tnfGEliEY9fGtuGHg62GmfjoZ-S1L6rH4iAjxhZz5rlVqo_J_KL1g682H9IzydTIvfNuHn6CGRV5HR0tI5v1uV17OlBgR70YJLyaHHvdXEvvMQbVBQ7cEjarhvuEBBui0r3ckxg&h=8JT5HaNM7M3dvMrpIxPKqJMjgRzqgQhxOX5lt1ZpY1M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ pragma: - no-cache strict-transport-security: @@ -2521,11 +2136,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/17e84cae-43ed-4170-999a-3f06ca5c6814 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/8c5ae4d8-a6e6-4991-b2fd-c9d8e75525d2 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: A10D4D441A894DE4B96A97B17B230D00 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:56:00Z' + - 'Ref A: B0D2853C22764F8E93A359A8F5418407 Ref B: SJC211051203037 Ref C: 2026-03-24T05:58:28Z' x-powered-by: - ASP.NET status: @@ -2537,7 +2152,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2545,10 +2160,9 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269612873004&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZjpPyAEbdgNd1U6VyV0sq2hkco5bYTdxohTeSz961xTFvyF8ZxCp9Bxts1y7XEryyfUxcV3CU073le5Ivc8ce6GK3VEQpbGVDb3aJSqydsETlo5rfl9shMsRvcYywtosfmAbsIQsPqiOAYUWBBNklnoiMnUBqidvXozcDwUcnYQqE_1APARh8ruo3lCZs351AjV6T0iSUJrjNq5tnfGEliEY9fGtuGHg62GmfjoZ-S1L6rH4iAjxhZz5rlVqo_J_KL1g682H9IzydTIvfNuHn6CGRV5HR0tI5v1uV17OlBgR70YJLyaHHvdXEvvMQbVBQ7cEjarhvuEBBui0r3ckxg&h=8JT5HaNM7M3dvMrpIxPKqJMjgRzqgQhxOX5lt1ZpY1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ response: body: string: '' @@ -2556,18 +2170,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:56:01 GMT + - Tue, 24 Mar 2026 05:58:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269618231214&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=fVqOrY_AIpGNxNDzMaBA_y6Dslzc0qzxjOyknlk4EBADgcm0zgdIWPMb7AQfQzdV0ezOFhXRE--fRksBQ1tLbWyn5hi0XJ5OJ5hHKWgEVDimet3H2bL31BBglaJmnI6VsXHgPFuJIUq_QIhWUDDA8tppfq9igXDrQkohDcVConCFRbOlpcK6bYwe6wn-wviChbCgNaA6QajhYrDCITA8fPwgc67HuRQFIpi3h8R8SqlnbMqh4eSU9f8z8pdjJCFoVpZBw8oTyIhM6X0d4EVnvhE0xerP6qqntJG_Aa84u0El3aXFIwbYAuo4Eqv9kk22jwn-1K6eDsDomrJu8etY6g&h=kxScfuS24ny7f8GuHtRCgs_j-YuNoYQbQFrCSeFbpnA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287103526622&c=MIIIJjCCBw6gAwIBAgIQW71qFXx3l7tDVHS4N7YelDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDIxNDEwMDIwOVoXDTI2MDgwOTE2MDIwOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFo7fwpaow7azVO9WAGTry-NjV2FEHgiDxrEFe5W0uXCe8rOc70vP-tepggd9RdxsuJjLiozJMd2mhobDtgNel4XNKHyc-KyYrXmDgwTxQEukPrUL7WH4rgNypgrgGomfCIpfLXqm4xjwlp6frB-arReh8G-P0gt__4n1WmYyQFjDwr24QW-8z8M17YpX_uuU3AeEJN8IVkCdH0HkZUQ8AYLs_QBu-52yfswFet3UKHOREOL210HBCdtPsobjvF4c9MB_u4V6TiKKEWZxpTJrGjr5dgESS3svcGSdo_iTVzy8FGlla3QjY79sNb4bYzdiVZsikvWifaPDb2HebHofBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBSMmQH2h8a6gkNY1P9PkW51k2cFrTAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzgxL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvODEvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHhUJjx3WWnBSkvuLtG_B_0cgBx_ZgiK7AzbTdCUg2HGIJBQIF0Y-bOwQICyB_OaeP6_c_uS7SaVHQT2mFHKigB1ChbIPNr0YD5TIxJoFUFyEW2tEv22prb7ALsbyRsUFcuLNbLZbS-jGRjnuQv-XjJMq9tLhTPlmYkg779e4xfGDVUX8ZXpOZOQis7UnfLtlyMD1yLmBRAcaktj8371a28Av31SEbwv95eFf7CzQ8mumKeWmgB1armhKIt_5On1J2YLPSfcZbsr8dbSpyavD0MoVfWx_-ptZ6SvWg6G9dHcxgeTihx-gH7Zl7azhk-_hxQs5FcVvn_cmNISq1DwHnM&s=RvVuBikV3PlFywK_KqHykM3IVIG24w9ln4rOEOo-Srs_aJntM0Njdgh9F633eZIPs7BJ_OHxJPmEKJjga7J1-e8F0Pe7yVWfRh2ezq3QzDPfeBwTzAftKCArNv7MkZePkPDlmdO9vFEbW3IdunuX4DFdwCDo0h9ARPQo8lK1A7spp9eX6SFx1orCJZedT1VCP2NrMsf8hH5woLFsELYp3a71aSacSrMmYOim2BB58zpcQJm9O4jyg0UTGDDJgcO-I6brjlgcWaUw8sIwnliFGcmk0ORNqXebAMYU0DvmVyTOoWjHTry-UoOBweHdf2YpgYWbGvsXrvNSgKw4jTyMkQ&h=bewZB2cYDExSd-GQEWDPHsgj8IhMBWMaB88S9_YexIs pragma: - no-cache strict-transport-security: @@ -2577,11 +2190,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/f7ae486d-5fa2-427f-801f-242ce58d960c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/1e4e98e8-4162-4681-ba7c-23de71c5fd6c x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D8AB5F177F5D40E5A38D6A4E7A9ED8D9 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:56:01Z' + - 'Ref A: 3D21BAAE48E04A5B81B700C74ED3C6C0 Ref B: SJC211051204053 Ref C: 2026-03-24T05:58:29Z' x-powered-by: - ASP.NET status: @@ -2593,7 +2206,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -2601,28 +2214,26 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/d16f9651-4ef5-4327-9b15-2df207924c04?api-version=2025-07-01&t=639250269612873004&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=ZjpPyAEbdgNd1U6VyV0sq2hkco5bYTdxohTeSz961xTFvyF8ZxCp9Bxts1y7XEryyfUxcV3CU073le5Ivc8ce6GK3VEQpbGVDb3aJSqydsETlo5rfl9shMsRvcYywtosfmAbsIQsPqiOAYUWBBNklnoiMnUBqidvXozcDwUcnYQqE_1APARh8ruo3lCZs351AjV6T0iSUJrjNq5tnfGEliEY9fGtuGHg62GmfjoZ-S1L6rH4iAjxhZz5rlVqo_J_KL1g682H9IzydTIvfNuHn6CGRV5HR0tI5v1uV17OlBgR70YJLyaHHvdXEvvMQbVBQ7cEjarhvuEBBui0r3ckxg&h=8JT5HaNM7M3dvMrpIxPKqJMjgRzqgQhxOX5lt1ZpY1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/9b6043a6-94ec-4d1f-af9f-57bd9607136a?api-version=2025-07-01&t=639099287096359936&c=MIIHwzCCBqugAwIBAgIQXVokCjoBy2ohckt4PAvhMjANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMTI4MTQ0MTQ1WhcNMjYwNzIzMjA0MTQ1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANgivDnhK_iJT5EjNIU2QtasL0cHOcNgQ8WfzfGrxsHBk-T_-Vp2xK7WjEeU-7QYhGisaPiBuCBGJ1Ij4lv0CslNUMIP0XmlAueDccohU6R646GI0BNqXPc-JKntdxGRsgo2clxHImxy7S_aBExnsMD-gceRyeUyZLIPKh8WjqMb_H9zXdh7ZmFQRiB8BAIxbxnhMhzs7mgq6Ob5kC1i2ZumWN853Kc6mi0ZaKdloecRnSevaUpmpFxKvdMqJ762jdFhzzzoPdHc5eboHurBbz1XAsn_DT7F4U8FR2VRduQucYdJmRjOOEk-ras-QLqZPsuayuDVPPKJUb18ADQaXvUCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFDSwQskzIdGT5SwO57YvjZibE5PQMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNjUvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS82NS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzY1L2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABR95kOzyDSa3qXCgFt3xeWoDpaV6sKgGNAPryjMkDMPICfy_zjsgLph4V4HEwF5kFpQENtzNQc6I6cyzCEUCS5bUX9xDsDbLcXuBbwVBQz-lfiq79Vgc4ybyCRh7wSiF3SlYVz0p4wULJVQaQR0iUCIOzCKHA4eXQExg6_6KiUibNu8AGT9qHYSr6PRNafkGpilhCUZ2dFWf5c2iTeLFAHYslomMMPtFmb0Q2zCxSBTlwA7IbfVk1dkz2bNiHzzhqNm7J6-VlEeXpI4__EQ4JMp5yfyObUDHtsZCBLb-OrwI0GV0LevJOiTPSL373hO9aj8tuF1GfkB4svCkHn-mqQ&s=nxuko7ZMttbxlgT2m4-kNKa5K5o4FGEvGwvpkKCOYxJcHXFQVD-UTqoW32gTKxhYBejtcIJzexSUVN-IbdCIxGLAVTt_Q3GjJafOEkGkJCWgQJRKRuVD7djjFXh7AQqQ1S5ZAB5RgI6IyvLZbD6YDhkQ1GUbvPJ64hcFeR81ujeqbzjZC0uM6mUppzjpLG1fOFCULvC8uniJTQMW5NR5A6e5B2CoKJDt-LZFjCuO6HwBJpIwHi1jnUZ7V9KNaPNnrvbWxEf3KPuC07w3d3WKICnw16xc6PXubcewMqHuato7FAnP1IhW4ysjUkAVkVG4Gnda2_CMeBZGer7CROBFaQ&h=z1nBiPTGQE-0QEoxzIGjPC0hqKDSkW7CPbhhJj3iugQ response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6729' + - '1471' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:16 GMT + - Tue, 24 Mar 2026 05:58:45 GMT expires: - '-1' pragma: @@ -2636,11 +2247,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/4051d5e1-a994-4896-907d-463ba51f19ff + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d0decb66-fae2-49f2-b24f-2bd196cef1a0 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3B4C36D04A1D4A6C8D6F4CAA549E5A7D Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:56:17Z' + - 'Ref A: 4F7ACFC661674CE78C3215D880097799 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:45Z' x-powered-by: - ASP.NET status: @@ -2652,7 +2263,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry list Connection: @@ -2660,389 +2271,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39885' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:17 GMT + - Tue, 24 Mar 2026 05:58:45 GMT expires: - '-1' pragma: @@ -3054,9 +2589,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: F87B171FE5D94ADFBA77EA5922EADC2C Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:56:17Z' + - 'Ref A: 9345A4E3CE3E48C8BDFB65830B2E31A7 Ref B: SJC211051205023 Ref C: 2026-03-24T05:58:46Z' status: code: 200 message: OK @@ -3066,7 +2601,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry list Connection: @@ -3074,28 +2609,26 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6729' + - '1471' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:18 GMT + - Tue, 24 Mar 2026 05:58:46 GMT expires: - '-1' pragma: @@ -3109,9 +2642,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 63323C9F464D4287896BF2BF552AAC69 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:56:18Z' + - 'Ref A: 3F1990142B3743B087D0FAE9F911FDF7 Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:46Z' x-powered-by: - ASP.NET status: @@ -3123,7 +2656,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry show Connection: @@ -3131,389 +2664,313 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:19 GMT + - Tue, 24 Mar 2026 05:58:46 GMT expires: - '-1' pragma: @@ -3525,9 +2982,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 95F4362ECDF147779B7D284BA821A099 Ref B: BN1AA2051013021 Ref C: 2026-09-14T23:56:18Z' + - 'Ref A: 9F5E3DE138D14FF693115EBAFD1CB3E8 Ref B: BY1AA1072316060 Ref C: 2026-03-24T05:58:46Z' status: code: 200 message: OK @@ -3537,7 +2994,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry show Connection: @@ -3545,28 +3002,26 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6729' + - '1471' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:19 GMT + - Tue, 24 Mar 2026 05:58:47 GMT expires: - '-1' pragma: @@ -3580,9 +3035,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5204A01B48E44D519AB81A479D0F7170 Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:56:19Z' + - 'Ref A: 483DC18DF49C4FDAB2CD4D7D2E29ACD8 Ref B: BY1AA1072316042 Ref C: 2026-03-24T05:58:47Z' x-powered-by: - ASP.NET status: @@ -3594,7 +3049,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -3602,389 +3057,313 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:20 GMT + - Tue, 24 Mar 2026 05:58:47 GMT expires: - '-1' pragma: @@ -3996,9 +3375,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 689BBDB0A5BB41E4B890B9C238BD890B Ref B: BN1AA2051014029 Ref C: 2026-09-14T23:56:20Z' + - 'Ref A: 29E9F6AC05A341CDA65C83C50F3C1F87 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:48Z' status: code: 200 message: OK @@ -4008,7 +3387,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -4016,28 +3395,26 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:00.8185407"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:29.1047355"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","username":"acr000003","passwordSecretRef":"acr000003azurecrio-acr000003"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6729' + - '1471' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:20 GMT + - Tue, 24 Mar 2026 05:58:47 GMT expires: - '-1' pragma: @@ -4051,9 +3428,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: FA75433EA9FD4472835EFCDA1709F7EF Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:56:20Z' + - 'Ref A: 0AC04F0F1BC3429D8B5C486D253A3ADD Ref B: BY1AA1072320060 Ref C: 2026-03-24T05:58:48Z' x-powered-by: - ASP.NET status: @@ -4065,7 +3442,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -4075,19 +3452,17 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -4095,7 +3470,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:21 GMT + - Tue, 24 Mar 2026 05:58:48 GMT expires: - '-1' pragma: @@ -4109,13 +3484,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/ca568e13-2d19-4041-978d-e7fadbee22ca + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/e1c4ad97-9b1e-4f9c-b2b9-0febb4a943d9 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: A2C6E649339541C2ABF623882CD05D8D Ref B: BN1AA2051013053 Ref C: 2026-09-14T23:56:21Z' + - 'Ref A: 5793764F5FA04C85ADE202AF0E08DD96 Ref B: SJC211051204017 Ref C: 2026-03-24T05:58:48Z' x-powered-by: - ASP.NET status: @@ -4123,14 +3498,14 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"secrets": [{"name": "acr000003azurecrio-acr000003", - "value": "EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}], + "value": "***"}], "registries": [{"server": "acr000003.azurecr.io", "username": null, "passwordSecretRef": null, "identity": "system"}]}}, "identity": {"type": "SystemAssigned"}}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -4142,8 +3517,7 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -4153,18 +3527,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:56:24 GMT + - Tue, 24 Mar 2026 05:58:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269849252135&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=OHtslxdhY1h287xVl6vCK5-4ojKq8_1mUgPC_y0yxQW6Lr_WqmZ9or4B8wX6u3_qwjwFSVgXXcdXl9pK0_ZSM7qXeyxk69KYOC-AVMxu7d0nQG7br_lcDP6jjQkwlZ33-Z2fneTalc7J8nfUmZ5MmqPZ3G4wpkNOO7vKWNVoRNflKIlm1i_ZEydtN_Tqv67nYxPjB1jEPZ36d101wyswo5ECTGzubuu6f7qGUadc6EhbFX2ooZDqP3Skied-URlzKTSnkX1PM4SppiTxlGaAAcPfFGRVYeYmuHvcwq-aRL_rEEvGCm2un6aCWdjTQl9_ogH4izUE1nQPBa0XhzDRYw&h=xENQ0VBAUrEIbcTDgiJtnrVlx8_hpLCzqou95vAwPyQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI pragma: - no-cache strict-transport-security: @@ -4174,11 +3547,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/76f100bc-811f-46b9-838f-5c8b41fde36c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/46e78443-9d13-4bbb-9805-0521c3c2d385 x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 4F7A14FDDBAF46D3935FE03EE14B3FF1 Ref B: BN1AA2051012009 Ref C: 2026-09-14T23:56:22Z' + - 'Ref A: 4F0D76C7EA6A4F52BB3D5628232DF735 Ref B: BY1AA1072315060 Ref C: 2026-03-24T05:58:49Z' x-powered-by: - ASP.NET status: @@ -4190,7 +3563,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -4198,10 +3571,9 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269849252135&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=OHtslxdhY1h287xVl6vCK5-4ojKq8_1mUgPC_y0yxQW6Lr_WqmZ9or4B8wX6u3_qwjwFSVgXXcdXl9pK0_ZSM7qXeyxk69KYOC-AVMxu7d0nQG7br_lcDP6jjQkwlZ33-Z2fneTalc7J8nfUmZ5MmqPZ3G4wpkNOO7vKWNVoRNflKIlm1i_ZEydtN_Tqv67nYxPjB1jEPZ36d101wyswo5ECTGzubuu6f7qGUadc6EhbFX2ooZDqP3Skied-URlzKTSnkX1PM4SppiTxlGaAAcPfFGRVYeYmuHvcwq-aRL_rEEvGCm2un6aCWdjTQl9_ogH4izUE1nQPBa0XhzDRYw&h=xENQ0VBAUrEIbcTDgiJtnrVlx8_hpLCzqou95vAwPyQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI response: body: string: '' @@ -4209,18 +3581,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:56:24 GMT + - Tue, 24 Mar 2026 05:58:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269854423431&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=GbUXWbnzR72O3m2bDno5LshzgWyx4gZ3JCe5BHRUgfXtDV9d8yq4-VdHINmL4AHgiVcJYD9FJ8BIrIsAtTw059Po5eFyxy21p352vKbKcTOnreYU6_mFpJaSg8o6J4TXdhvG_NuGvtTUL6T_lPk_IzNclDhfMpzb9JYHeuQc4G3zZg_hPzGxwMGFGUtq_DVY3b4sKYejSr5M3HGDakWECnSqGfmi8Y-NuvnvKx_HfkGQaO8Ztr6uc1UceWDfxEPv6ga1zy6FdcmHKY4uG21ZoARFItjTtze_mtwIUJmnZAHJavy6Cr3ZBJzGoQlRXOM6k5FglLbbCdARzCLj3BBD_Q&h=QbxEEGCu8ygIADJilp8zDKEKst6xl1gRwhRhmjZK1iA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287327256198&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=DtETtRBQza5x5JMluIsd2lT-C1jGtqH3MHO4vy__AWGMAXLTuv6a-kJpcoIoEz9WscOUCj0bdM2CzkfBibUkTuzipUxFbgmt6gaRBgjb2-r0kJo0K22iuUGM_Uw6oXJy41MxFTyvbNC6z_hRq82q2f3E1Bd-OZKPI9-sUliiJ-9TT5QfXsJY21k0KPDHrDhgEswUZKrFiFS3Mmzs43Ch0qEeZYXydiLntF9jAkHN01UMddPMPVzh9KQfi0YcusQhV9bCcJGDHqZ3rR3dNW8un91XwEQC7iP5V9Wn01MVqTyw1LjPC1T26JN1HY4na-mLd2Z986NDq2yzaWTtJ0PFSA&h=UvsTp-heqG4otJeuH6EbuT5UgzP7mUKsv-C_tS8Zxss pragma: - no-cache strict-transport-security: @@ -4230,11 +3601,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/b9ac3926-5f97-4882-8f91-f490344a531a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a81dfa03-9ccf-4359-9060-9db59f8b5e27 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 6B10DD9C2A7E411FB7A6C698275AE526 Ref B: BN1AA2051014031 Ref C: 2026-09-14T23:56:25Z' + - 'Ref A: 40C04B66EE3743DDBDB52DD3B7B64826 Ref B: BY1AA1072317052 Ref C: 2026-03-24T05:58:52Z' x-powered-by: - ASP.NET status: @@ -4246,7 +3617,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry set Connection: @@ -4254,28 +3625,26 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/c7210faa-4691-4166-839e-ad78e1b5926c?api-version=2025-07-01&t=639250269849252135&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=OHtslxdhY1h287xVl6vCK5-4ojKq8_1mUgPC_y0yxQW6Lr_WqmZ9or4B8wX6u3_qwjwFSVgXXcdXl9pK0_ZSM7qXeyxk69KYOC-AVMxu7d0nQG7br_lcDP6jjQkwlZ33-Z2fneTalc7J8nfUmZ5MmqPZ3G4wpkNOO7vKWNVoRNflKIlm1i_ZEydtN_Tqv67nYxPjB1jEPZ36d101wyswo5ECTGzubuu6f7qGUadc6EhbFX2ooZDqP3Skied-URlzKTSnkX1PM4SppiTxlGaAAcPfFGRVYeYmuHvcwq-aRL_rEEvGCm2un6aCWdjTQl9_ogH4izUE1nQPBa0XhzDRYw&h=xENQ0VBAUrEIbcTDgiJtnrVlx8_hpLCzqou95vAwPyQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/fe182a8c-9256-4e81-83a2-dc20c0080c6b?api-version=2025-07-01&t=639099287322172443&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=qEmgxUqARWpsl-qhWq5tpjRB-Cvt-O0dCzHNwyx5FpAFaAT0N7V599odME--mKyg7X0sJj3ZFv-n_QdhKYZwblBzj8JJZyvwYkCRG_JQkk4401vFTattJkXPLevlqIP5bayC05fh_Zxwd7DmkNsr7ZGqoq_eLOB_UyRH_9KrscKCitD6XoxMwWlsLy2TU7XDhgwvjqoZXq4zfk_CKX4Dvs6qubwQLopkjLll3EVfMJAJXt8yZuegAf3mRNfozaC4PNgd8cz62e-BSgnRacbC0vOV026M-vyyGxJ089_8ExmSIdh5WdxgOtTjqgzHRMCnIDnHzYf8ym8qKzOahuwA_A&h=YeseIYlYWUbFrYK2ia__7dq7qGfP9TVX8i19KCGjEQI response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:24.0345113"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6788' + - '1530' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:40 GMT + - Tue, 24 Mar 2026 05:59:07 GMT expires: - '-1' pragma: @@ -4289,11 +3658,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/c2f08d3d-5a62-47ae-9bdc-0440a164c11c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/southcentralus/412c232f-34c0-4b87-a885-48c8d390731f x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7E721A4A1F6C4726A83A3B2B54B37B02 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:56:40Z' + - 'Ref A: F106AEBB9399466197A234094714D8A0 Ref B: BY1AA1072317025 Ref C: 2026-03-24T05:59:07Z' x-powered-by: - ASP.NET status: @@ -4304,398 +3673,322 @@ interactions: headers: Accept: - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - containerapp job registry remove - Connection: - - keep-alive - ParameterSetName: - - -g -n --server - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp job registry remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --server + User-Agent: + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:40 GMT + - Tue, 24 Mar 2026 05:59:07 GMT expires: - '-1' pragma: @@ -4707,9 +4000,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A5D8937181FB4F1699CB0567D0117DE5 Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:56:41Z' + - 'Ref A: 8874373CF6364ED4A6D928E68C222395 Ref B: SJC211051205027 Ref C: 2026-03-24T05:59:08Z' status: code: 200 message: OK @@ -4719,7 +4012,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry remove Connection: @@ -4727,28 +4020,26 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:24.0345113"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:51.2172505"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[{"server":"acr000003.azurecr.io","identity":"system"}],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6788' + - '1530' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:41 GMT + - Tue, 24 Mar 2026 05:59:08 GMT expires: - '-1' pragma: @@ -4762,9 +4053,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 080437EF952441589A9DAA41C4F82600 Ref B: BN1AA2051014021 Ref C: 2026-09-14T23:56:41Z' + - 'Ref A: 4BBD7BE8037947428F161BE1BC7D42B1 Ref B: BY1AA1072318029 Ref C: 2026-03-24T05:59:08Z' x-powered-by: - ASP.NET status: @@ -4776,7 +4067,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry remove Connection: @@ -4786,19 +4077,17 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002/listSecrets?api-version=2025-07-01 response: body: - string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}]}' + string: '{"value":[{"name":"acr000003azurecrio-acr000003","value":"***"}]}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: @@ -4806,7 +4095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:42 GMT + - Tue, 24 Mar 2026 05:59:09 GMT expires: - '-1' pragma: @@ -4820,13 +4109,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/2d5456c7-b819-4642-a58f-306575e39984 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/b06d364c-d8ab-4171-87a5-ced62ff994e5 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 01062770D43F4FEC9E08FF4EED2C8168 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:56:42Z' + - 'Ref A: 55DCD26E0B094165992D85DFDA153D77 Ref B: BY1AA1072316025 Ref C: 2026-03-24T05:59:09Z' x-powered-by: - ASP.NET status: @@ -4834,12 +4123,12 @@ interactions: message: OK - request: body: '{"properties": {"configuration": {"registries": [], "secrets": [{"name": - "acr000003azurecrio-acr000003", "value": "EOo1ik5Yvt905hHr8JZGQXjf8OmAqr3Pshtnum5EGpuLMAMAJyAJJQQJ99CIACYeBjFEqg7NAAACAZCRhzbl"}]}}}' + "acr000003azurecrio-acr000003", "value": "***"}]}}}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry remove Connection: @@ -4851,8 +4140,7 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: @@ -4862,18 +4150,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:56:43 GMT + - Tue, 24 Mar 2026 05:59:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270038927157&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=FTnDCCs2cLomtLjQsssyIP2t3RDXdPu8OztbXMKj6udsVDPC8gM_gBuVvpbFrZ25kdSZ9U8hHHXzjq2iJHdVxf5X_umHV_RJxRiEOIh4F7mjT216cLlACkXY-tBpawypJHuH-BXYzgiJG2Clyt2fllBbEIqZ0OqLZVVuBcQbBkYnkb7RkmJb530vkccNebG6ZtnCigWpoBYyT2qVu38VEfTZ-xJ4cXHekMCGYuL_oMPCzO0FadLTOGFgQIEpNe878uJQwfnDLjIRL8pqMqsGjIXw8JTXGO6ZgIxOkr6F8jaLngVp5rDj8w8cVYJbW5Obyuck_--UAuQFTLVvh1kEbw&h=4iOjk-zE5sTi-iKn6Z1xoiasj8gvLFVcLZK87b7Utok + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM pragma: - no-cache strict-transport-security: @@ -4883,11 +4170,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/northeurope/559b6ae4-b522-430b-a84c-44cf967ae171 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/northeurope/c4c74df1-a1ef-4cec-bb76-6ccd5f62469c x-ms-ratelimit-remaining-subscription-resource-requests: - '199' x-msedge-ref: - - 'Ref A: 64F576CC566E44B9B2BBE62861AED7FE Ref B: BN1AA2051013039 Ref C: 2026-09-14T23:56:42Z' + - 'Ref A: 8A8EDB2792AD4D15A19DC21C041680BF Ref B: BY1AA1072320023 Ref C: 2026-03-24T05:59:09Z' x-powered-by: - ASP.NET status: @@ -4899,7 +4186,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry remove Connection: @@ -4907,10 +4194,9 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270038927157&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=FTnDCCs2cLomtLjQsssyIP2t3RDXdPu8OztbXMKj6udsVDPC8gM_gBuVvpbFrZ25kdSZ9U8hHHXzjq2iJHdVxf5X_umHV_RJxRiEOIh4F7mjT216cLlACkXY-tBpawypJHuH-BXYzgiJG2Clyt2fllBbEIqZ0OqLZVVuBcQbBkYnkb7RkmJb530vkccNebG6ZtnCigWpoBYyT2qVu38VEfTZ-xJ4cXHekMCGYuL_oMPCzO0FadLTOGFgQIEpNe878uJQwfnDLjIRL8pqMqsGjIXw8JTXGO6ZgIxOkr6F8jaLngVp5rDj8w8cVYJbW5Obyuck_--UAuQFTLVvh1kEbw&h=4iOjk-zE5sTi-iKn6Z1xoiasj8gvLFVcLZK87b7Utok + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM response: body: string: '' @@ -4918,18 +4204,17 @@ interactions: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:56:44 GMT + - Tue, 24 Mar 2026 05:59:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270043648481&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=KkdxRy49RdnrAROSCCyFmqWMk7fKERGgD4h6BHLbCVJFmBJp0CfCv3Fl6hefKUH78QA4bnYwIUuSrAG9lheij0HGm7rcEe-UeiVyj-nXZm1wFmnCU5aThKWnvqsA9ETG8UDyzyettvFXJS18e76IEOyAGCZL0zhPdoymU8ohnHbVEdu_fB9R3rDCoyQVSo8GlH-dmhoJBaeBeoy07srNQL7MOIZsnOp4xazGyKhIwany6BK9A8C5I2Czi5izNWBjArDKaYh2wVfRUIyi22A-d0FH6UW95ttD-WSFRrDq_YEWWlsJlHGCK9-xEhPNLLBkEggsZJfb9U48GFJmgIXEtg&h=Tdokw0hxgjlYg4ki0RobV_Y2qsqAdBCqi1rW9y-NwF8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287511768055&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=pMi2blXJDErgbE126YwivS3ju2BCeO_rSSG-qvMtikc5G1cMzlYVGkmt-MjxDN6YckUyTVz9eiWWjPhHUCLMhT9xraJ61HtyTtezMT85rNo6T4bkpls9LbKJeXxsC60EmWY6pVCu5fmCkZL9n5HVBkTBL2jIa4KDAVMVtJ8FTMbbm2bN6LD-aQ86c4HuFeQUPIL8BWkWHNyA3ng4bCj9C3b9Waur4F0w3xNK3xfcBbYamQOVJkblxUTch1N65-EA0dfpETib59TVqoeHvTx3u8l5oPnOb6Uj7eyRXIGb7PBuTGLmY3of0RWFnO1eRsDugb-9y8igBAr6D-BuSyouUw&h=Y-aaUB7EIEVRRoSQvo2GH0VNCvdZhKrSavPZFDxirVQ pragma: - no-cache strict-transport-security: @@ -4939,11 +4224,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/60f0c604-6958-42a0-82e2-6bfe5d0c094d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/4a18ab5f-c2ad-4ba8-afcb-db8ddf36b5e9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: A7A7C614E4B1448DB880555052C75077 Ref B: BN1AA2051012051 Ref C: 2026-09-14T23:56:44Z' + - 'Ref A: 3F5722B396484561BC53A0ADD001CC9F Ref B: BY1AA1072315052 Ref C: 2026-03-24T05:59:10Z' x-powered-by: - ASP.NET status: @@ -4955,7 +4240,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry remove Connection: @@ -4963,28 +4248,26 @@ interactions: ParameterSetName: - -g -n --server User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/5f076939-f938-4cbe-bfb4-1ab2b55d6e59?api-version=2025-07-01&t=639250270038927157&c=MIIHlTCCBn2gAwIBAgIRAKGW41M2RjI0CVOmoqSB-m4wDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA4MTExNjExMzFaFw0yNzAyMDYyMjExMzFaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvigfp8xnFdEyjX7UcaSnkmMJzire7o7jwuM8llmlA4goE77vk7AJNsDQzkIf4-dP6Mh1ej2nRONpO4B5SKD9M8nNkkFskjG81JGunwaSeT__vre6EzkO4bnWlcAQI1YSCgF2CbJjFaSsGyS3GLCi0O3Ry3QMNCz54saeEOUmtUJSqChcc-V2cRLpgnqMVE8tgS3uDMMOOa3lLf789fLZhXue86k7XPyJ2KnUEfKmO-MTbricbzKVUpdRVSOVKFzJW2xntD5kxQsl6Wfqwog2GfXQtTKqhn-_PljZCE1O2FQuP4hbcpe2PZFG3skpZ8cEUdgjm6_ynBdRLeQeuUMieQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQU1naC1BnAYv5BD0NWxKOE_Nm9kIswHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS82Mi9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzYyL2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNjIvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAiRvvq19x9MIqxL2i5mlbrz295ZsqnjCFiYPKruX3JBtg9KuALyYCMOCtlbvk-pNjjA3OEfFGNfjX0UyfXGXIcJedAVxtibGR0tLic-7xtJl8cgpadwPvjDzOgNFNmN-gqIU92QnDLUYbHJP30oOiYGEt9wstsxAdA7cNFolcxX9BKjT5O8vgm6_5xs6gc34kvoIYEFmGgekFJMv4xwysZ25mucBpGw9_oK0iaPtuJMyllMCnTq_k4MfNvf577IbC56jthL9U9HwBZOGobqAIWRUOup5q1vRQkTnFqA_ivTxwXRr2yJnh0joBCvus-rA6NIz-gojD4nmF2bSNaiAAAw&s=FTnDCCs2cLomtLjQsssyIP2t3RDXdPu8OztbXMKj6udsVDPC8gM_gBuVvpbFrZ25kdSZ9U8hHHXzjq2iJHdVxf5X_umHV_RJxRiEOIh4F7mjT216cLlACkXY-tBpawypJHuH-BXYzgiJG2Clyt2fllBbEIqZ0OqLZVVuBcQbBkYnkb7RkmJb530vkccNebG6ZtnCigWpoBYyT2qVu38VEfTZ-xJ4cXHekMCGYuL_oMPCzO0FadLTOGFgQIEpNe878uJQwfnDLjIRL8pqMqsGjIXw8JTXGO6ZgIxOkr6F8jaLngVp5rDj8w8cVYJbW5Obyuck_--UAuQFTLVvh1kEbw&h=4iOjk-zE5sTi-iKn6Z1xoiasj8gvLFVcLZK87b7Utok + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappsjobOperationResults/a31c0022-f794-4e8b-bef1-688fed90ca2b?api-version=2025-07-01&t=639099287505281617&c=MIIHlDCCBnygAwIBAgIQCA5PyPHOQRsfYa4whyKpnzANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDMwMzE4MTA0MFoXDTI2MDgzMDAwMTA0MFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNWecz1O7ySoEiRJ6C-JwwtOzHKqquwmBKSxIMiCjZ-YyzCNplfi0Yc317iqi0EwKRwgop6ukwV9CRx0Js23oVZs09wnQZJBpGlQtxQ89ZxuIBrcWvml79erRyZiNIH2R3oIA2VdsYmydqoIqwknqjwng2ju73uOm7C-h3gAZixpoFqK5lGlDuUjkBmTBKzrf53zRGGn2ICPGW3FBNIpfliYKcV3paXqE9jB15mcaQPq-CGIM431imLyfDM-7qoI_7kVXIt-R7Hw7o_WhnmE90Pt7aUvuAuwdKv2r2F-GLOd4UOKHsY72zmIperNGBLFirYbCpk2uk2VZebeBOHXRFAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQExDGW7IED-x6o1FYv9cDRz06tfTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzMyL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMzIvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8zMi9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAcNEp7UIC1XOuqrCopRkHQs3s-xPPpN7ZwOJG2_FEou6kwumdg40HrBTB0qkhtwTJhSOK1iosLOA0-NC794lqvQA_FiOjvf3-x_TtJ13eV5wAM5SMX8mGsM8MB5AHXaNWErf4LuBMCf6Yr7hy8aPp9vW4kQy8Et9IHfm8Nw2Big3stZl_VEroV_7h6uRorc0eziz-Yi3909hsq3SvHFyxGY9n2Bas6Nqosnz0WPZhRUm2U_ujEFc7BAtk6sdBDkx7VgfIniXhIX6u1NwtOwkCh2hLhlggKMk0ZMXwvqP97cBJ_-9DemwdsC4srxFEvnGhsKLqc9jd8yr2TuuWYckAm&s=eRf3xWoEWM41q4Gh0VPhLagGFrMZ7bjaKAhScH7PaxGM5vc8e4xussFaaR6g-OS1QAh2woHzDXXJVDMwrSjMJw_-XueBilXRWHEknMUegfW6XmRqbp7OR-773uHRd0BjbzF7oFZ0QcsK8fpRjdZS9nKz77NCmTB7Q72SUeQ90pDqD9S8_tcm36wqU8aA25z5kyuLq95jSA632GmpcU2nuQtvYBAfYaXzksk53oTmPlzKJzPXm-pJYB4_eavRy1P_KY5fJFQGCKijtj166aLhmn5aHelGgAC7Zkmk9w5Upyu0LEHl8p1rdRX_XjR7uWCSu0v6fnDjWtLszUhWKqx9_w&h=eaJx9d8EAwfClzYdUVqzcvTVvcAPegydiEMbwbXGfAM response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:43.3146201"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6735' + - '1477' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:59 GMT + - Tue, 24 Mar 2026 05:59:26 GMT expires: - '-1' pragma: @@ -4998,11 +4281,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/52efcfaa-c1a0-40e6-8d1a-38ad654263ae + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/aaada086-24c0-41bf-a483-f07ad8046a33 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 3ED33BBED3DB42F39F0DF0F61509564B Ref B: BN1AA2051015021 Ref C: 2026-09-14T23:56:59Z' + - 'Ref A: 6502C8A0333E4A0CA10E97706A2AB769 Ref B: BY1AA1072319054 Ref C: 2026-03-24T05:59:26Z' x-powered-by: - ASP.NET status: @@ -5014,7 +4297,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry list Connection: @@ -5022,389 +4305,313 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["West - US 2","North Europe","East US","East Asia","North Central US","Germany West - Central","Poland Central","Italy North","Switzerland North","Sweden Central","Norway - East","Japan East","Australia East","West Central US","East US 2","West US","Brazil - South","Canada East","France Central","Korea Central","South Africa North","South - Central US","South India","UAE North","UK South","West Europe","West US 3","Canada - Central","Central US","Japan West","Southeast Asia","Spain Central","UK West","Australia - Southeast","Central India","France South","Malaysia West","Indonesia Central","Belgium - Central","Chile Central","Germany North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["West US 2","Southeast - Asia","Sweden Central","Canada Central","West Europe","North Europe","East - US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["North + Central US (Stage)","West US 2","North Europe","East US","East Asia","North + Central US","Germany West Central","Poland Central","Italy North","Switzerland + North","Sweden Central","Norway East","Japan East","Australia East","West + Central US","East US 2","West US","Brazil South","Canada East","France Central","Korea + Central","South Africa North","South Central US","South India","UAE North","UK + South","West Europe","West US 3","Canada Central","Central US","Japan West","Southeast + Asia","Spain Central","UK West","Australia Southeast","Central India","France + South"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["West + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East - Asia","North Central US","West Europe"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["West US - 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","West Central - US","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["West - Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West + SupportsLocation"},{"resourceType":"builders/builds","locations":["North Central + US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland North","UAE North","Canada - East","UK West","Central India","Germany North","New Zealand North","Austria - East","Mexico Central","UAE Central","Chile Central","Korea South","Belgium - Central","Japan West","Australia Southeast","France South","Spain Central","Italy - North","Poland Central","Malaysia West","Indonesia Central","South India"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["West - Europe","East US","East Asia","North Central US","Southeast Asia","Sweden - Central","UK South","West US","Australia East","Australia Southeast","Brazil - South","Canada Central","Canada East","Central India","Central US","East US - 2","France Central","France South","Germany West Central","Indonesia Central","Italy - North","Japan East","Japan West","Korea Central","Malaysia West","North Europe","Norway - East","Poland Central","South Africa North","South Central US","South India","Spain - Central","Switzerland North","Switzerland West","UAE North","UK West","West - Central US","West US 2","West US 3","Belgium Central","Chile Central","Germany - North","Korea South","New Zealand North"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North - Central US","East US","East Asia","West Europe","Southeast Asia","Sweden Central","UK - South","West US","Australia East"],"apiVersions":["2026-03-02-preview","2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["North + Central US (Stage)","West US 2","Southeast Asia","Sweden Central","Canada + Central","West Europe","North Europe","East US","East US 2","East Asia","Australia + East","Germany West Central","Japan East","UK South","West US","Central US","North + Central US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East","Switzerland North","UAE North","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","UK - South","East US 2","Australia East","France Central","Canada Central","Poland - Central","Italy North","Korea Central","Japan East","Japan West","North Central - US","South India","Spain Central","West Central US","West US 2","Southeast - Asia","South Africa North","Central India","South Central US","Brazil South","Central - US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden - Central","UK South","East US 2","Australia East","France Central","Canada - Central","Poland Central","Italy North","Korea Central","Japan East","Japan - West","North Central US","South India","Spain Central","West Central US","West - US 2","Southeast Asia","South Africa North","Central India","South Central - US","Brazil South","Central US","East Asia","West US 3"],"apiVersions":["2026-01-01","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"sandboxGroups","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sandboxGroups/vnetConnections","locations":["Sweden - Central","East Asia","Australia East","North Europe","UK South","Canada Central","Canada - East","Mexico Central","North Central US","West Central US","Central US","West - US 2","Brazil South","France Central","Germany West Central","Japan East","Japan - West","Malaysia West","Indonesia Central","New Zealand North","Austria East","Chile - Central","Korea Central","Norway East","Poland Central","South Africa North","Southeast - Asia","South India","Spain Central","Switzerland North","West US 3","West - US","East US 2","Italy North","Central India","East US","UAE North","South - Central US","UK West","West Europe"],"apiVersions":["2026-02-01-preview"],"defaultApiVersion":"2026-02-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/supportedAgentModels","locations":["Sweden + Central","East US 2","Australia East"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47420' + - '39103' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:56:59 GMT + - Tue, 24 Mar 2026 05:59:26 GMT expires: - '-1' pragma: @@ -5416,9 +4623,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1933372D6C7F4BD3A0D02EE6763DA0D0 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:57:00Z' + - 'Ref A: 9E03BC5C36644528B65F238E361EEF43 Ref B: BY1AA1072318054 Ref C: 2026-03-24T05:59:26Z' status: code: 200 message: OK @@ -5428,7 +4635,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - containerapp job registry list Connection: @@ -5436,28 +4643,26 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) AZURECLI/2.90.0 - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) AZURECLI/2.84.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002?api-version=2025-07-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/jobs/app000002","name":"app000002","type":"Microsoft.App/jobs","location":"East - US","systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:55:39.2342337","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:56:43.3146201"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","outboundIpAddresses":["20.231.246.122","20.231.246.54","20.231.247.19","20.231.246.253","20.241.227.6","20.241.226.169","40.121.19.74","40.121.19.40","40.121.18.62","40.121.18.244","40.121.19.105","40.121.18.246","40.121.18.166","40.121.18.60","40.121.18.21","40.121.18.44","40.121.18.41","40.121.18.248","40.121.18.82","40.121.19.108","40.121.19.125","40.121.18.46","40.117.125.130","40.121.18.52","40.121.18.33","40.121.18.238","40.121.19.2","40.121.19.122","40.121.19.19","40.121.18.114","40.121.18.255","40.121.18.164","40.117.121.106","40.121.18.27","40.121.18.156","40.121.18.117","40.121.18.197","40.121.18.133","40.121.18.112","40.121.18.106","40.121.19.89","40.121.19.83","40.121.18.131","40.121.18.201","40.121.18.170","40.121.18.242","13.92.130.42","40.121.19.42","40.121.18.73","40.121.18.43","51.8.12.17","4.156.180.142","20.242.162.124","52.188.24.146","135.234.194.233","74.179.252.92","20.75.182.233","52.188.26.111","4.157.110.133","20.242.213.7","20.75.223.5","4.246.246.168","20.241.203.96","57.151.24.126","52.191.16.245","40.121.127.182","172.214.71.203","134.33.210.99","48.206.248.192","134.33.210.101","20.253.102.18","172.171.86.142","20.81.104.195","172.214.71.222","48.194.103.129","48.195.188.44","52.186.33.216","52.191.239.15","20.241.246.84","172.214.123.235","128.203.66.61","4.157.233.139","4.246.249.6","20.168.207.180","172.210.105.164","52.142.22.120","52.226.252.104","172.212.65.206","52.249.211.77","52.224.151.170","20.237.50.56","4.246.255.52","52.249.202.205","135.237.72.218","40.76.168.71","134.33.132.247","135.237.61.79","20.241.203.94","52.191.23.227","48.194.102.105","48.202.133.14","51.8.221.179","52.186.34.47","57.151.62.229","20.232.253.10","20.241.205.165","48.194.103.134","48.206.106.48","172.214.2.3","74.179.212.41","128.203.123.4","48.216.135.228","40.76.132.252","4.156.62.147","20.242.133.14","13.92.75.107","48.194.117.106","20.242.218.246","20.185.213.94","135.234.219.180","20.121.253.21","52.255.211.68","135.234.253.122","20.242.238.207","128.203.108.15","74.179.199.219","128.203.106.197","13.92.74.156","52.146.85.169","52.226.196.86","135.234.249.68","134.33.212.222","134.33.213.92","20.237.93.245","40.88.235.179","52.191.23.224","20.253.98.81","40.88.192.71","20.237.24.181","128.203.105.225","74.179.210.187","48.202.212.175","40.88.192.73","172.171.62.28","40.88.233.159","134.33.213.118","51.8.239.21","135.234.219.223","4.156.119.224","52.146.85.168","52.191.94.237","51.8.239.129","135.234.219.80","20.88.185.204","57.151.62.77","134.33.212.186","48.206.106.49","74.179.198.240","52.186.34.57","48.194.54.148","20.127.248.50","20.241.171.30","20.241.172.248","20.241.172.250","20.246.203.138","20.246.203.140","13.82.216.169","13.82.216.172","13.82.216.149","52.170.33.171","20.169.229.88","20.169.229.46","20.169.229.29","20.169.229.38","20.169.229.62","20.169.229.109","20.169.229.92","20.169.229.27","20.169.229.51","20.169.229.42","48.216.192.198","40.90.243.232","40.90.242.126","135.237.112.47","51.8.74.190","4.157.197.142","172.210.91.191","172.210.90.42","40.90.243.227","40.90.243.72","52.234.235.220","57.152.55.92","172.212.36.156","172.210.121.45","172.214.2.208","51.8.15.68","172.210.90.119","134.33.213.81","128.203.83.220","20.241.192.93","172.212.121.150","172.171.186.158","52.249.213.152","74.179.213.114","4.246.239.152","4.156.216.65","4.157.231.174","172.171.168.136","20.185.213.14","135.237.23.77","20.75.154.200","20.121.176.173","52.188.183.58","52.226.222.18","52.170.171.70","52.152.194.127","20.242.207.230","52.224.224.85","52.224.187.13","20.253.99.205","48.216.151.10","20.237.38.135","20.62.141.31","51.8.47.218","104.45.171.209","20.231.232.154","57.152.2.80","135.237.11.87","57.151.46.244","172.212.15.63","74.179.244.93","4.156.59.40","4.156.59.85","48.216.148.42","134.33.255.190","51.8.225.81","135.237.10.218","48.216.155.49","172.214.119.100","48.194.103.86","172.171.52.9","20.232.216.204","57.152.80.247","20.237.45.193","74.179.184.211","52.142.22.78","172.212.53.114","172.212.65.70","20.241.193.184","20.241.211.237","20.121.103.252","20.241.183.150","20.168.206.195","20.242.232.14","57.152.50.21","48.194.31.204","52.186.33.225","20.242.139.243","52.224.72.149","20.242.230.200","52.224.140.98","48.194.18.18","20.102.0.242","20.81.112.111","20.121.246.203","20.81.50.198","52.226.147.213","172.171.182.143","57.152.79.75","135.237.57.10","48.202.133.118","48.194.18.110","172.171.87.168","51.8.52.86","20.253.97.235","40.121.120.116","52.249.209.201","52.234.160.205","40.121.120.76","172.171.128.9","20.241.171.60","20.246.146.125","20.253.117.162","52.186.33.238","48.195.175.75","20.253.113.195","52.224.28.121","52.146.82.53","4.255.110.46","20.253.97.234","172.210.99.147","20.246.147.115","20.237.104.246","48.206.106.61","52.191.23.220","104.45.170.18","48.194.42.110","135.237.59.73","135.237.110.0","20.242.218.239","51.8.47.223","57.152.79.158","135.237.44.220","134.33.211.216","135.234.159.160","20.253.119.252","20.185.212.210","48.194.103.131","135.234.216.9","52.191.201.41","52.186.102.222","52.188.137.180","4.255.111.148","51.8.225.189","172.212.121.239","20.232.61.25","172.171.146.138","52.226.230.169","52.224.141.126","48.206.105.102","52.226.247.167"],"configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"2e1f3ad4-c408-47a4-8ac2-4987c0e1444b","tenantId":"4f00b3b6-2940-4f2c-b037-94637c180d30"}}' + US","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:09.778411","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:59:10.0906272"},"properties":{"provisioningState":"Succeeded","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus/providers/Microsoft.App/managedEnvironments/env-eastus","workloadProfileName":"Consumption","configuration":{"secrets":[{"name":"acr000003azurecrio-acr000003"}],"triggerType":"Manual","replicaTimeout":200,"replicaRetryLimit":2,"manualTriggerConfig":{"replicaCompletionCount":1,"parallelism":1},"scheduleTriggerConfig":null,"eventTriggerConfig":null,"registries":[],"identitySettings":[],"dapr":null},"template":{"containers":[{"image":"mcr.microsoft.com/k8se/quickstart-jobs:latest","name":"app000002","resources":{"cpu":0.25,"memory":"0.5Gi"}}],"initContainers":null,"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/app000002/eventstream"},"identity":{"type":"SystemAssigned","principalId":"d994c946-c834-483f-9e90-7f0b6e447284","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, - 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01, - 2026-03-02-preview, 2026-07-01 + 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '6735' + - '1477' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:57:00 GMT + - Tue, 24 Mar 2026 05:59:27 GMT expires: - '-1' pragma: @@ -5471,9 +4676,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1B825FA663CD42A7A845B66CD171F295 Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:57:00Z' + - 'Ref A: 3CA920F256DE4A6B8C325E2C8BEA6282 Ref B: BY1AA1072316052 Ref C: 2026-03-24T05:59:27Z' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml index 88f5d4f0d1f..112678c4913 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource create Connection: @@ -13,8 +13,7 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -26,185 +25,158 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '24795' + - '21796' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:35:16 GMT + - Fri, 25 Apr 2025 09:46:36 GMT expires: - '-1' pragma: @@ -216,9 +188,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 9E54E434B3394995B46DD3C8D248455C Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:35:17Z' + - 'Ref A: 14D668AA37F34CC99A069C2760C81EAE Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' status: code: 200 message: OK @@ -229,7 +201,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource create Connection: @@ -241,24 +213,23 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A35%3A19.4015376Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A46%3A40.4548437Z''\"","properties":{"provisioningState":"Provisioning","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","securitySettings":{"multiUserAuthorization":"Invalid","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257199743373&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=HH_IQLe_es17NScfZw4lsksK-vSA5fHb6iIhT_8cYcrWqXmgzn44FB_qPZPGByx6-NcbCJcpdGrb3XxVCwMeEGsBb14KBagFJNLkK9EsnwtvrbzYeCsa9hnv9aNsB-1F3p24-8aUgmmJtAnu_bHCwMFDvBBWVXXbbvuZqW3cZ-15dLknBnCVRTjtPPhDe-HOsu9GfmvtcKgxcga9variVaqJ_LCf7HvByKxCOnUIlHhD4YJYKTlnt1j8x9qXkvk1JnXkeXK0A0vca_zbSl3AwVKo9i64t8fpgJrnThxw-oIjegOU0AA8jvU8zdWCnihYUJZzTnh1mtQEwAIN70B-qQ&h=xaP7V6Zvv-MI50b0UiJVgqIFD9lJKG_1g-62h9308eg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 cache-control: - no-cache content-length: - - '1029' + - '854' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:35:19 GMT + - Fri, 25 Apr 2025 09:46:39 GMT expires: - '-1' pragma: @@ -270,11 +241,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/58bf99a9-9cbb-4ce7-a681-6480ca665b40 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/612f6a2c-e464-4fcb-9b7c-63e8002da5ea x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' x-msedge-ref: - - 'Ref A: 9506CEA757484A08BEE9BFF9B6D0AF46 Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:35:17Z' + - 'Ref A: 4E6BB32AB61D41C0BC89F502B449B87E Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:37Z' status: code: 201 message: Created @@ -284,7 +255,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource create Connection: @@ -292,18 +263,17 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257199743373&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=HH_IQLe_es17NScfZw4lsksK-vSA5fHb6iIhT_8cYcrWqXmgzn44FB_qPZPGByx6-NcbCJcpdGrb3XxVCwMeEGsBb14KBagFJNLkK9EsnwtvrbzYeCsa9hnv9aNsB-1F3p24-8aUgmmJtAnu_bHCwMFDvBBWVXXbbvuZqW3cZ-15dLknBnCVRTjtPPhDe-HOsu9GfmvtcKgxcga9variVaqJ_LCf7HvByKxCOnUIlHhD4YJYKTlnt1j8x9qXkvk1JnXkeXK0A0vca_zbSl3AwVKo9i64t8fpgJrnThxw-oIjegOU0AA8jvU8zdWCnihYUJZzTnh1mtQEwAIN70B-qQ&h=xaP7V6Zvv-MI50b0UiJVgqIFD9lJKG_1g-62h9308eg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n - \ \"name\": \"MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n \ \"status\": \"InProgress\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257208451616&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=L5dI5nk-4WO9GaSDE942xtl3RAtK18ubLEs-6OHsPDORckxWVwuasCxTl9F16JEZeVyWOhUz37Ssrzk9oxtXEBfyyQ13mj7iEDczRFq18boBENGktU6RuyJC4gBmHyYAKE7QK_XfLCT86xgE17KIDbECtPXhVO_3MbBlykUnx20kJlJp86Nv0rk0IAbtRKXzKcGRU8IQ39q9NtnhBCLqbg7KmJuh9a8-Qugbgc43tdQpinaTJZOcOtqdsWHDG4FkcMIe9IbVfp5EL3y1IcNbW1tYa11fmRaRs4naFmxoors2RlW6XtvT3b1tPjhCZXTCsmYVM1Uo1pm_3eig2OdNcg&h=kqFte_Mmn-Qw7mZ5AD7oc6ynIGpFhIN1slfTXdbN9II + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=2zlUjXyHWtAPTdhqW49DgbFj19nbk9feW1Dh7Dp6svWzzuoAgAnhjKGpiHxdjhjMNt4BhNDdI-XvV5rTn22jw5j0K5IuoXu8W2o5W9K01bbZ2PztIUILTQFh8eUYVorXzzpguoNjPJoYVoE6bIBYUbMybV2a9CWfYl9moAfCV-r4RMtl6vEFR8bZJ0mYHTb_XJmRBbzQmO1ZzKepXj8QKg-NzUXxeJB5dmbOZSLeP9YBGsTp4h3bXpsHdCfnd6bM-_UI3CmuEuQ5FtQkxvZtAZHBLOGhR7ly1rU0yxQJ45kW34TBb6_l3Ifz5bI-G75paduolswbv63azBcPaEdpug&h=McwwVis7Zsva-Yil-eN0EHJzXYcGpCxIbxW_GNcZ_w4 cache-control: - no-cache content-length: @@ -311,11 +281,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:35:19 GMT + - Fri, 25 Apr 2025 09:46:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257208607852&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=UVMDb0ed38kdOr8YwaijLjA6p46iiDjYW1kV9VmC4d6g5fjBRQ-fitDw1m0UP6gF1DCXHl5ucGQUSZzrn3jGbXBIXl_3vECjgOjEuBdQ24zBd4ArhSkxoVYRcbRqs1Kkwlh2P_IwcYaIXZSEPJu10-ZW6GxGKT2fv43Sy8izxd-CS5HuCIrZ2JVvDFsHmZYN1S7xWR7QMzYBTwXMYSEWeey6sdB3wpw6lZzJZnOV6rBH0CyzlkUfvIQjTp9R_nA5B7yWEWreS2HsflcF0hT4-qwHoJLJ2O2DG65StYjJv4GxPe9yYB-UH1NImmF-FBj10P-ZFf2njo1ItvDqSUVenA&h=0HcZMkbQkP_M6rmmIs56E1l3oOrjXOi3wHznDkPd97I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712016508010&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=oAThIfmeJGp6mtK3Lby8ZpBGkH42KUrPX7Lbf-NMjstji4EE75XMiFab7VDChvfyw5pUls5uVg7tXY4QCpwp0MOYd-Yyjp-SNUbT65fDGUGIwBKGOiX925M1CyCgj4hQ0zm5PHGkXSLM6jculZAUc2T4I_JRPRprbHlR3_wGQMNVE8b27Nr0S6M243qCX-c4pu030ZsTTLL8B62Cb4fAxbZUZngDyXD6DImfNroox_XmW0WQDv1ck5nnZW3b1gp27SI8tHBI9V5GlTXaoA2uJw3GIXIffiXhlshlGuBjWMRgNwmE24Ewg1skL7ij6fG1xIFc_5_yUGUl8NZJjqYjpg&h=c4yFJvTp9RvgrTuYZftjBbEp9E6BEHcKeHTEmp79-pA pragma: - no-cache strict-transport-security: @@ -325,11 +295,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/d8f7a7e7-866f-471c-9df7-af45774bf301 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/bbf057af-330e-47b4-8bd7-bfc1d6d2a347 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 06433AF4BFA8404193116EF5F17A8F1B Ref B: BN1AA2051015017 Ref C: 2026-09-14T23:35:20Z' + - 'Ref A: 3DF9534822984AE1840E2174BF76141D Ref B: SEL221051504021 Ref C: 2025-04-25T09:46:40Z' status: code: 200 message: OK @@ -339,7 +309,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource create Connection: @@ -347,14 +317,13 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=?api-version=2026-07-01&t=639250257199743373&c=MIIHlDCCBnygAwIBAgIQfT1i8kvhfoEiJowKzJPkqjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDgxMTE2MDkzMFoXDTI3MDIwNjIyMDkzMFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxd12mc8IQQmAFdTvFzsb5ZWMRl3GqNfiZohC1r_3u2BjZbyYlQLsy-6EDN6Omve3virp1Fy-Q42KrIz5VNhPu7SQyVKnPhXmluUUAiYzxY0G6k-pqoH0kng2xeLvCmz1mcwGGDzGQF_34NaJ83kUQFJUhJhQQ-hlXeALVUYJNLJ1UqxKUdTo_w5vxH1TxfprKs669Ykx_EPQSMHHutYEeJDBiW5d9PH8P_axXmkEHWcVLCoMEk8OYn3gzFhRP0eExTIH_S7Kyi_V8gbeBMwchl5PgS3EdlOdG296Omg5gZFpEtF_ja1yfWzGri7P_dZYTyU3soCb1aOGG0VDWoTuxAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRxntewVQ24gx9RQn28Ocnz1BSdGTAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQA1qcO5loUY-uNe5bLwqVdOyEGCAkkDfD3nrjc7Qobnrr7NQug06nRSQUmsiN7CvJBULrJpt--kbOeDmJ0-le5CzhJ5iHa78XpMs0nK4eD6acpJFy4jI9e_MBVYztdXAyGdDrHt8s5qFTP07UM0F36ScqAKaEna9wlBk0QbdZaISlBD6mGrTHiGtV3WK0KcwAsXSJ8mM7riRsqK3ajqDA7SoSDg27fpFv4uWoX3OZFlf1w_66y20DsfbDWvcdXrZGWDtqwBjIrTzlIBVDI3Q_bgm9rVczhu1AqohQCtPq6cNDL5LS4IhHkA-RVQK0xu5Qol3dQkSSYh14i_vmf8czre&s=HH_IQLe_es17NScfZw4lsksK-vSA5fHb6iIhT_8cYcrWqXmgzn44FB_qPZPGByx6-NcbCJcpdGrb3XxVCwMeEGsBb14KBagFJNLkK9EsnwtvrbzYeCsa9hnv9aNsB-1F3p24-8aUgmmJtAnu_bHCwMFDvBBWVXXbbvuZqW3cZ-15dLknBnCVRTjtPPhDe-HOsu9GfmvtcKgxcga9variVaqJ_LCf7HvByKxCOnUIlHhD4YJYKTlnt1j8x9qXkvk1JnXkeXK0A0vca_zbSl3AwVKo9i64t8fpgJrnThxw-oIjegOU0AA8jvU8zdWCnihYUJZzTnh1mtQEwAIN70B-qQ&h=xaP7V6Zvv-MI50b0UiJVgqIFD9lJKG_1g-62h9308eg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=?api-version=2025-02-01&t=638811712007754818&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=QaX9vYrNPAdbfLXfYvk0PbV60od4HnEegluhIJ4c7578MxmTB5E1IaI6Ir6A3Y_4lNuwocS6fUlTHAkC8zlo660LNqEEJDqVJb1Lrj2N7Lr2kDi3VPcMtF648cVM68Vv5sP9PtO--aCQ4qmn0LJYIq3Aa7yy7mcB9b058qyJClNGAzZT3Ygap53MN_nyl3gM1qGPA91WB0L0eveQdumtt8y2ATt0y7qIuhQgM0_UtNVnInt-TnGNK6Yj3D5iy8QmqSe589-KNcLzcXP9jVQ_PO-WqVdTYZZkaCzNsudKPaOAufx5NxMFsbDO80KshOapOSaoG-FFtT-hB3QRUrp-5A&h=R7m-O_8A32sIi-PiDyUtryqZV1KQzmdcbom31ywJ1I0 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n - \ \"name\": \"MjA0NztkNmZmOTVkNy1iOWI1LTQ2YzMtYTM2OC1iN2FkODY2ODIxNzU=\",\r\n + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n + \ \"name\": \"MjA0NzswM2E3ZWRmYi00NDBiLTQ2MGItYjUxOC0wZjhiOThiZWVkNzc=\",\r\n \ \"status\": \"Succeeded\"\r\n}" headers: cache-control: @@ -364,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:20 GMT + - Fri, 25 Apr 2025 09:47:41 GMT expires: - '-1' pragma: @@ -376,11 +345,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/b32fb640-8f41-4028-800b-7dfb610f6d17 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/81c94ae3-b2ff-4707-b911-25038615fc05 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1907F3F1E7414A85B8D76E6FC3C7A7E1 Ref B: BN1AA2051013011 Ref C: 2026-09-14T23:36:21Z' + - 'Ref A: 7170097FDA494F73AD92F49BDF7463EC Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:41Z' status: code: 200 message: OK @@ -390,7 +359,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource create Connection: @@ -398,22 +367,21 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A20.1749971Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1063' + - '1010' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:21 GMT + - Fri, 25 Apr 2025 09:47:42 GMT expires: - '-1' pragma: @@ -425,9 +393,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 1F53D73D7B034129B10C299B14FFBFD9 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:36:21Z' + - 'Ref A: 035D54B3255E499881922D63869FAB24 Ref B: SEL221051504021 Ref C: 2025-04-25T09:47:42Z' status: code: 200 message: OK @@ -437,7 +405,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -445,8 +413,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -458,185 +425,158 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '24795' + - '21796' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:22 GMT + - Fri, 25 Apr 2025 09:47:44 GMT expires: - '-1' pragma: @@ -648,9 +588,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 460BA91FFDB14B67A4961C26240562FE Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:36:22Z' + - 'Ref A: C8CC86C422754D2E85AACB3BE44C3600 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:44Z' status: code: 200 message: OK @@ -660,7 +600,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -668,22 +608,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A20.1749971Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A41.0305747Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1063' + - '1010' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:22 GMT + - Fri, 25 Apr 2025 09:47:45 GMT expires: - '-1' pragma: @@ -695,9 +634,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B96F7C6F5E3145DBB425B5A907D8BD98 Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:36:23Z' + - 'Ref A: 1BC9E2B39D9245B4AC12CE4512CEB381 Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' status: code: 200 message: OK @@ -707,7 +646,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -719,22 +658,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A24.246473Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1089' + - '1036' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:24 GMT + - Fri, 25 Apr 2025 09:47:48 GMT expires: - '-1' pragma: @@ -746,11 +684,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/644049ba-694c-4d42-9d67-f526df348431 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/742d6299-3fda-4c5a-8cd6-3219cb597f5d x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' x-msedge-ref: - - 'Ref A: 35835D77DEA649A49DD7DDDC1FD1601F Ref B: BN1AA2051012053 Ref C: 2026-09-14T23:36:23Z' + - 'Ref A: BC2ABC64EC3D4A709A14A9CF271DD72A Ref B: SEL221051801027 Ref C: 2025-04-25T09:47:45Z' status: code: 200 message: OK @@ -760,7 +698,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -768,8 +706,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -781,185 +718,158 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '24795' + - '21796' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:24 GMT + - Fri, 25 Apr 2025 09:47:49 GMT expires: - '-1' pragma: @@ -971,9 +881,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 2F88214414F24E169A1704388F392FE4 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:36:24Z' + - 'Ref A: EAF88A5759614A35B5FE3F9D33A13C64 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' status: code: 200 message: OK @@ -983,7 +893,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -991,22 +901,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A24.246473Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A48.213625Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1089' + - '1036' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:24 GMT + - Fri, 25 Apr 2025 09:47:50 GMT expires: - '-1' pragma: @@ -1018,9 +927,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 5636AA8DD61B42928F984BC72DA4ADF5 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:36:24Z' + - 'Ref A: 2FF7CDBE9BA54C8D8650ABCD6AF4CBDE Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:50Z' status: code: 200 message: OK @@ -1030,7 +939,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -1042,22 +951,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A25.8911658Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1073' + - '1019' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:25 GMT + - Fri, 25 Apr 2025 09:47:54 GMT expires: - '-1' pragma: @@ -1069,11 +977,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/f8fd4f7c-d6a6-44fe-bf3d-4d7aabc6b57c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a4a7e56f-0fb1-4688-a6e2-c38e6854950d x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' x-msedge-ref: - - 'Ref A: 006DF2FCE5024EE59A17F7226F7002DF Ref B: BN1AA2051012025 Ref C: 2026-09-14T23:36:25Z' + - 'Ref A: CC58CC95D28E42E2AC5D7976BB206190 Ref B: SEL221051803021 Ref C: 2025-04-25T09:47:51Z' status: code: 200 message: OK @@ -1083,7 +991,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -1091,13 +999,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2026-09-14T23:35:15Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_tag_update_by_patch","date":"2025-04-25T09:46:33Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1106,7 +1013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:25 GMT + - Fri, 25 Apr 2025 09:47:54 GMT expires: - '-1' pragma: @@ -1118,9 +1025,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: CF5510980F0D49B4B8ACF0FFDDBDD50D Ref B: BN1AA2051015031 Ref C: 2026-09-14T23:36:26Z' + - 'Ref A: 82A00F91D7F44BB18BB3525F8E8419E2 Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' status: code: 200 message: OK @@ -1130,7 +1037,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -1142,8 +1049,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: @@ -1157,7 +1063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:27 GMT + - Fri, 25 Apr 2025 09:47:58 GMT expires: - '-1' pragma: @@ -1169,51 +1075,52 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 46F31577496C46B5B72D7879D8D77459 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:36:26Z' + - 'Ref A: 34E404966CEF472EA92E9DFD507E2DFD Ref B: SEL221051801049 Ref C: 2025-04-25T09:47:55Z' status: code: 200 message: OK - request: body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"adminUserEnabled": - false}}' + false, "anonymousPullEnabled": false}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr create Connection: - keep-alive Content-Length: - - '94' + - '125' Content-Type: - application/json ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:29.2980343+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:29.2980343+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-14T23:36:29.2980343Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546068+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546506+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2025-03-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk cache-control: - no-cache content-length: - - '1715' + - '1499' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:30 GMT + - Fri, 25 Apr 2025 09:48:14 GMT expires: - '-1' pragma: @@ -1225,13 +1132,113 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/5e513f73-5217-46f0-b74b-0fec431fffa9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f70e4cc0-badd-4f28-882f-df43beffd4c9 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '800' + x-msedge-ref: + - 'Ref A: 4877C4F6775846EB9A76F6C528485FB7 Ref B: SEL221051503047 Ref C: 2025-04-25T09:47:59Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk + response: + body: + string: '{"status":"Succeeded"}' + headers: + api-supported-versions: + - 2025-03-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712960276721&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=3zeGk9stkwpg3-ppqYbu6bel9pbacXlOCJg96HPmtutzmgoCKelGq61Pcb1PDMGKJd21_FUyjkbrcoxyoc0tuuxx8QXcHKrJ7KYFIIyoAgRg6T-XGswAUJg4uSyFLBUbJrRkreHiQjhf0iCCvxaYZwrCAj6EMohm6RUjy3-u3DTPux0Egh-k2PmKzIuR2M9QjBmyvxBu8h3eA3MxY79JJD7FRb7m1NxZhLD4zCktaKtxb2xvTOGQBM3LzDKt5Q2NPXNiXVkPLtWmf8PZBLoklw4qSvUH2TvES-K3uslNHVFTFyx1B9LmasD_Lfu3IvZQ_93UxqtAy8FhBu7LIc57Ng&h=A8h3BkyhdqBQJDgyQo0Ku2W95H8ZkbtU_iG0rvI4ao0 + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/8be659ca-2e02-40d4-ab8a-7c10f7296cb3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 670E002249964473B58CBFC8A85BEAA6 Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:15Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + response: + body: + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + headers: + api-supported-versions: + - 2025-03-01-preview + cache-control: + - no-cache + content-length: + - '1500' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 282E85F1824F444A8BB1537F23461325 Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:36:28Z' + - 'Ref A: 461D93259576462D9DBF8E7E7DCCDB6F Ref B: SEL221051503047 Ref C: 2025-04-25T09:48:16Z' status: code: 200 message: OK @@ -1241,7 +1248,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr webhook create Connection: @@ -1249,22 +1256,30 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:29.2980343Z","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:29.2980343Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/huanglitestcanary","name":"huanglitestcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg1","name":"huanwucanaryreg1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/agentpool/providers/Microsoft.ContainerRegistry/registries/agentpoolcanary2","name":"agentpoolcanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwucanaryreg2","name":"huanwucanaryreg2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwueastus2euap/providers/Microsoft.ContainerRegistry/registries/huanwueastus2euap01","name":"huanwueastus2euap01","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ctest/providers/Microsoft.ContainerRegistry/registries/cidregistry","name":"cidregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-04-27T17:47:38.6648741Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-04-27T17:48:14.204558Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msearch/providers/Microsoft.ContainerRegistry/registries/msearch1","name":"msearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-17T20:22:10.5860463Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-17T20:22:10.5860463Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/ACRSoftDelete","name":"ACRSoftDelete","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-25T14:52:27.3960954Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-20T18:52:05.6107964Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Hustroud_Canary_RG/providers/Microsoft.ContainerRegistry/registries/HustroudRealCanary","name":"HustroudRealCanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-18T17:44:09.5117757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-19T15:45:02.6902047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch","name":"johshacrmetadatasearch","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:10:10.212306Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:10:10.212306Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ptcBrownbag","name":"ptcBrownbag","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T15:58:17.8406846Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T15:58:17.8406846Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshacrmetadatasearch/providers/Microsoft.ContainerRegistry/registries/johshacrmetadatasearch1","name":"johshacrmetadatasearch1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-23T04:56:17.811156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T04:56:17.811156Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadataUnitTest","name":"metadataUnitTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-12T17:24:53.9169276Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-12T21:12:45.4115208Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/metadatatestregistry","name":"metadatatestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-04-18T18:27:11.2513411Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-04-18T18:27:11.2513411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/wus2test","name":"wus2test","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-24T23:10:32.9424682Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-24T23:10:32.9424682Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/ContainerRegistryMetrics","name":"ContainerRegistryMetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"87d7f6ef-5c58-4f3b-af9c-0cf7c6feee31","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-04T16:26:03.6327251Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-30T19:48:51.5345767Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wju/providers/Microsoft.ContainerRegistry/registries/wjutasktest","name":"wjutasktest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-17T04:46:48.6292944Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-17T04:46:48.6292944Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arc-demo-backup/providers/Microsoft.ContainerRegistry/registries/arcdemobackupregistry","name":"arcdemobackupregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-25T16:42:21.3555381Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-25T16:45:58.9778337Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cav2-e2e-loadtest/providers/Microsoft.ContainerRegistry/registries/cav2e2e","name":"cav2e2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-28T01:05:19.8384666Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-28T01:05:19.8384666Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cabarker/providers/Microsoft.ContainerRegistry/registries/devcabarker","name":"devcabarker","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-10T21:18:26.7436104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-10T21:18:26.7436104Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-acr23oct24cp4/providers/Microsoft.ContainerRegistry/registries/acr23oct24cp4","name":"acr23oct24cp4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-23T00:21:35.2239266Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-23T00:21:35.2239266Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-bcdr-testing/providers/Microsoft.ContainerRegistry/registries/acrbcdrcanary","name":"acrbcdrcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T19:03:56.0674605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T19:03:56.0674605Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest21feb25/providers/Microsoft.ContainerRegistry/registries/khallcmktest21feb25cr","name":"khallcmktest21feb25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"a6494d55-348c-4a6b-b0bf-86e66b3b1c34","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest21feb25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest21feb25":{"principalId":"33e30c7c-2af5-47c3-b727-c300612a6bd3","clientId":"d9d9a689-7762-4854-8ab1-5e80c6cbd318"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:30:43.9875765Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:27:28.123178Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/zoeyclitestacr","name":"zoeyclitestacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-01T00:53:21.8364822Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-01T00:53:21.8364822Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistry","name":"jumboregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-07T19:33:43.6103413Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-28T18:08:23.8862902Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistryperformancetesting/providers/Microsoft.ContainerRegistry/registries/jumboregistryv2","name":"jumboregistryv2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jumboregistryperformancetesting/providers/Microsoft.ManagedIdentity/userAssignedIdentities/brethompsonmanagedidentity":{"principalId":"b3243b85-a301-4be0-9121-1e31d15c7e12","clientId":"391a511e-0212-4520-b49f-fd01fc77f01e"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-26T18:27:08.098728Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-26T18:46:43.1105234Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jumboregistrytest/providers/Microsoft.ContainerRegistry/registries/jumboregistrytest","name":"jumboregistrytest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-16T16:26:43.942495Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-21T22:02:05.7559949Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry60tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry60tb","name":"jumboregistry60tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-26T23:36:59.9432804Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-26T23:36:59.9432804Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry40tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry40tb","name":"jumboregistry40tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-15T23:21:22.6561217Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-15T23:21:22.6561217Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/helmdemo/providers/Microsoft.ContainerRegistry/registries/helmdemo","name":"helmdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/TELEPORTCAPSTEST","name":"TELEPORTCAPSTEST","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-12T23:27:12.0941403Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-12T23:28:06.1559209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/teleportmetricstest","name":"teleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-10T00:23:36.0112689Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-30T00:48:30.8799876Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CanaryTesting/providers/Microsoft.ContainerRegistry/registries/Testing2","name":"Testing2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T23:22:51.5381198Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T23:24:37.9845219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resh-rg/providers/Microsoft.ContainerRegistry/registries/allaboutacrmetrics","name":"allaboutacrmetrics","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-03-03T17:33:34.0668762Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-01T23:30:31.3238267Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/teleport-testing-prod/providers/Microsoft.ContainerRegistry/registries/dpteleportmetricstest","name":"dpteleportmetricstest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-22T22:25:33.9482191Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-22T22:25:33.9482191Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/johshtokensandscopemaps/providers/Microsoft.ContainerRegistry/registries/johshtokensandscopemaps","name":"johshtokensandscopemaps","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-07T23:00:35.3714024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-07T23:00:35.3714024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-acr-0425/providers/Microsoft.ContainerRegistry/registries/joshbaunachcr0425","name":"joshbaunachcr0425","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-25T21:22:22.9789133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-25T21:23:46.6667423Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zaihaotest/providers/Microsoft.ContainerRegistry/registries/yzhonpremtest","name":"yzhonpremtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T04:47:53.6558862Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T04:47:53.6558862Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-avtakkar-test/providers/Microsoft.ContainerRegistry/registries/avtakkarcuseuap","name":"avtakkarcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-14T20:31:16.8985248Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T17:27:33.1500508Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jasminetest/providers/Microsoft.ContainerRegistry/registries/jtcuseuap","name":"jtcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-22T02:10:13.641539Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-22T02:10:13.641539Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteventrivy","name":"transteventrivy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"australiaeast","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-30T21:34:16.8134465Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-30T21:34:16.8134465Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl","name":"transtevendnl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-05T23:54:28.5278572Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-05T23:54:28.5278572Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transteveneg","name":"transteveneg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-10T03:14:23.9929123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-10T03:14:23.9929123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl3","name":"transtevendnl3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-16T23:41:13.5929237Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-16T23:41:13.5929237Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnl4","name":"transtevendnl4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"jioindiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-17T23:09:08.7328512Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-17T23:09:08.7328512Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/khallcmksitest/providers/Microsoft.ContainerRegistry/registries/khallcmksitestcr","name":"khallcmksitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"principalId":"ed54f96d-dcec-4858-8961-c187ef371ea1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest":{"principalId":"4ef86bc3-acd0-4d8f-ac7f-0fb89ee9dd9c","clientId":"714c506c-c785-4137-91d1-6b30d94ba869"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/khallcmksitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-mi-khallcmksitest2":{"principalId":"b8fe8636-2dd5-433a-ac06-9844b015200f","clientId":"e11be5d2-ef82-478f-a47e-3a11e74420db"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T18:40:25.1585115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-hallcssitest/providers/Microsoft.ContainerRegistry/registries/hallcssitestcr","name":"hallcssitestcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T02:45:10.4252719Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T02:45:10.4252719Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcstest21feb/providers/Microsoft.ContainerRegistry/registries/khallcstest21febcr","name":"khallcstest21febcr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcstest21feb/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcstest21feb":{"principalId":"55ff7d39-c75c-477c-9ad3-f8498a796069","clientId":"4ad31b06-31e7-4e12-b3d4-1b50dcb308a8"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T14:44:11.7684838Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T14:44:11.7684838Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencopa","name":"transtevencopa","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T22:08:27.2769645Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T22:08:27.2769645Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevencsscbugbash","name":"transtevencsscbugbash","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-07T00:09:08.1470686Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-07T00:09:08.1470686Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/transteven/providers/Microsoft.ContainerRegistry/registries/transtevendnltest","name":"transtevendnltest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T23:47:19.0980968Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T23:47:19.0980968Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyindexingcheck","name":"esreyindexingcheck","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-03T22:48:02.6111531Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-03T22:48:02.6111531Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/esrey-dev-scratch/providers/Microsoft.ContainerRegistry/registries/esreyptc","name":"esreyptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T19:14:18.4005356Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T19:14:18.4005356Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegbatestuksouth/providers/Microsoft.ContainerRegistry/registries/mabelcruksouth","name":"mabelcruksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:24:24.9406258Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:24:24.9406258Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangliregor1/providers/Microsoft.ContainerRegistry/registries/huangliregor1","name":"huangliregor1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-11-12T22:31:43.4444409Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T22:31:43.4444409Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoacr","name":"trisavoacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:41:15.6967317Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T19:15:48.3712479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavoscus/providers/Microsoft.ContainerRegistry/registries/trisavoscus","name":"trisavoscus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-14T17:49:13.3076715Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-14T17:50:36.9332722Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedieus2euap","name":"mabenedieus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-14T18:27:49.7947511Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-14T18:29:51.7091925Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabenedi/providers/Microsoft.ContainerRegistry/registries/mabenedicuseuap","name":"mabenedicuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-24T18:16:40.5262072Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-24T18:16:40.5262072Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/artifactcache-loadtesting/providers/Microsoft.ContainerRegistry/registries/ptcloadtesteus2","name":"ptcloadtesteus2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-05T16:11:07.1449316Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-05T16:11:38.3226794Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vlintestrgcus/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0923","name":"vlintestregistry0923","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{},"systemData":{"createdBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","createdByType":"Application","createdAt":"2024-09-23T05:55:37.3474352Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-23T05:57:23.6489466Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmktest25/providers/Microsoft.ContainerRegistry/registries/khallcmktest25cr","name":"khallcmktest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","identity":{"principalId":"967a4a89-ddf9-44ba-91de-bb7fe045ccf6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmktest25/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmktest25":{"principalId":"89e91518-6221-4e74-a94b-94c243dddd91","clientId":"66642bf7-8f88-4e81-acd3-c76f67771dc7"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T13:06:32.7263644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T13:12:54.2277014Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reshrg/providers/Microsoft.ContainerRegistry/registries/reshregistry","name":"reshregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/huanglitest2","name":"huanglitest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T00:35:02.358293Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T00:35:02.358293Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayCR","name":"grayCR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-06-27T18:48:50.2457782Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry2","name":"huanwuregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/huanwuregistry","name":"huanwuregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graycuseuap","name":"graycuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HuangliRegistry/providers/Microsoft.ContainerRegistry/registries/HuangliRegistry","name":"HuangliRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/toddysm-connected-registry-test/providers/Microsoft.ContainerRegistry/registries/tsmconnectedregistrye2e","name":"tsmconnectedregistrye2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{"Application":"Connected + ACR","Owner":"Toddy Mladenov","OwnerAlias":"memladen"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-12-19T00:19:43.4580083Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-12-19T00:19:43.4580083Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acronpremdemo/providers/Microsoft.ContainerRegistry/registries/acronpremdemo","name":"acronpremdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-07T21:07:11.9486427Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-07T21:07:45.1921076Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/graytestaudit","name":"graytestaudit","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-05-14T00:16:03.8901815Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-14T00:16:03.8901815Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acrbuildtest/providers/Microsoft.ContainerRegistry/registries/acrbuildtest","name":"acrbuildtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-07-21T19:06:09.085878Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-07-21T19:07:50.9613994Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/usilwal-jenkins-new/providers/Microsoft.ContainerRegistry/registries/usilwalaks","name":"usilwalaks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-05-12T20:31:55.4138937Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:31:55.4138937Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jenkins-eus-test/providers/Microsoft.ContainerRegistry/registries/jenkinsclusteracr","name":"jenkinsclusteracr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlppepremium","name":"luisdlppepremium","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-21T17:52:12.2228993Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-21T17:57:50.9700404Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpptc","name":"luisdlpptc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"norwaywest","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-03T18:08:13.5955085Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-03T18:16:12.4031384Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ratify/providers/Microsoft.ContainerRegistry/registries/ratifystaging","name":"ratifystaging","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-01-27T18:59:25.1969543Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-01-27T19:05:21.9181726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchweu","name":"metadatasearchweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:36:53.0035159Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:12.1766743Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huanwuregistry/providers/Microsoft.ContainerRegistry/registries/metadatasearchwcus","name":"metadatasearchwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-16T01:37:59.1788133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-16T01:45:19.8798611Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/msrcreproeus","name":"msrcreproeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T23:53:23.5651827Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T23:53:23.5651827Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-dev/providers/Microsoft.ContainerRegistry/registries/joshbaunach","name":"joshbaunach","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-22T21:55:17.6013429Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-22T21:57:42.8457726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-msrc/providers/Microsoft.ContainerRegistry/registries/raymsrcrepro","name":"raymsrcrepro","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-06T00:18:38.559845Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-06T00:18:38.559845Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mcr/providers/Microsoft.ContainerRegistry/registries/mcreastus","name":"mcreastus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-02T23:50:36.9325308Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-02T23:54:56.5161962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-0314/providers/Microsoft.ContainerRegistry/registries/joshbaunach0314","name":"joshbaunach0314","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-14T17:02:53.5065769Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-14T17:04:59.4400271Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxprivate","name":"yxprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-30T22:44:41.632583Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-30T22:44:41.632583Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/demobackup","name":"demobackup","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-02T23:22:15.1018324Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-02T23:22:15.1018324Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/yxacr","name":"yxacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T03:41:56.7708255Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T03:41:56.7708255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05061/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05061","name":"joshbaunacharc05061","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-06T15:47:01.800294Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-06T15:48:08.5316016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pldemo/providers/Microsoft.ContainerRegistry/registries/acrprivateyx","name":"acrprivateyx","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-15T16:33:49.5047405Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-15T16:33:49.5047405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-05161/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc05161","name":"joshbaunacharc05161","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-16T21:33:46.3576779Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-16T21:34:21.2790753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gray-rg/providers/Microsoft.ContainerRegistry/registries/grayuks","name":"grayuks","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-29T20:26:53.7511383Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-29T20:26:53.7511383Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/transtevenarc","name":"transtevenarc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:23:04.7415277Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:23:46.0615176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onprem-bugbash-rg/providers/Microsoft.ContainerRegistry/registries/connectedregistrypatrick","name":"connectedregistrypatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T01:45:48.7672127Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T01:45:48.7672127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mabelegba/providers/Microsoft.ContainerRegistry/registries/mecr1","name":"mecr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-08T20:29:22.379623Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-08T20:29:22.379623Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gildardog-rg/providers/Microsoft.ContainerRegistry/registries/gildardogdev","name":"gildardogdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T09:17:52.9777011Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T20:24:21.2354751Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/brett-test/providers/Microsoft.ContainerRegistry/registries/bbartifactsynctest","name":"bbartifactsynctest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:12.337382Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:12.337382Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpcanary","name":"luisdlpcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T21:48:47.6991576Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T21:48:47.6991576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpuksouth","name":"luisdlpuksouth","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"uksouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:05:23.628535Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:05:23.628535Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/luisdlptest/providers/Microsoft.ContainerRegistry/registries/luisdlpwestcentralus","name":"luisdlpwestcentralus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T21:19:21.7368016Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T21:19:21.7368016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testnotation","name":"testnotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T02:38:59.8279972Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-15T02:34:35.9797209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus","name":"yuaneus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-15T23:15:28.9453055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-15T23:20:48.2718399Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yuaneus2euapbasic","name":"yuaneus2euapbasic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-14T21:34:01.1464029Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-14T21:34:01.1464029Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxwus","name":"yxwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-16T19:59:48.2279105Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-16T19:59:48.2279105Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivacr","name":"devdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/azurethepolarbear","name":"azurethepolarbear","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vscode-docker-testing/providers/Microsoft.ContainerRegistry/registries/rbacExtensionTest","name":"rbacExtensionTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivgeo","name":"devdivgeo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/theRegistryisnew","name":"theRegistryisnew","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tutorialsGroup/providers/Microsoft.ContainerRegistry/registries/Tutorials","name":"Tutorials","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RMResourceGroup/providers/Microsoft.ContainerRegistry/registries/Resh94ACR","name":"Resh94ACR","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/devdivdemo","name":"devdivdemo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/devdivdemorg/providers/Microsoft.ContainerRegistry/registries/hellodevdivacr","name":"hellodevdivacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupdiffsub/providers/Microsoft.ContainerRegistry/registries/sourceregistrydiffsub","name":"sourceregistrydiffsub","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr3","name":"yxcr3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:12:22.6033775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:13:33.9546255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr2","name":"yxcr2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T20:00:21.3457265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T20:03:44.6157205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcr1","name":"yxcr1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-24T19:03:08.0825984Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-24T19:03:08.0825984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmprod","name":"testhelmprod","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-29T12:18:53.659893Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-29T12:19:25.0515213Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem","name":"yxonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-11T20:12:51.5854546Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-11T20:14:55.834411Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/testhelmpatrick","name":"testhelmpatrick","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-02-22T04:15:05.0977003Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-02-22T04:15:27.9518052Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxonprem2","name":"yxonprem2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-03-27T16:55:10.4906423Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-27T16:59:24.3424797Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/patrickdev/providers/Microsoft.ContainerRegistry/registries/patricknotation","name":"patricknotation","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-16T03:02:45.3396713Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-16T03:03:43.5825248Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanonprem/providers/Microsoft.ContainerRegistry/registries/yxcanarydebug","name":"yxcanarydebug","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-21T19:46:44.1756124Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-21T19:47:40.638082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxiaks/providers/Microsoft.ContainerRegistry/registries/yxcloudacr","name":"yxcloudacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-11T23:19:36.6342132Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-11T23:20:12.2600301Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akashsinghaltest/providers/Microsoft.ContainerRegistry/registries/aksinghaleus2euap2","name":"aksinghaleus2euap2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-14T22:16:30.4586467Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-14T22:16:30.4586467Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubu4buovf5na6xfoygbjw","name":"sourceregistrysamesubu4buovf5na6xfoygbjw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-20T21:10:31.12671Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-20T21:10:31.12671Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubpoouc6tklrm3snn73y3","name":"sourceregistrysamesubpoouc6tklrm3snn73y3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T21:41:02.3475275Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T21:41:02.3475275Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubrz25vnt4slxyfq42jx7","name":"sourceregistrysamesubrz25vnt4slxyfq42jx7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-17T22:18:16.3452947Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-17T22:18:16.3452947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwzpffqgmi4eydjmwunl","name":"sourceregistrysamesubwzpffqgmi4eydjmwunl","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-18T03:01:36.4012867Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-18T03:01:36.4012867Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub7elwwwifzkkgwhvwhtm","name":"sourceregistrysamesub7elwwwifzkkgwhvwhtm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:05:01.3708772Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:05:01.3708772Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubimgk2cqqibwocjojtni","name":"sourceregistrysamesubimgk2cqqibwocjojtni","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T20:07:40.9669138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T20:07:40.9669138Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ContainerRegistry/registries/testregpgo2cjuu4xoc7","name":"testregpgo2cjuu4xoc7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg76xzxlnftk3ybatuotuabxbo3kd6inbfyyoxfkfvoizmhvmicgik6g3wdebkuockf/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityj7akfitg":{"principalId":"a1635a0f-f142-4e13-860a-623b49bf3ffd","clientId":"48a16b2e-b250-4fdf-8346-2f74431fc852"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-19T22:14:04.5494966Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-19T22:14:17.0480984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj64s5relsjotn7yo7bh6373g5ozowjpbeiy3uajccrmdrc7bcly27pijwhvufyizw/providers/Microsoft.ContainerRegistry/registries/cliregvr5phgmvzof4xk","name":"cliregvr5phgmvzof4xk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T17:41:40.1835358Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T17:41:40.1835358Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23oq6kjjqvid2ar2nqaguhubqbivpxl5gy576g5k32rv2adc7l5avwpesnmtsppwr/providers/Microsoft.ContainerRegistry/registries/cliregb5s7iwomh6hgou","name":"cliregb5s7iwomh6hgou","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:01:55.9102859Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:01:55.9102859Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnvf342esc4gsdonhsfmsb6csg5wd5wof7324wq7nf43cpnahedku6u6g4gwo4uwwc/providers/Microsoft.ContainerRegistry/registries/cliregjppxob42oo4q76","name":"cliregjppxob42oo4q76","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:08:27.9500802Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:08:27.9500802Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyfp7mjlhczmyha3paol5cwfnsr6zl4ntf4altx5idt5ynjrftlzv72o7ajpnwwkc4/providers/Microsoft.ContainerRegistry/registries/clireg6sbq3rat56snyn","name":"clireg6sbq3rat56snyn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:18:11.712155Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:18:11.712155Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmrgxnhoz5ine4rn5wtclzfpar3z7dan3ezpka553y2ym4foivyencskkot2r2iisb/providers/Microsoft.ContainerRegistry/registries/cliregfbyc6jzrrqhf4u","name":"cliregfbyc6jzrrqhf4u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T18:20:52.0697979Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T18:20:52.0697979Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2pbkjb5jbqbu7dgnswioxg6wbpcoybf5zt42rbq6kboyiqyb3cuv7o66mpdh4pawf/providers/Microsoft.ContainerRegistry/registries/cliregza6xdcmh6nkfwt","name":"cliregza6xdcmh6nkfwt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-20T21:17:41.0852412Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-20T21:17:41.0852412Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubeto7ceq7yhse3daximi","name":"sourceregistrysamesubeto7ceq7yhse3daximi","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:09:59.6345906Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:09:59.6345906Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubasyyapaolwptdm5bxzt","name":"sourceregistrysamesubasyyapaolwptdm5bxzt","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-26T19:36:14.1751691Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-26T19:36:14.1751691Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxcuseuap","name":"yxcuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:27:18.7712368Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:27:18.7712368Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxwcus","name":"yxwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:56:18.6122687Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T18:57:10.1574451Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yuanxi/providers/Microsoft.ContainerRegistry/registries/yxeasia","name":"yxeasia","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-31T18:59:53.470104Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-31T19:03:16.8124033Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bowenzhao/providers/Microsoft.ContainerRegistry/registries/bowenzhao","name":"bowenzhao","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T21:17:50.1156024Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T21:17:50.1156024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/trisavosea","name":"trisavosea","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-07-23T23:04:58.9857265Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-31T15:22:24.9667045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry","name":"acrtestregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-08-30T11:08:06.8561219Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-30T11:08:06.8561219Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/acrtestregistry2","name":"acrtestregistry2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-01T03:44:49.2763798Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-01T03:44:49.2763798Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0903","name":"vlintestregistry0903","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T01:46:05.5004661Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T01:45:49.1601549Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0904","name":"vlintestregistry0904","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"bbf848e3-4bb9-443b-b1a7-a24a79e5ff18","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/testacrroles/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vlintestid0903":{"principalId":"cb8908d8-39a4-4fd5-b76b-deea09913fc5","clientId":"c0f13b5f-1d2e-4101-85db-611e4fcf4083"}}},"tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-03T23:09:11.2731004Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-24T07:15:56.200657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0906","name":"vlintestregistry0906","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","createdByType":"Application","createdAt":"2024-09-06T05:28:31.7848169Z","lastModifiedBy":"c56e8cbc-e070-4351-8f53-fae988e901c8","lastModifiedByType":"Application","lastModifiedAt":"2024-09-06T07:25:14.8733098Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry0916","name":"vlintestregistry0916","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-16T01:44:46.6994384Z","lastModifiedBy":"5fc96b86-3251-4cce-8bcb-ddde228e0df0","lastModifiedByType":"Application","lastModifiedAt":"2024-09-16T01:54:29.376342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitftest","name":"huanglitftest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"northeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-09-30T00:47:40.5055599Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-30T00:47:40.5055599Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistryimportpip","name":"vlintestregistryimportpip","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-10T05:02:13.1322952Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-10T05:03:17.3507147Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testacrroles/providers/Microsoft.ContainerRegistry/registries/vlintestregistry1013","name":"vlintestregistry1013","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-13T12:52:49.9587621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-13T12:52:49.9587621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/hungligeotest","name":"hungligeotest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-12-27T18:56:20.1164353Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-27T18:56:20.1164353Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest21","name":"huanglitest21","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T03:38:59.1596146Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T03:38:59.1596146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglitest22","name":"huanglitest22","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-01-20T20:20:57.9051447Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-20T20:20:57.9051447Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglireplica","name":"huanglireplica","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T21:46:48.6716681Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-04T21:46:48.6716681Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal-e2e-test/providers/Microsoft.ContainerRegistry/registries/portale2e","name":"portale2e","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-10T20:25:49.0973042Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-10T20:25:49.0973042Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawcus","name":"kichallawcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T12:42:34.4087547Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T12:42:34.4087547Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawildcard","name":"kichallawildcard","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-08-30T17:36:47.3784874Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-08-30T17:36:47.3784874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichalladoubleencodingtest","name":"kichalladoubleencodingtest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-06T16:09:35.4120347Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-06T16:19:56.2477758Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallacuseuap","name":"kichallacuseuap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-17T23:28:52.3266154Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-08T21:33:16.4814874Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallafrc","name":"kichallafrc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"francecentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T22:43:32.0771918Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T22:43:32.0771918Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus","name":"kichallaeus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-09-18T19:41:19.5824789Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-09-18T19:41:46.5594044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aci-task/providers/Microsoft.ContainerRegistry/registries/acitask","name":"acitask","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-09T03:38:26.0691557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-12-06T17:58:46.7301976Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/p2p-ci-rg/providers/Microsoft.ContainerRegistry/registries/acrp2pci","name":"acrp2pci","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"Purpose":"Distribution + P2P CIs"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-10-19T18:41:08.5681115Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-10-19T18:41:08.5681115Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/huangli/providers/Microsoft.ContainerRegistry/registries/huanglicrtest2","name":"huanglicrtest2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-12-06T19:42:43.710084Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-06T19:50:08.5920561Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaitn","name":"kichallaitn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"italynorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-01-10T17:24:53.902562Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-01-10T17:24:53.902562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/flux/providers/Microsoft.ContainerRegistry/registries/acrflux","name":"acrflux","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremprivate","name":"acronpremprivate","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2021-02-04T21:51:58.13367Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-04T21:51:58.13367Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremdev","name":"acronpremdev","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-17T22:05:38.0453625Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-17T22:05:38.0453625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-onprem/providers/Microsoft.ContainerRegistry/registries/acronpremcanary","name":"acronpremcanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2020-11-11T21:29:53.0130775Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2020-11-11T21:30:20.5972808Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestregforcmk","name":"kichallatestregforcmk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallauamiforcmktest":{"principalId":"521422a4-c530-4f46-994f-2e4b0a2ab846","clientId":"942a7498-872e-4a67-8cf8-90fbf8021f7a"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-04-19T19:04:32.5561028Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-19T19:04:32.5561028Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweutest","name":"kichallaweutest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-08-30T07:42:47.5834707Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-30T07:43:41.0323406Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallatestreg","name":"kichallatestreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","identity":{"principalId":"360ad420-32b0-47bf-bbd8-7274dc6710e8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kichalla/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kichallatestidentity":{"principalId":"a41656d5-af9f-4a7d-874f-f0ccaf0929f2","clientId":"4a52641b-861d-4aaa-88bd-2fb08c6727c6"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-07-22T17:07:11.6634055Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-25T12:34:49.7895985Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acr-local/providers/Microsoft.ContainerRegistry/registries/kraterdevteam","name":"kraterdevteam","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-11-09T19:35:26.9788393Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-22T23:08:26.6487291Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallawus","name":"kichallawus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","identity":{"principalId":"a1f6138e-6251-4089-a46f-208eb9174a03","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-02-16T14:15:59.9461536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-02-23T15:01:00.7215173Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isleeus2euap1","name":"isleeus2euap1","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-09T19:07:10.0649621Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-09T19:07:10.0649621Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/eus2euapisletransfer","name":"eus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T18:50:35.6635138Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:04:12.3431706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwus","name":"isletestwus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T00:45:06.6936677Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T00:45:06.6936677Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaanonymouspull","name":"kichallaanonymouspull","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-04T13:55:46.4624399Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-04T13:58:11.8521285Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaweu","name":"kichallaweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westeurope","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-07-07T14:47:04.246701Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-07T14:47:04.246701Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/isletestwcus","name":"isletestwcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-06-20T01:01:43.8716644Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-20T01:01:43.8716644Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/isle-dev/providers/Microsoft.ContainerRegistry/registries/teus2euapisletransfer","name":"teus2euapisletransfer","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/isle-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/isletest-mi":{"principalId":"18d1431d-3a2e-4bf3-9034-5d4cd01e1e0c","clientId":"a9908c44-6419-4f78-932f-0a175ff3aa64"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-05-19T19:10:32.9106153Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-19T19:13:23.3704045Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Public-ACR-Dev-Registry/providers/Microsoft.ContainerRegistry/registries/acrdevpublic","name":"acrdevpublic","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus2","tags":{"TestTag":"Value"},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-29T00:28:37.2116233Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kichalla/providers/Microsoft.ContainerRegistry/registries/kichallaeus2euap","name":"kichallaeus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-02T21:52:40.997123Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-02T21:52:40.997123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/onebranch/providers/Microsoft.ContainerRegistry/registries/acronebranchbuilder","name":"acronebranchbuilder","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2022-09-30T07:23:25.8315205Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-30T07:23:25.8315205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavoprivatepreview","name":"trisavoprivatepreview","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus3","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:45:42.3355435Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T17:47:58.350387Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary","name":"trisavocanary","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-04T22:51:39.1070414Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-12T23:38:27.7956146Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavowcus","name":"trisavowcus","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-28T00:41:18.2332536Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-28T00:51:13.4704441Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavocanary2","name":"trisavocanary2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-03-27T18:23:18.9004766Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-03-27T18:23:18.9004766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trisavo/providers/Microsoft.ContainerRegistry/registries/trisavobillingidc","name":"trisavobillingidc","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"indonesiacentral","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-22T14:56:45.9703137Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-22T15:06:00.5196347Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-juliusl/providers/Microsoft.ContainerRegistry/registries/tenet","name":"tenet","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2023-11-10T01:39:08.6459936Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2023-11-10T01:39:34.2967984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/buildrpreg/providers/Microsoft.ContainerRegistry/registries/buildrpreg","name":"buildrpreg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Managed_Standard","tier":"Managed"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-arc-prod-04235/providers/Microsoft.ContainerRegistry/registries/joshbaunacharc04235","name":"joshbaunacharc04235","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-04-23T21:18:48.7834726Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-04-23T21:19:37.7530706Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/joshbaunach-proxy-wcus/providers/Microsoft.ContainerRegistry/registries/jbproxywcusregistry","name":"jbproxywcusregistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-01T18:21:13.6471108Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-01T18:21:13.6471108Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-jumboregistry120tb/providers/Microsoft.ContainerRegistry/registries/jumboregistry120tb","name":"jumboregistry120tb","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"switzerlandnorth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-05-07T18:26:16.9534532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-07T18:26:16.9534532Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount3","name":"pecount3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"centraluseuap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:15:13.6752037Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:15:13.6752037Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount4","name":"pecount4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-07T04:35:11.0508044Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-07T04:35:11.0508044Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anthonygiang-rg/providers/Microsoft.ContainerRegistry/registries/pecount5","name":"pecount5","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2024-10-25T01:27:13.8444571Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-25T01:27:13.8444571Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest3/providers/Microsoft.ContainerRegistry/registries/khallcmksitest3cr","name":"khallcmksitest3cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"b6d54134-bac5-4878-b04c-ed0a536d18fe","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest3":{"principalId":"9bea4ef2-a10b-4080-b491-e36f3ca5ff63","clientId":"111ad366-18a0-4c36-b740-59fdb4f58b50"}}},"tags":{},"systemData":{"lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:11:07.6255262Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallsitest25/providers/Microsoft.ContainerRegistry/registries/khallsitest25cr","name":"khallsitest25cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"277350e3-b42a-4d7a-9821-36f25144a961","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T03:27:15.9238974Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:06:14.6299123Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-khallcmksitest272/providers/Microsoft.ContainerRegistry/registries/khallcmksitest272cr","name":"khallcmksitest272cr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"australiaeast","identity":{"principalId":"99272fdf-8445-4dbe-8c91-76b3c419dfcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg-khallcmksitest272/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-khallcmksitest272":{"principalId":"7c18c630-3373-4713-a6e5-611899ca7536","clientId":"f37436d0-50cb-402b-b1f6-7b736c2819f9"}}},"tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-02-27T04:25:57.573226Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-02-27T04:27:32.858899Z"}}]}' headers: cache-control: - no-cache content-length: - - '606' + - '109410' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:31 GMT + - Fri, 25 Apr 2025 09:48:17 GMT expires: - '-1' pragma: @@ -1276,9 +1291,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 99026497AD7240E8BA26B529F699B891 Ref B: BN1AA2051013027 Ref C: 2026-09-14T23:36:31Z' + - 'Ref A: B62500EDDFB74B7D8A8FA9D25FC843C6 Ref B: SEL221051801033 Ref C: 2025-04-25T09:48:17Z' status: code: 200 message: OK @@ -1288,7 +1303,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr webhook create Connection: @@ -1296,24 +1311,23 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:29.2980343+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:29.2980343+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2026-09-14T23:36:29.2980343Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546068+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-14T23:36:31.1546506+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2025-03-01-preview cache-control: - no-cache content-length: - - '1715' + - '1500' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:31 GMT + - Fri, 25 Apr 2025 09:48:18 GMT expires: - '-1' pragma: @@ -1325,20 +1339,20 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D68D1DCD821E45EB8225C98A59714791 Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:36:32Z' + - 'Ref A: 3E8790A4F60C4F3BB79BB51F7EFCDCE3 Ref B: SEL221051504021 Ref C: 2025-04-25T09:48:18Z' status: code: 200 message: OK - request: body: '{"location": "westus", "properties": {"serviceUri": "http://www.microsoft.com", - "actions": ["push"], "status": "enabled"}}' + "status": "enabled", "actions": ["push"]}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - acr webhook create Connection: @@ -1350,29 +1364,26 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-03-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:32.8817387+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - - '689' + - '633' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:32 GMT + - Fri, 25 Apr 2025 09:48:21 GMT expires: - '-1' pragma: @@ -1384,13 +1395,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/8b4fddb8-4814-4d1b-a8cd-e10b39fcf41f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c4f31626-aa93-4ad0-b71d-b245d9548e93 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: A415D8EC93F14ACB96D74F0BE3ED1620 Ref B: BN1AA2051013037 Ref C: 2026-09-14T23:36:32Z' + - 'Ref A: 48075CB45B7F4F01B5A16423EA4789E6 Ref B: SEL221051805049 Ref C: 2025-04-25T09:48:20Z' status: code: 200 message: OK @@ -1400,7 +1411,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -1408,492 +1419,1227 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '57783' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 19D3FED0FD7049E4BBC0961332D4854F Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + cache-control: + - no-cache + content-length: + - '633' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 46F13ABBFBF341B5B627265E8E0F1362 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:23Z' + status: + code: 200 + message: OK +- request: + body: '{"tags": {"cli-test": "test"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, + 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 + cache-control: + - no-cache + content-length: + - '651' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:48:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/c636f714-32ae-4c1d-a8eb-6ad4aa109797 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: B2919C3A6C654159A620A162FD3CDB54 Ref B: SEL221051503029 Ref C: 2025-04-25T09:48:24Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '55193' + - '57783' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:33 GMT + - Fri, 25 Apr 2025 09:48:28 GMT expires: - '-1' pragma: @@ -1905,9 +2651,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C61E5FBB2D244891980934EB4CF5DB2C Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:36:33Z' + - 'Ref A: 3BA7968730D54E139BAF248B79986F92 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' status: code: 200 message: OK @@ -1917,7 +2663,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -1925,29 +2671,26 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:32.8817387+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:26.1412147+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - - '689' + - '651' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:32 GMT + - Fri, 25 Apr 2025 09:48:29 GMT expires: - '-1' pragma: @@ -1959,53 +2702,50 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 93688F6AB9854C809845F41764BB625A Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:36:33Z' + - 'Ref A: 6BB8F1BC212849A193650B4FD7C54864 Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:28Z' status: code: 200 message: OK - request: - body: '{"tags": {"cli-test": "test"}}' + body: '{"tags": {}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: - keep-alive Content-Length: - - '30' + - '12' Content-Type: - application/json ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:34.1936816+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - - '706' + - '634' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:33 GMT + - Fri, 25 Apr 2025 09:48:32 GMT expires: - '-1' pragma: @@ -2017,13 +2757,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/6a3fb274-96a9-4252-9a38-80383a7ad786 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/86b1f1a7-744f-4063-a40c-95ffde13b9b8 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: D9150CBCB2DA43EE95A16196537BB784 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:36:33Z' + - 'Ref A: F830282644B04E7697E3E16ED6784C1D Ref B: SEL221051804047 Ref C: 2025-04-25T09:48:29Z' status: code: 200 message: OK @@ -2033,500 +2773,29 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - resource tag + - container create Connection: - keep-alive ParameterSetName: - - --ids --tags + - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '55193' + - '292' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:34 GMT + - Fri, 25 Apr 2025 09:48:32 GMT expires: - '-1' pragma: @@ -2538,229 +2807,52 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 41195DE85FC548BCA5E7516DA40B3924 Ref B: BN1AA2051014051 Ref C: 2026-09-14T23:36:34Z' + - 'Ref A: 3652B8F2AB534718A28633654EB09B8B Ref B: SEL221051504019 Ref C: 2025-04-25T09:48:33Z' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"containers": [{"name": "clicontainer000005", "properties": + {"image": "mcr.microsoft.com/azuredocs/aci-helloworld:latest", "resources": + {"requests": {"memoryInGB": 1.0, "cpu": 1.0}}, "configMap": {"keyValuePairs": + {}}}}], "osType": "Linux"}, "location": "westus", "tags": {}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - - resource tag + - container create Connection: - keep-alive + Content-Length: + - '291' + Content-Type: + - application/json ParameterSetName: - - --ids --tags + - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:34.1936816+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 - cache-control: - - no-cache - content-length: - - '706' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:36:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: DBFDCC533FD64056AA202DF19A83A7D3 Ref B: BN1AA2051014049 Ref C: 2026-09-14T23:36:34Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '12' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:35.447486+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' - headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, - 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, - 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 - cache-control: - - no-cache - content-length: - - '688' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:36:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/ce3d9640-91a6-4927-8fc4-582e17597ccf - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 19331A90945E43868F566DF199B3D0B1 Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:36:35Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - container create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:36:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 44F471ECD1924013A3E962443D34CBDB Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:36:35Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"containers": [{"name": "clicontainer000005", "properties": - {"image": "mcr.microsoft.com/azuredocs/aci-helloworld:latest", "resources": - {"requests": {"memoryInGB": 1.0, "cpu": 1.0}}, "configMap": {"keyValuePairs": - {}}}}], "osType": "Linux"}, "location": "westus", "tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - container create - Connection: - - keep-alive - Content-Length: - - '291' - Content-Type: - - application/json - ParameterSetName: - - -g -n --image --cpu --memory --os-type - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Pending\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Pending","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Pending"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/a285a6bc-63a1-40f6-8de4-fefaeef62e48?api-version=2018-06-01&t=639250257975818048&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RIf6zx6II6SvR8QLcIJdq0ivZCmHgM-LXXJHb9P5BvF0BWZrAE89g9HOqDhbhOtzzB5aVoCstuY1IaJRllDYEmSxClpfx3i_kwRhzbktpizp-otekAoYdg3nPEwiahnIu-H8HE3kgvqFzHWAmuO9PHfR2C5U0-BNtl4vaYnTAjCCdUiFpFcO1hon-L4YqoCAbk904V_IAPDZbHpYaIH-7V2q9Dz5jWdI-hStFGNuEYITkg9viYryDnGSxa1SMrErJImCEp8NGz5STyFqQSDlPAze39vmIemchcZSGVYn9mtWxE9r75MstNWZrw0kpvlESsFVWD-hPyVVOEoO2-RVog&h=9jmC9Dd-8MU4AhGkkQXeieO3uLLQqXyDRbNOEAkUN0M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE cache-control: - no-cache content-length: - - '1133' + - '789' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:37 GMT + - Fri, 25 Apr 2025 09:48:37 GMT expires: - '-1' pragma: @@ -2772,17 +2864,17 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/3ab8465c-92e1-432e-a8ee-31f75e4b3719 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/23c3fe37-465a-4c45-8001-ce3dd8f12477 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-resource-requests-pt1h: - '299' x-ms-ratelimit-remaining-subscription-resource-requests-pt5m: - '99' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 53EA15F209E34BABB698269382576947 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:36:36Z' + - 'Ref A: 4373DEFAE86D4699AE011C5ABD67E90D Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:34Z' status: code: 201 message: Created @@ -2792,7 +2884,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - container create Connection: @@ -2800,24 +2892,21 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/a285a6bc-63a1-40f6-8de4-fefaeef62e48?api-version=2018-06-01&t=639250257975818048&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RIf6zx6II6SvR8QLcIJdq0ivZCmHgM-LXXJHb9P5BvF0BWZrAE89g9HOqDhbhOtzzB5aVoCstuY1IaJRllDYEmSxClpfx3i_kwRhzbktpizp-otekAoYdg3nPEwiahnIu-H8HE3kgvqFzHWAmuO9PHfR2C5U0-BNtl4vaYnTAjCCdUiFpFcO1hon-L4YqoCAbk904V_IAPDZbHpYaIH-7V2q9Dz5jWdI-hStFGNuEYITkg9viYryDnGSxa1SMrErJImCEp8NGz5STyFqQSDlPAze39vmIemchcZSGVYn9mtWxE9r75MstNWZrw0kpvlESsFVWD-hPyVVOEoO2-RVog&h=9jmC9Dd-8MU4AhGkkQXeieO3uLLQqXyDRbNOEAkUN0M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"status\": \"Pending\",\r\n \"startTime\": \"2026-09-14T23:36:37.4110422Z\",\r\n - \ \"properties\": {\r\n \"events\": []\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Pending","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[]}}' headers: cache-control: - no-cache content-length: - - '305' + - '272' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:36:37 GMT + - Fri, 25 Apr 2025 09:48:38 GMT expires: - '-1' pragma: @@ -2829,11 +2918,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus2/03ba03ae-0432-4d7a-8b9d-c12b42e8552b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/427b8852-a55c-4a3a-be04-314fd70ff957 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B01E13F692D94B7F9C2D17297D6BA604 Ref B: BN1AA2051012011 Ref C: 2026-09-14T23:36:37Z' + - 'Ref A: 9E787B2AC9BF4A7681AD8FDC1F746649 Ref B: SEL221051805011 Ref C: 2025-04-25T09:48:38Z' status: code: 200 message: OK @@ -2843,7 +2932,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - container create Connection: @@ -2851,32 +2940,24 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/a285a6bc-63a1-40f6-8de4-fefaeef62e48?api-version=2018-06-01&t=639250257975818048&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=RIf6zx6II6SvR8QLcIJdq0ivZCmHgM-LXXJHb9P5BvF0BWZrAE89g9HOqDhbhOtzzB5aVoCstuY1IaJRllDYEmSxClpfx3i_kwRhzbktpizp-otekAoYdg3nPEwiahnIu-H8HE3kgvqFzHWAmuO9PHfR2C5U0-BNtl4vaYnTAjCCdUiFpFcO1hon-L4YqoCAbk904V_IAPDZbHpYaIH-7V2q9Dz5jWdI-hStFGNuEYITkg9viYryDnGSxa1SMrErJImCEp8NGz5STyFqQSDlPAze39vmIemchcZSGVYn9mtWxE9r75MstNWZrw0kpvlESsFVWD-hPyVVOEoO2-RVog&h=9jmC9Dd-8MU4AhGkkQXeieO3uLLQqXyDRbNOEAkUN0M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/480c5ad8-0b1a-4687-a56c-6979a41d98f8?api-version=2018-06-01&t=638811713178681142&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=fIdv-wborJI78dROWGgs7YncxGDVwv0l-T_E6AB0Q1sHBzeNC6tug2l0pbFuYKcsccICBycHMDME_CRhbBkBi9VWYA13tqv4XPRBuPzut0nPpgEgD_Jc8UbIxBs07JNoINasWIDTaCCtBtbv8dxEAue50GpajZsQ_sZ45086a2CCBfjtLNiLlrWPhOZL2xIOGwLSplLwQykFZKy1tr_kULuX9gPbCw_vw5jS6j-Gq38UlRnbP3E-JMmcQpCWZzEM0rpAXwbDsrbJ_nscSxYtFZh4lUFIHy0DyJmTcBArivbJdoOAv0pekQ30OrCEJKIqszFvPhNz-SYFFXJVFzCUhw&h=Ocg4fiXRroO3ZlW3xtRODxKUUuxhkeerPFImhOUx0QE response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"status\": \"Succeeded\",\r\n \"startTime\": \"2026-09-14T23:36:37.4110422Z\",\r\n - \ \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": - 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": - \"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": - 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"lastTimestamp\": - \"2026-09-14T23:36:49Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": - \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Succeeded","startTime":"2025-04-25T09:48:37.5424024Z","properties":{"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]}}' headers: cache-control: - no-cache content-length: - - '1025' + - '976' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:08 GMT + - Fri, 25 Apr 2025 09:49:09 GMT expires: - '-1' pragma: @@ -2888,11 +2969,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a2440359-01ef-4d5c-9fab-73bba36ce44f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/aa93ee33-a065-47b3-8db3-21de8f26eb91 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: EE26E8993C1041B6AF538FC10A616C41 Ref B: BN1AA2051015037 Ref C: 2026-09-14T23:37:08Z' + - 'Ref A: E4CF150C26244D2F917F088B500043EC Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:08Z' status: code: 200 message: OK @@ -2902,7 +2983,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - container create Connection: @@ -2910,51 +2991,24 @@ interactions: ParameterSetName: - -g -n --image --cpu --memory --os-type User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2024-05-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n - \ \"name\": \"Pulling\",\r\n \"message\": \"pulling - image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": - \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '2562' + - '1630' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:09 GMT + - Fri, 25 Apr 2025 09:49:10 GMT expires: - '-1' pragma: @@ -2966,9 +3020,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: B1EDAADCAC8D4C0CAFFEF3960F6A0473 Ref B: BN1AA2051014019 Ref C: 2026-09-14T23:37:09Z' + - 'Ref A: 08BE454737704657ACBB4C3AA44D9961 Ref B: SEL221051805011 Ref C: 2025-04-25T09:49:09Z' status: code: 200 message: OK @@ -2978,7 +3032,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -2986,221 +3040,187 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"Italy - North","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Japan - West","zones":["1","2","3"]},{"location":"Korea Central","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Sweden Central","zones":["1","2","3"]},{"location":"Switzerland - North","zones":["1","2","3"]},{"location":"UAE North","zones":["1","2","3"]},{"location":"UK - South","zones":["1","2","3"]},{"location":"West Europe","zones":["1","2","3"]},{"location":"West - US 2","zones":["1","2","3"]},{"location":"West US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland + North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '23525' + - '20484' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:09 GMT + - Fri, 25 Apr 2025 09:49:10 GMT expires: - '-1' pragma: @@ -3212,9 +3232,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 4A60DDBB7EF6425CA94129DEAAC43154 Ref B: BN1AA2051012019 Ref C: 2026-09-14T23:37:09Z' + - 'Ref A: 752F3D7E9C464AE09587186291C10384 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' status: code: 200 message: OK @@ -3224,7 +3244,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -3232,51 +3252,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n - \ \"name\": \"Pulling\",\r\n \"message\": \"pulling - image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": - \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '2562' + - '1630' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:10 GMT + - Fri, 25 Apr 2025 09:49:11 GMT expires: - '-1' pragma: @@ -3288,9 +3281,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: E228FFAD15A84CBDB2711663B7EF90F5 Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:37:10Z' + - 'Ref A: EB1B12573658482F92F19459CA97C562 Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:11Z' status: code: 200 message: OK @@ -3300,7 +3293,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -3312,54 +3305,26 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n - \ \"name\": \"Pulling\",\r\n \"message\": \"pulling - image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": - \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n - \ }\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '2590' + - '1647' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:10 GMT + - Fri, 25 Apr 2025 09:49:15 GMT expires: - '-1' pragma: @@ -3371,13 +3336,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/c7d14f6a-2929-4dfc-8349-53af79282e3b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/cc19406b-a30b-4784-930c-56b95c74994b x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 576371FBB6B54437828B712122CAFC56 Ref B: BN1AA2051015011 Ref C: 2026-09-14T23:37:10Z' + - 'Ref A: 65230ACFF1764D6181C187ADF287E22C Ref B: SEL221051504009 Ref C: 2025-04-25T09:49:12Z' status: code: 200 message: OK @@ -3387,7 +3352,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -3395,221 +3360,187 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"Italy - North","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Japan - West","zones":["1","2","3"]},{"location":"Korea Central","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Sweden Central","zones":["1","2","3"]},{"location":"Switzerland - North","zones":["1","2","3"]},{"location":"UAE North","zones":["1","2","3"]},{"location":"UK - South","zones":["1","2","3"]},{"location":"West Europe","zones":["1","2","3"]},{"location":"West - US 2","zones":["1","2","3"]},{"location":"West US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland + North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '23525' + - '20484' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:10 GMT + - Fri, 25 Apr 2025 09:49:16 GMT expires: - '-1' pragma: @@ -3621,9 +3552,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 51A8D3DE1245492E8108D86483150CFF Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:37:11Z' + - 'Ref A: 3BF9C48DA96640FE8148356EAABF495C Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' status: code: 200 message: OK @@ -3633,7 +3564,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -3641,52 +3572,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n - \ \"name\": \"Pulling\",\r\n \"message\": \"pulling - image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": - \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n - \ }\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' headers: cache-control: - no-cache content-length: - - '2590' + - '1647' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:11 GMT + - Fri, 25 Apr 2025 09:49:17 GMT expires: - '-1' pragma: @@ -3698,9 +3601,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 39AE922AD00E494181DDC93010C47928 Ref B: BN1AA2051014011 Ref C: 2026-09-14T23:37:11Z' + - 'Ref A: 3B45777410CF4ABEBC4723907EA4431A Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:17Z' status: code: 200 message: OK @@ -3710,7 +3613,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -3722,53 +3625,26 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n - \ \"name\": \"Pulling\",\r\n \"message\": \"pulling - image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": - \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '2562' + - '1630' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:11 GMT + - Fri, 25 Apr 2025 09:49:20 GMT expires: - '-1' pragma: @@ -3780,13 +3656,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/99a5a8aa-2c05-4a81-87d1-f56c2799281f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5d7e56d9-d9ad-4799-853e-dbc32c8320dc x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: E31528FC7DB84C8991F29B2980571A8E Ref B: BN1AA2051012045 Ref C: 2026-09-14T23:37:12Z' + - 'Ref A: F9ED74D7A6FA415FB0E3902DEF13BC0E Ref B: SEL221051504037 Ref C: 2025-04-25T09:49:18Z' status: code: 200 message: OK @@ -3796,7 +3672,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -3804,8 +3680,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 response: @@ -3817,185 +3692,158 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '24795' + - '21796' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:11 GMT + - Fri, 25 Apr 2025 09:49:21 GMT expires: - '-1' pragma: @@ -4007,9 +3855,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: DD9977A774F24AE9915B69DD3E65005C Ref B: BN1AA2051015019 Ref C: 2026-09-14T23:37:12Z' + - 'Ref A: 6E2B667A30CC42C6AA2DA70BECD43749 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' status: code: 200 message: OK @@ -4019,7 +3867,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -4027,22 +3875,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A36%3A25.8911658Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A47%3A53.431757Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1073' + - '1019' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:12 GMT + - Fri, 25 Apr 2025 09:49:22 GMT expires: - '-1' pragma: @@ -4054,9 +3901,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 7412F0AC52FA4BB0BC70964AA3633141 Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:37:12Z' + - 'Ref A: 98045C885A9640E4B9DC1A418767E6A8 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:22Z' status: code: 200 message: OK @@ -4066,7 +3913,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -4078,22 +3925,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2026-09-14T23%3A37%3A14.0367154Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"AlwaysON","enhancedSecurityState":"AlwaysON"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"regionOfChoiceSettings":{"status":"Disabled"},"secureScore":"Adequate","bcdrSecurityLevel":"Good","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2025-04-25T09%3A49%3A25.1684641Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None","backupStorageVersion":"Unassigned","securitySettings":{"softDeleteSettings":{"softDeleteRetentionPeriodInDays":14,"softDeleteState":"Enabled","enhancedSecurityState":"Enabled"},"multiUserAuthorization":"Disabled","sourceScanConfiguration":{"state":"Disabled"}},"redundancySettings":{"standardTierStorageRedundancy":"GeoRedundant","crossRegionRestore":"Disabled"},"secureScore":"None","bcdrSecurityLevel":"Poor","publicNetworkAccess":"Enabled","restoreSettings":{"crossSubscriptionRestoreSettings":{"crossSubscriptionRestoreState":"Enabled"}}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1090' + - '1037' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:13 GMT + - Fri, 25 Apr 2025 09:49:25 GMT expires: - '-1' pragma: @@ -4105,11 +3951,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/a30e9be6-b03c-4e31-a825-4568073c98a7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/90b56c94-6ddf-406f-a0b0-91f773dc9f8a x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' x-msedge-ref: - - 'Ref A: 9AC585AD99CB4821BD606C82137DA043 Ref B: BN1AA2051013029 Ref C: 2026-09-14T23:37:13Z' + - 'Ref A: 9E45D7C5D3CF4B64A54730CD8CE8F088 Ref B: SEL221051504033 Ref C: 2025-04-25T09:49:23Z' status: code: 200 message: OK @@ -4119,7 +3965,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -4127,492 +3973,546 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '55193' + - '57783' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:14 GMT + - Fri, 25 Apr 2025 09:49:25 GMT expires: - '-1' pragma: @@ -4624,9 +4524,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: C6FA64A8CECB4C29A7761401DACF0255 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:37:14Z' + - 'Ref A: D761F10D79B94D87B8B7C5863648E955 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' status: code: 200 message: OK @@ -4636,7 +4536,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -4644,29 +4544,26 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:36:35.447486+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:31.2246017+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - - '688' + - '634' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:14 GMT + - Fri, 25 Apr 2025 09:49:26 GMT expires: - '-1' pragma: @@ -4678,9 +4575,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D006A80ADF2A4A15B2837851EB0BA6A2 Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:37:14Z' + - 'Ref A: 3AB4ABBB4ED7492183EB485CABC899DC Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:26Z' status: code: 200 message: OK @@ -4690,7 +4587,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -4702,29 +4599,26 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","createdByType":"Application","createdAt":"2026-09-14T23:36:32.8817387+00:00","lastModifiedBy":"ebaf1741-13bf-4ccb-9cf6-e74d3838634b","lastModifiedByType":"Application","lastModifiedAt":"2026-09-14T23:37:15.3708024+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:49:29.1704021+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - - '706' + - '651' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:15 GMT + - Fri, 25 Apr 2025 09:49:30 GMT expires: - '-1' pragma: @@ -4736,13 +4630,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/8d77321a-df22-4722-9544-02d7faec3ca6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/5dcd2977-c8db-491d-9230-d66b69dd7e62 x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: F12BCCF565E346C68C31ADD8311316BF Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:37:14Z' + - 'Ref A: 1329C9663FA242BCB33C1A137BBDA4F9 Ref B: SEL221051801035 Ref C: 2025-04-25T09:49:27Z' status: code: 200 message: OK @@ -4752,7 +4646,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -4760,221 +4654,187 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2024-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"},{"applicationId":"63ea3c01-7483-456e-8073-d3fed34fbdda","roleDefinitionId":"bafbada8-7822-4049-a4d7-4a3f19fa394b"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico - Central","New Zealand North","North Central US","North Europe","Norway East","Norway - West","Poland Central","Qatar Central","South Africa North","South Africa - West","South Central US","Southeast Asia","South India","Spain Central","Sweden - Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK - South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/reservationSets","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/validateDeleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"locations/createReservationSet","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2026-02-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Austria - East","Belgium Central","Brazil South","Brazil Southeast","Canada Central","Canada - East","Central India","Central US","Chile Central","Denmark East","East Asia","East + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-10-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-09-01","2022-04-01-preview","2021-10-01","2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"containerGroupProfiles","locations":["Australia + Central","Australia Central 2","Australia East","Australia Southeast","Brazil + South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","France South","Germany North","Germany West - Central","India South Central","Indonesia Central","Israel Central","Italy - North","Japan East","Japan West","Korea Central","Korea South","Malaysia West","Mexico + Central","Indonesia Central","Israel Central","Italy North","Japan East","Japan + West","Jio India Central","Jio India West","Korea Central","Korea South","Mexico Central","New Zealand North","North Central US","North Europe","Norway East","Norway West","Poland Central","Qatar Central","South Africa North","South Africa West","South Central US","Southeast Asia","South India","Spain Central","Sweden Central","Switzerland North","Switzerland West","UAE Central","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West - US 2","West US 3"],"apiVersions":["2026-06-01-preview","2025-09-01","2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"nGroups","locations":["Australia + US 2","West US 3","Central US EUAP","East US 2 EUAP","Sweden South"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"containerScaleSets","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"Italy - North","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Japan - West","zones":["1","2","3"]},{"location":"Korea Central","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Sweden Central","zones":["1","2","3"]},{"location":"Switzerland - North","zones":["1","2","3"]},{"location":"UAE North","zones":["1","2","3"]},{"location":"UK - South","zones":["1","2","3"]},{"location":"West Europe","zones":["1","2","3"]},{"location":"West - US 2","zones":["1","2","3"]},{"location":"West US 3","zones":["1","2","3"]}],"capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"locations/nGroupsOperations","locations":["Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Sweden Central","zones":["3","1","2"]},{"location":"Switzerland + North","zones":["3","1","2"]},{"location":"UAE North","zones":["3","1","2"]},{"location":"UK + South","zones":["3","1","2"]},{"location":"West Europe","zones":["3","1","2"]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]}],"capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"locations/containerScaleSetOperations","locations":["Australia Central","Australia Central 2","Australia East","Australia SouthEast","Brazil - South","Canada Central","Canada East","Central India","Central US","East Asia","East - US","East US 2","France Central","France South","Germany North","Germany West - Central","Italy North","Japan East","Japan West","Korea Central","Korea South","North - Central US","North Europe","Norway East","Norway West","Poland Central","Qatar - Central","South Africa North","South Africa West","South Central US","Southeast - Asia","South India","Sweden Central","Switzerland North","Switzerland West","UAE + South","Canada Central","Canada East","Central India","Central US","Central + US EUAP","East Asia","East US","East US 2","East US 2 EUAP","France Central","France + South","Germany North","Germany West Central","Italy North","Japan East","Japan + West","Jio India West","Korea Central","Korea South","North Central US","North + Europe","Norway East","Norway West","Poland Central","Qatar Central","South + Africa North","South Africa West","South Central US","Southeast Asia","South + India","Sweden Central","Sweden South","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West India","West US","West US 2","West US 3"],"apiVersions":["2024-11-01-preview","2024-09-01-preview","2024-05-01-preview","2023-05-15-preview","2023-05-01","2023-02-01-preview","2022-10-01-preview","2022-04-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '23525' + - '20484' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:15 GMT + - Fri, 25 Apr 2025 09:49:30 GMT expires: - '-1' pragma: @@ -4986,9 +4846,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: D795421EFABD4F648A61D3233EC0662A Ref B: BN1AA2051012049 Ref C: 2026-09-14T23:37:15Z' + - 'Ref A: 03B4F8EEFC8A4E77A67E60AC58D6C42C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' status: code: 200 message: OK @@ -4998,7 +4858,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -5006,51 +4866,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n - \ \"name\": \"Pulling\",\r\n \"message\": \"pulling - image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": - \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {}\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '2562' + - '1630' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:16 GMT + - Fri, 25 Apr 2025 09:49:31 GMT expires: - '-1' pragma: @@ -5062,9 +4895,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 78FCF614E9AB43F19C53E9F3EEE5F112 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:37:15Z' + - 'Ref A: 0624971856614FA29A2D9EA60511719C Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:31Z' status: code: 200 message: OK @@ -5074,7 +4907,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -5086,54 +4919,26 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2023-05-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"isCreatedFromStandbyPool\": - false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningTimeoutInSeconds\": - 1800,\r\n \"isCustomProvisioningTimeout\": false,\r\n \"containers\": - [\r\n {\r\n \"name\": \"clicontainer000005\",\r\n \"properties\": - {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n - \ \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"configMap\": - {\r\n \"keyValuePairs\": {}\r\n },\r\n \"instanceView\": - {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n - \ \"state\": \"Running\",\r\n \"startTime\": \"2026-09-14T23:37:01.699Z\",\r\n - \ \"detailStatus\": \"\"\r\n },\r\n \"events\": - [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": - \"2026-09-14T23:36:40Z\",\r\n \"lastTimestamp\": \"2026-09-14T23:36:40Z\",\r\n - \ \"name\": \"Pulling\",\r\n \"message\": \"pulling - image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:36:49Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:36:49Z\",\r\n \"name\": - \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\\\"\",\r\n - \ \"type\": \"Normal\"\r\n },\r\n {\r\n - \ \"count\": 1,\r\n \"firstTimestamp\": \"2026-09-14T23:37:01Z\",\r\n - \ \"lastTimestamp\": \"2026-09-14T23:37:01Z\",\r\n \"name\": - \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": - \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": - {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n - \ \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n - \ }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n - \ \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n - \ }\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005\",\r\n - \ \"name\": \"clicontainer000005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n - \ }\r\n}" + string: '{"properties":{"sku":"Standard","isCreatedFromStandbyPool":false,"provisioningState":"Succeeded","provisioningTimeoutInSeconds":1800,"isCustomProvisioningTimeout":false,"containers":[{"name":"clicontainer000005","properties":{"image":"mcr.microsoft.com/azuredocs/aci-helloworld:latest","ports":[],"environmentVariables":[],"configMap":{"keyValuePairs":{}},"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2025-04-25T09:48:52.69Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2025-04-25T09:48:41Z","lastTimestamp":"2025-04-25T09:48:41Z","name":"Pulling","message":"pulling + image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:44Z","lastTimestamp":"2025-04-25T09:48:44Z","name":"Pulled","message":"Successfully + pulled image \"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:b9cec4d6b50c6bf25e3f7f93bdc1628e5dca972cf132d38ed8f5bc955bb179c3\"","type":"Normal"},{"count":1,"firstTimestamp":"2025-04-25T09:48:52Z","lastTimestamp":"2025-04-25T09:48:52Z","name":"Started","message":"Started + container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.0,"cpu":1.0}}}}],"initContainers":[],"osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '2590' + - '1647' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:16 GMT + - Fri, 25 Apr 2025 09:49:36 GMT expires: - '-1' pragma: @@ -5145,13 +4950,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/deb4e15d-4338-4aeb-9b75-b34209ebfb1d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/0db39ab4-d695-4d3c-a150-efc6a5e76dfd x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '799' x-msedge-ref: - - 'Ref A: 6511B8D7AE4B41DC94B4974DF88B6453 Ref B: BN1AA2051012037 Ref C: 2026-09-14T23:37:16Z' + - 'Ref A: EE86E7EC44774195B776B69A8F96A135 Ref B: SEL221051503045 Ref C: 2025-04-25T09:49:32Z' status: code: 200 message: OK @@ -5162,7 +4967,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network public-ip create Connection: @@ -5174,18 +4979,17 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"86bcc75d-2a39-4beb-ab3e-55dc1e8f13eb\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"6545fe77-172c-4914-bfba-b41c1f3b7b37\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f13eb23e-9e8a-4fc9-b979-b9e146dfaa5c?api-version=2025-07-01&t=639250258390594832&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=P3ToeYhNHbQNvuszCdlkaH0Sq2niSWvUgpkezRakIQQVA9weOFLG7sqMj6cxBYQd92g7sFaa0V2PoiggQXJ1i7QSVw8r6L2u8wMbTx6TIJhst6_5qMh6S8vYdUKnZkq102ph9FZQGp55jXTua9Ouw_UiwtDhTVr9P7sNYFzWSpKeCFvfGVFYSq13fn2SrPA7vdrW46orRBB6MGvtcIeJ44uAA2s3bJRjoA7mCvn2uCEXz330ShTutFqq2nAjTlC4y-PhSCwGPAEmLv8xm-pt9W-muzJixQFZaKgZVkS20dcFgpdzdbJ0v3QxrvYc-jiW9ouYlAzfPacCZNUVyJmajw&h=rP8TRjfZrOUzJutVjz2mE4HKe2te0Ip7d0SfBfMSlSc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY cache-control: - no-cache content-length: @@ -5193,7 +4997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:18 GMT + - Fri, 25 Apr 2025 09:49:40 GMT expires: - '-1' pragma: @@ -5205,28 +5009,25 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d3d51b1-d887-4ecf-bf10-30d82c5cb70f + - 76a2d317-a418-4652-b3e4-0944e1b77834 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/69ed4c1f-4632-4ebf-875a-d30d3d5e12fd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/a8bff673-eaf6-466e-9e24-89b834eec07e x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.1, - etc + - '799' x-msedge-ref: - - 'Ref A: 1BA74777B579428AA539357A8E76FBBD Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:37:17Z' + - 'Ref A: C09ADFEE414C412DAAC85C9805D01719 Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:37Z' status: code: 201 - message: '' + message: Created - request: body: null headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network public-ip create Connection: @@ -5234,10 +5035,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f13eb23e-9e8a-4fc9-b979-b9e146dfaa5c?api-version=2025-07-01&t=639250258390594832&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=P3ToeYhNHbQNvuszCdlkaH0Sq2niSWvUgpkezRakIQQVA9weOFLG7sqMj6cxBYQd92g7sFaa0V2PoiggQXJ1i7QSVw8r6L2u8wMbTx6TIJhst6_5qMh6S8vYdUKnZkq102ph9FZQGp55jXTua9Ouw_UiwtDhTVr9P7sNYFzWSpKeCFvfGVFYSq13fn2SrPA7vdrW46orRBB6MGvtcIeJ44uAA2s3bJRjoA7mCvn2uCEXz330ShTutFqq2nAjTlC4y-PhSCwGPAEmLv8xm-pt9W-muzJixQFZaKgZVkS20dcFgpdzdbJ0v3QxrvYc-jiW9ouYlAzfPacCZNUVyJmajw&h=rP8TRjfZrOUzJutVjz2mE4HKe2te0Ip7d0SfBfMSlSc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/903f1823-154d-4ddb-8ca4-40b14968caaf?api-version=2022-11-01&t=638811713810426402&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=Y_eklEPosrniKXvaWvsEculCtKXXqxPiajn3cH-dmaqHPk21CMcZ-cN_o85w172G3YyrjyVHGFs6Q-7C2qgQeAZPhOSC-Nri7cb8CgNnBJNQX23m-BAk4E2jOX-h6F4FBfwLRTG35qT5pPo0IJvrV7XtzOpqSytkKh3BdqNUejVBUsM73g53-8n8DuOY6ogzo_9j-s90T4Ec39mB67wZLXyGx2GYNo-l3ryLP2dl0PfpO9Q0srkGv71ZfCEBjs1BeIQBHaVW8XXXc7BG-6QTb-2WNbtQ0cE5WTpaJwaq9C0aLxWScGzyPtIOthb5dnmanTdLKYdUTq-G0fccGxjJxw&h=GgslKKBz9KcpzSbqOkIil7JNfWkpLRFzoSBExkDkQEY response: body: string: '{"status":"Succeeded"}' @@ -5249,7 +5049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:19 GMT + - Fri, 25 Apr 2025 09:49:40 GMT expires: - '-1' pragma: @@ -5261,15 +5061,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4db19a93-133a-4466-ac38-68d1f230c8e5 + - 518a0273-7ccb-416e-af57-6efdf4e72289 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/a1d7a24e-04b0-419f-9e1b-6554aa14663f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/6b13d0b7-b2f7-4abc-aba1-436ca7bd1766 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, etc + - '16499' x-msedge-ref: - - 'Ref A: 4C50213FAFF04B779DD4185F1548F478 Ref B: BN1AA2051014033 Ref C: 2026-09-14T23:37:19Z' + - 'Ref A: 3A55F322EDD6448AA1139A8371FD530E Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' status: code: 200 message: OK @@ -5279,7 +5077,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - network public-ip create Connection: @@ -5287,24 +5085,23 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2025-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","ipAddress":"20.245.38.144","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '646' + - '645' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:20 GMT + - Fri, 25 Apr 2025 09:49:41 GMT etag: - - W/"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3" + - W/"763cb332-0037-4875-9944-f0082f733ca0" expires: - '-1' pragma: @@ -5316,13 +5113,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bfaf0fc1-1dd2-44a5-9f8f-5069c1c0c085 + - 0be6840f-a5ef-49ea-b861-112445ceee4a x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.5, etc + - '16499' x-msedge-ref: - - 'Ref A: 141CEEF485CE44E28BCE10B022FD4DF6 Ref B: BN1AA2051014037 Ref C: 2026-09-14T23:37:20Z' + - 'Ref A: F9D514ABF06D4C8CAC78B0253AC8378C Ref B: SEL221051801033 Ref C: 2025-04-25T09:49:41Z' status: code: 200 message: OK @@ -5332,7 +5127,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -5340,13 +5135,12 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5355,10 +5149,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5367,10 +5159,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5379,10 +5169,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5391,10 +5179,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -5403,10 +5189,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5414,10 +5198,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5425,10 +5207,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -5436,10 +5216,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5447,10 +5225,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5459,10 +5235,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5471,10 +5245,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5483,10 +5255,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -5494,10 +5264,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -5506,44 +5274,25 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","France - South","Norway West","Switzerland West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","West - US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5551,10 +5300,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5562,10 +5312,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5573,100 +5324,40 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5674,70 +5365,77 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5745,20 +5443,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5766,10 +5466,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel - Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Denmark - East","Chile Central","Malaysia West","Austria East","Belgium Central","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE + North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5777,10 +5478,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5788,10 +5490,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5799,10 +5502,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5810,10 +5514,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5821,31 +5526,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5853,10 +5549,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -5864,50 +5561,51 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5915,20 +5613,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","India South Central","Qatar + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -5936,30 +5636,29 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -5967,96 +5666,114 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","Jio India West","Jio India Central","North Central US","West + US","West Europe","UAE Central","Germany North","East US","West India","East + US 2","Australia Central","Australia Central 2","South Africa West","Brazil + South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland + West","East Asia","South Africa North","UK South","South India","Australia + Southeast","France South","West US 2","Sweden Central","Japan West","Norway + East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea + Central","Southeast Asia","South Central US","Norway West","Australia East","Japan + East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West + Central US","Jio India West","Jio India Central","North Central US","West + US","West Europe","UAE Central","Germany North","East US","West India","East + US 2","Australia Central","Australia Central 2","South Africa West","Brazil + South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland + West","East Asia","South Africa North","UK South","South India","Australia + Southeast","France South","West US 2","Sweden Central","Japan West","Norway + East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea + Central","Southeast Asia","South Central US","Norway West","Australia East","Japan + East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -6065,8 +5782,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -6076,95 +5793,92 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK + West","West US","East US","North Europe","West Europe","West Central US","South + Central US","Australia East","Australia Central","Australia Southeast","UK + South","East US 2","West US 2","North Central US","Canada Central","France + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West - Europe","South Central US","Australia East","Australia Central","Australia - Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","West Central US","Central US","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","South Central US","Australia East","Australia + Central","Australia Southeast","UK South","East US 2","West US 2","North Central + US","Canada Central","France Central","West Central US","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central + US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK + West","West US","East US","North Europe","West Europe","West Central US","South + Central US","Australia East","Australia Central","Australia Southeast","UK + South","East US 2","West US 2","North Central US","Canada Central","France + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden - Central","UAE North","Australia Central 2","UAE Central","Germany North","Central - India","Korea South","Switzerland North","Switzerland West","Japan West","France - South","South Africa West","West India","Canada East","South India","Germany - West Central","Norway East","Norway West","South Africa North","East Asia","Southeast - Asia","Korea Central","Brazil South","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio + India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany + North","Central India","Korea South","Switzerland North","Switzerland West","Japan + West","France South","South Africa West","West India","Canada East","South + India","Germany West Central","Norway East","Norway West","South Africa North","East + Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West + US","East US","North Europe","West Europe","West Central US","South Central + US","Australia East","Australia Central","Australia Southeast","UK South","East + US 2","West US 2","North Central US","Canada Central","France Central","Central + US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia + Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West @@ -6174,72 +5888,52 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","India South Central","Southeast - Asia","North Central US","South Central US","Central US","East US 2","Japan - East","Japan West","Brazil South","Australia East","Australia Southeast","Central - India","South India","West India","Canada Central","Canada East","West Central - US","West US 2","UK West","UK South","Korea Central","Korea South","France - Central","Australia Central","South Africa North","UAE North","Switzerland - North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6247,30 +5941,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6278,40 +5971,40 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6319,10 +6012,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6330,10 +6024,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6341,10 +6036,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6352,20 +6048,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -6373,10 +6071,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6384,10 +6083,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6395,10 +6095,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6406,10 +6107,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6417,10 +6119,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6428,10 +6131,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6439,41 +6143,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6481,21 +6173,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium - Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6503,21 +6185,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6525,10 +6197,12 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","South Central US STG","Brazil Southeast","Jio India Central","Sweden + South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6536,261 +6210,287 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6798,10 +6498,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6809,20 +6510,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -6830,10 +6533,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6841,20 +6545,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -6862,178 +6568,112 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"interconnectGroups","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, - SupportsTags, SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East + US 2 EUAP","global","Central US","East US","East US 2","North Central US","South + Central US","West US","North Europe","West Europe","East Asia","Southeast + Asia","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","West US 2","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '247500' + - '217264' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:22 GMT + - Fri, 25 Apr 2025 09:49:44 GMT expires: - '-1' pragma: @@ -7045,9 +6685,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16498' x-msedge-ref: - - 'Ref A: 1D71401B8A9C405DA580064F57710B4D Ref B: BN1AA2051012031 Ref C: 2026-09-14T23:37:20Z' + - 'Ref A: 7026C7B1779748A6806FB51A6735A481 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:42Z' status: code: 200 message: OK @@ -7057,7 +6697,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -7065,24 +6705,23 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","ipAddress":"20.245.38.144","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"763cb332-0037-4875-9944-f0082f733ca0\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '646' + - '645' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:22 GMT + - Fri, 25 Apr 2025 09:49:44 GMT etag: - - W/"4322cdcc-0c85-41b1-87d4-80a4bf64f7d3" + - W/"763cb332-0037-4875-9944-f0082f733ca0" expires: - '-1' pragma: @@ -7094,13 +6733,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d34c281-5e6b-4bfb-b19c-1a7569a9fd13 + - 2015d3da-5f14-4223-8194-aca015a9c884 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-ms-throttle-levels: - - operationRatePct=0.2, operationConcurrencyPct=0.5, etc + - '16499' x-msedge-ref: - - 'Ref A: 3AF0FD0C92524A22A25279EC7B9B0FAD Ref B: BN1AA2051014047 Ref C: 2026-09-14T23:37:22Z' + - 'Ref A: 680DA6436B36488D91A528650C8051A2 Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' status: code: 200 message: OK @@ -7110,7 +6747,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource tag Connection: @@ -7122,24 +6759,23 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 response: body: - string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"c12b24e7-5571-4f73-a890-4526aa1d2c5b\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"f9ddd823-7ea4-4f75-a4bc-edbabeae7a3c","ipAddress":"20.245.38.144","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"cli_ip000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004","etag":"W/\"1a7cc129-5b0a-42e9-98ac-13a7aa041ed7\"","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","resourceGuid":"f0960bbe-1375-4dda-b9ac-6f0d23b4103e","ipAddress":"40.83.193.12","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled cache-control: - no-cache content-length: - - '673' + - '672' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:37:23 GMT + - Fri, 25 Apr 2025 09:49:48 GMT expires: - '-1' pragma: @@ -7151,903 +6787,813 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e4df188-ae02-4b9d-bf15-853da46e50dd + - e33a0c35-50e5-46b3-ac80-6ff76236bcd7 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/3e072ae2-4bfd-45ed-8ce2-7d8a9044e663 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/f3a82332-6400-4084-99d6-0012920eb33a x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.2, - etc + - '799' x-msedge-ref: - - 'Ref A: 091AFE34929A4A42BFE0F458C0A5F036 Ref B: BN1AA2051013021 Ref C: 2026-09-14T23:37:23Z' + - 'Ref A: 5A6C1882C1094A3697FBFF86D9E3991F Ref B: SEL221051802047 Ref C: 2025-04-25T09:49:45Z' status: code: 200 - message: '' + message: OK - request: body: null headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - resource delete - Connection: - - keep-alive - ParameterSetName: - - --id - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"},{"applicationId":"e81c7467-0fc3-4866-b814-c973488361cd","roleDefinitionId":"212c936c-5360-4b3b-b2a1-b1eba3849a6f"},{"applicationId":"c505e273-0ba0-47e7-a0bd-f48042b4524d","roleDefinitionId":"a3d1c624-1f2f-41e8-9dc7-53fd55bcd821"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"vaults/backupCrossTenantVaultMappings","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-03-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2026-03-31-preview"}],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Malaysia West","Indonesia - Central","Denmark East","Austria East","Belgium Central","Israel Central","India - South Central"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Spain Central","Chile Central","New Zealand North","Mexico Central","Israel - Central","Italy North","Malaysia West","Indonesia Central","Denmark East","Austria - East","Belgium Central","India South Central"],"apiVersions":["2026-07-01","2026-05-31-preview","2026-05-01","2026-03-31-preview","2026-02-01","2026-01-31-preview","2026-01-01","2025-08-01","2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '24795' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:37:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: CF35B12B98D64BEBB9E94FE5551B5C01 Ref B: BN1AA2051014035 Ref C: 2026-09-14T23:37:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - resource delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --id - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2026-07-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452711856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LFSNZerbtRz1g0MrfpX35He-fWbYbUIn-LwxoFg5tkfsVpxBrqgloG7-TtXJAjh_WHWErJWvA7sow3w7cuTGmHIXL-z_4506OCul6loWV0Os__fxYC8DXJELzQM3MKCV1l-TTU39ksg2eKAaCp3Gv3P18F62f00SyUG5gwEWgasC9gTtcEILo-oIDtrPEFCkBXteNABa6qbuaiRSdeN2AHxe5fysBzb9i8Rz3UiAMDv0oUQpv_ogWWMjkYriRgbRwdajkz-Dgt3kizJCIKPvPeQBp5baHtthDpVtKDRXe3fNeExwMW6WAQBQIYllYxSQtpPtDfnV1BQuDdguL50Kig&h=KPGIcJAk-owlAWX7_tdZb5un4mo2eO5t0Xm2FlJx3y8 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 14 Sep 2026 23:37:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452868786&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=Ro8t7auWWbuj_04Kd_7U5BMuyWPzwZ4cNi8cZkN_lX9QJJ25mkob294nePhUqNJu8abHDZ-y0NLOwDQOVdIV1T2xImd6snFklQBPBSBiJguqTUgMVa47d-l7DEC_l354gSd0kbkI19E5yZUrMsRxK9Ic99lze-gnZC8Zk58IPkJXzi9y40DZ5aZllIJY4XTXdjWbDa65OBPKtLOaX088GsNomlqXcSbM_fdab4GV0LIfOb0y3kfIs1Ws1zEwKW53n3NYw52XMv4GpidJNRCkJQiQz1irM8n41bE1ozv9-g94YwMKUcaCZiQgo2FEbyqSjpKezNLx1vapl36pXAYmRg&h=1aA8g3FGX0O0dlA5Khvui6-55FoPLNJB-lTYL4eTntM - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/5301a6b7-7837-4d86-86c9-d9750081eead - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-msedge-ref: - - 'Ref A: EDDEACAFBDC945D69308D360C8E36B86 Ref B: BN1AA2051015009 Ref C: 2026-09-14T23:37:24Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - resource delete - Connection: - - keep-alive - ParameterSetName: - - --id - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452711856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LFSNZerbtRz1g0MrfpX35He-fWbYbUIn-LwxoFg5tkfsVpxBrqgloG7-TtXJAjh_WHWErJWvA7sow3w7cuTGmHIXL-z_4506OCul6loWV0Os__fxYC8DXJELzQM3MKCV1l-TTU39ksg2eKAaCp3Gv3P18F62f00SyUG5gwEWgasC9gTtcEILo-oIDtrPEFCkBXteNABa6qbuaiRSdeN2AHxe5fysBzb9i8Rz3UiAMDv0oUQpv_ogWWMjkYriRgbRwdajkz-Dgt3kizJCIKPvPeQBp5baHtthDpVtKDRXe3fNeExwMW6WAQBQIYllYxSQtpPtDfnV1BQuDdguL50Kig&h=KPGIcJAk-owlAWX7_tdZb5un4mo2eO5t0Xm2FlJx3y8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n - \ \"name\": \"MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n - \ \"status\": \"InProgress\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258457449886&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=sgZkQafzh1MVtecm7QetQHk3e8xrI3BLJ_OrkNoFM44sSvQ1OQlA4fTqq8YKm97_waP1acUYvqGCYwBAy0J93bTpFD0DhaYVmvLQ-O0jd3Gt_bcacb2RyEqixy0UhxaLgbAPVCvokiJwROXpdzIy_iYOgqrUpyP3usUosqKK8Y2XbfMyUW_KGumKzeGrSURRZW4i2IUOdslbI5PC9FKvNMj0dBcwN5w5y3aagCBdti8_CQqO8ElhHaJXz9LDhZ6DmiGMbkYkO6WbXFKzoJ1deZg1Vwk4nnoRo9TYYfdTKdPQwI5Wpc2nCoFDSZDKqa5ojlVQ7a5XBkBvsjS1qAVtwA&h=cFk3iWdKCnMZ5gMcPElkOV965gdzVqZGGszD_Yl3sO8 - cache-control: - - no-cache - content-length: - - '345' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:37:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationResults/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258457606244&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=tBz-AfPFxu436n0audXshfL4suCJFiUSfwuSs0-G_tGQIqoHwKcp5L2goz3iw_f015jqyJ96T5HQixis3SE8zcQIZhm9_CohH9lTNiWE41gJ_F_0OuHXgCBURcpc-ghnih2_V8_oAIP7f6iWuNK92faI3FBGQ0NwK_fh1uHJMplH8yZOA8OLfl7Hisbjoiy3t0JyvDROxOXtfGXbsTNjmcWN7veH5BCEjB1As_stEQoKtcR5JZbY1Ld5bj_nhjwgrkT4-DIjxb-VazZGVPZ9Ce5G-ajr-ePgHlS6QevhHHg2tCEFSnL5vxNS0_0j3NVx1uXSs_64r2i7tY_X_vz07w&h=3VCf0z1qS8dTOZey14MIngeqB7XfiniTgUEA3DNCNug - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/0afe9313-66b5-4c45-a771-2f6c91e8ca43 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 58CA3A08EE6E43909BCEF83BC74BFCCA Ref B: BN1AA2051012029 Ref C: 2026-09-14T23:37:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - resource delete - Connection: - - keep-alive - ParameterSetName: - - --id - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=?api-version=2026-07-01&t=639250258452711856&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=LFSNZerbtRz1g0MrfpX35He-fWbYbUIn-LwxoFg5tkfsVpxBrqgloG7-TtXJAjh_WHWErJWvA7sow3w7cuTGmHIXL-z_4506OCul6loWV0Os__fxYC8DXJELzQM3MKCV1l-TTU39ksg2eKAaCp3Gv3P18F62f00SyUG5gwEWgasC9gTtcEILo-oIDtrPEFCkBXteNABa6qbuaiRSdeN2AHxe5fysBzb9i8Rz3UiAMDv0oUQpv_ogWWMjkYriRgbRwdajkz-Dgt3kizJCIKPvPeQBp5baHtthDpVtKDRXe3fNeExwMW6WAQBQIYllYxSQtpPtDfnV1BQuDdguL50Kig&h=KPGIcJAk-owlAWX7_tdZb5un4mo2eO5t0Xm2FlJx3y8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002/operationStatus/MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n - \ \"name\": \"MTAyMztiZDYxNDM1Zi0zZjI3LTQ2YjItOWMxYS00ZTA5ZjVhZjIzNGM=\",\r\n - \ \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '344' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 14 Sep 2026 23:38:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/0b13a840-f8fa-411b-92b9-64279356bef7 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 39A199EBAEDA4B86A44072AF83EFB4D9 Ref B: BN1AA2051015029 Ref C: 2026-09-14T23:38:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate, zstd - CommandName: - - resource delete - Connection: - - keep-alive - ParameterSetName: - - --id - User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"}],"resourceTypes":[{"resourceType":"registries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/resync","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-06-01-preview","2025-05-01-preview","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2025-11-01","2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["West + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"},{"applicationId":"e81c7467-0fc3-4866-b814-c973488361cd","roleDefinitionId":"212c936c-5360-4b3b-b2a1-b1eba3849a6f"},{"applicationId":"c505e273-0ba0-47e7-a0bd-f48042b4524d","roleDefinitionId":"a3d1c624-1f2f-41e8-9dc7-53fd55bcd821"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-11-01-preview","2021-11-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-04-01","2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Indonesia + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-01-15","2021-11-15","2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/deletedVaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-11-01-preview","2024-10-01","2024-09-30-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2024-09-30-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-09-10","2022-09-01-preview","2022-08-01","2022-06-01-preview","2022-05-01","2022-04-01","2022-03-01","2022-02-01","2022-01-01","2021-12-01","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"},{"resourceType":"locations/capabilities","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Spain Central","New Zealand North","Mexico Central","Israel + Central","Italy North","Indonesia Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-02-28-preview","2025-02-01","2025-01-01","2024-11-01-preview","2024-10-01","2024-09-30-preview","2024-07-30-preview","2024-04-30-preview","2024-04-01","2024-02-01","2024-01-31-preview","2024-01-01","2023-08-01","2023-07-01-preview","2023-06-01","2023-04-01","2023-02-01","2023-01-01","2022-10-01","2022-09-30-preview","2022-01-31-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2022-01-31-preview"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '21796' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 25 Apr 2025 09:49:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F9F0D5481907418381FDFE77AEB430D5 Ref B: SEL221051804033 Ref C: 2025-04-25T09:49:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2025-02-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 25 Apr 2025 09:49:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/b36d76ad-341b-482b-b28d-720890097964 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' + x-msedge-ref: + - 'Ref A: FFE2EC7123264F3FA0D42878EF4BA9E2 Ref B: SEL221051504021 Ref C: 2025-04-25T09:49:51Z' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["West + SupportsLocation"},{"resourceType":"registries/cacheRules","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East - US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"None"},{"resourceType":"registries/credentialSets","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-06-01-preview","2023-01-01-preview","2022-02-01-preview","2021-12-01-preview","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPoolsOperationResults","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","South Central US","West Europe","North Europe","Australia East","France - Central","East Asia","Canada Central","Central US","East US 2","West US 2","Switzerland - North","Germany West Central","West US 3","Sweden Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Australia - Central 2","Australia Central","Qatar Central","Germany North","Poland Central","France - South","Italy North","Israel Central","Spain Central","Mexico Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Belgium Central","Denmark - East","Austria East","India South Central"],"apiVersions":["2026-09-01-preview","2026-03-01-preview","2026-01-01-preview","2025-11-01","2025-06-01-preview","2025-05-01-preview","2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Canada + Central","Central US","East Asia","East US 2","North Europe","France Central","Switzerland + North","Central US EUAP","East US 2 EUAP","Australia Southeast","Brazil South","Canada + East","Central India","Japan East","Japan West","North Central US","Southeast + Asia","South India","UK South","UK West","West US","West Central US","Korea + Central","South Africa North","UAE North","Switzerland West","UAE Central","Brazil + Southeast","Germany West Central","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-03-01-preview","2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2025-03-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Sweden + South","South Africa West","Indonesia Central"],"apiVersions":["2025-03-01-preview","2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/authorize","locations":["East + US"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","Central + US","South Africa North","UAE North","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/updatePolicies","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","South + Africa North","UAE North","France Central","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","Switzerland West","UAE Central","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"registries/eventGridFilters","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","South Africa North","UAE + North","France Central","Central US","Canada East","Canada Central","UK South","UK + West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2023-07-01","2022-12-01","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","East US 2 EUAP","Central US + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Australia Central 2","Australia Central","Qatar + Central","Germany North","Poland Central","France South","Italy North","Israel + Central","Spain Central","Mexico Central","New Zealand North","East US 2 EUAP","Central + US EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Korea + Central","France Central","South Africa North","UAE North","Switzerland North","UAE + Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Jio India West","Jio India + Central","Sweden Central","Australia Central","Qatar Central","Australia Central + 2","Germany North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","New Zealand North","Central US EUAP","East US 2 + EUAP","Sweden South","South Africa West","Indonesia Central"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/GetCredentials","locations":["West + US","West Central US","South Central US","East US","Central US","East US 2","North + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredentials","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland North","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2017-03-01"],"capabilities":"None"},{"resourceType":"swagger","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Central US EUAP","East US 2 EUAP","Brazil South","Canada + East","Canada Central","West Europe","North Europe","UK South","UK West","Australia + East","Australia Southeast","Central India","East Asia","Japan East","Japan + West","Southeast Asia","South India","Korea Central","France Central","South + Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany + West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway + West","Sweden Central","Sweden South","Jio India West","Jio India Central","Australia + Central 2","Australia Central","Qatar Central","South Africa West","Germany + North","Poland Central","France South","Italy North","Israel Central","Spain + Central","Mexico Central","Indonesia Central","New Zealand North"],"apiVersions":["2025-04-01","2025-03-01-preview","2024-11-01-preview","2024-01-01-preview","2023-11-01-preview","2023-08-01-preview","2023-07-01","2023-06-01-preview","2023-01-01-preview","2022-12-01","2022-02-01-preview","2021-12-01-preview","2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '55193' + - '57783' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:38:26 GMT + - Fri, 25 Apr 2025 09:49:55 GMT expires: - '-1' pragma: @@ -8059,9 +7605,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 537C6F91FF6940B7BFC9B0A560C4C132 Ref B: BN1AA2051014009 Ref C: 2026-09-14T23:38:26Z' + - 'Ref A: 3A13299400CB4680859362EF68DC9DED Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' status: code: 200 message: OK @@ -8071,7 +7617,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource delete Connection: @@ -8081,10 +7627,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2025-04-01 response: body: string: '' @@ -8093,15 +7638,13 @@ interactions: - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview, 2022-02-01-preview, 2022-12-01, 2023-01-01-preview, 2023-06-01-preview, 2023-07-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01-preview, - 2024-11-01-preview, 2025-03-01-preview, 2025-04-01, 2025-05-01-preview, 2025-06-01-preview, - 2025-09-01-preview, 2025-11-01, 2025-12-01-preview, 2026-01-01-preview, 2026-03-01-preview, - 2026-09-01-preview, 2026-11-01 + 2024-11-01-preview, 2025-03-01-preview, 2025-04-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:38:27 GMT + - Fri, 25 Apr 2025 09:49:59 GMT expires: - '-1' pragma: @@ -8113,13 +7656,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/a57f897c-9fcb-4e23-b751-a9b4ea7744f4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/1a53184b-df43-41f4-9fb7-297f87d9f21c x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '11999' x-msedge-ref: - - 'Ref A: 2FC95FE3BB43417BA10A9D51559432CD Ref B: BN1AA2051012027 Ref C: 2026-09-14T23:38:27Z' + - 'Ref A: ECF92E4BB06E40A6A6BCBE536FD795D7 Ref B: SEL221051504045 Ref C: 2025-04-25T09:49:55Z' status: code: 200 message: OK @@ -8129,7 +7672,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource delete Connection: @@ -8137,13 +7680,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"},{"applicationId":"3471ca03-f150-4759-88e6-0bfc97daf723","roleDefinitionId":"6f3c9b2e-8a4f-4c6e-b7e2-9f1d3a8e5c42"},{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"fa277644-d8f0-4837-aee5-14a80249c27a"},{"applicationId":"f77c2a8f-8a0a-4776-8e0a-bcb2549610ca","roleDefinitionId":"7bd82bd2-47d1-40d1-b6c2-1f9da25af8dd","managedByRoleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2","managedByAuthorization":{"additionalAuthorizations":[{"applicationId":"9bc4cc98-c5f0-4916-b2ef-b55848ef0f48","roleDefinitionId":"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2"}]}},{"applicationId":"1387301c-59b7-4204-84b8-1b7559500626","roleDefinitionId":"e0cecd6e-3cd5-4925-ab2c-e44aec5ddd22"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8152,10 +7694,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8164,10 +7704,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8176,10 +7714,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8188,10 +7724,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -8200,10 +7734,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8211,10 +7743,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8222,10 +7752,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France @@ -8233,10 +7761,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -8244,10 +7770,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8256,10 +7780,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8268,10 +7790,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8280,10 +7800,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan @@ -8291,10 +7809,8 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","Switzerland - West","France South","Norway West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverDomainLists/bulk","locations":["West Central US","East US","UK South","East US 2","West Europe","North Europe","Australia East","South Central US","North Central US","West US 2","West US 3","Southeast @@ -8303,44 +7819,25 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany - North","Australia Central","UAE Central","New Zealand North","Qatar Central","Malaysia - West","Indonesia Central","India South Central","Austria East","Chile Central","Belgium - Central","Korea South","Poland Central","Brazil Southeast","South Africa West","France - South","Norway West","Switzerland West","Denmark East"],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2026-07-01-preview","2025-10-01-preview","2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","North - Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["global","Central + North","Australia Central","UAE Central","New Zealand North","Qatar Central","Indonesia + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2025-05-01","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2026-04-01","2025-11-01","2025-10-01","2025-05-16-preview","2025-03-01","2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"networkExperimentProfiles","locations":["global","Central - US","East US","East US 2","North Central US","South Central US","West US","West - US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West + South","Australia East","Australia Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8348,10 +7845,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8359,10 +7857,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8370,100 +7869,40 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authorizationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"authenticationPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01"],"defaultApiVersion":"2026-01-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8471,70 +7910,77 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8542,20 +7988,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8563,10 +8011,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Sweden Central","Qatar Central","Poland Central","Italy North","Israel - Central","Mexico Central","Spain Central","New Zealand North","Indonesia Central","Denmark - East","Chile Central","Malaysia West","Austria East","Belgium Central","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","UAE + North","Switzerland West","Germany North","Norway West","Brazil Southeast","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8574,10 +8023,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8585,10 +8035,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8596,10 +8047,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8607,10 +8059,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8618,31 +8071,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"expressRouteLags","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8650,10 +8094,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -8661,50 +8106,51 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8712,20 +8158,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","India South Central","Qatar + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -8733,30 +8181,29 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Denmark East","Chile Central","Malaysia West","Austria East","Belgium - Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2024-07-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -8764,96 +8211,114 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Denmark East","Chile Central","Malaysia - West","Austria East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"networkSecurityPerimeters","locations":["West + Central US","Jio India West","Jio India Central","North Central US","West + US","West Europe","UAE Central","Germany North","East US","West India","East + US 2","Australia Central","Australia Central 2","South Africa West","Brazil + South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland + West","East Asia","South Africa North","UK South","South India","Australia + Southeast","France South","West US 2","Sweden Central","Japan West","Norway + East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea + Central","Southeast Asia","South Central US","Norway West","Australia East","Japan + East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West + Central US","Jio India West","Jio India Central","North Central US","West + US","West Europe","UAE Central","Germany North","East US","West India","East + US 2","Australia Central","Australia Central 2","South Africa West","Brazil + South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland + West","East Asia","South Africa North","UK South","South India","Australia + Southeast","France South","West US 2","Sweden Central","Japan West","Norway + East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea + Central","Southeast Asia","South Central US","Norway West","Australia East","Japan + East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","East US 2 EUAP","Central US EUAP","Sweden + South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview","2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","Italy North","Israel Central","Mexico + Central","Spain Central","New Zealand North","Indonesia Central","East US + 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Sweden Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany @@ -8862,8 +8327,8 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central US","Australia East","West US","South Central US","France Central","South @@ -8873,95 +8338,92 @@ interactions: Central 2","Australia Southeast","South India","Canada East","France South","Germany North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand - North","Southeast Asia","Japan West","West Central US","Chile Central","Austria - East","West US 3","Denmark East","Belgium Central","Malaysia West"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East + North","Southeast Asia","Japan West","West Central US","East US 2 EUAP","Central + US EUAP","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East US 2","West US 2","East US","West Europe","UK South","North Europe","Central - US","Australia East","West US","South Central US","Canada Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"locations/nspServiceTags","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West + Central US","Jio India West","North Central US","West US","West Europe","UAE + Central","Germany North","East US","West India","East US 2","Australia Central","Australia + Central 2","South Africa West","Brazil South","UK West","North Europe","Central + US","UAE North","Germany West Central","Switzerland West","East Asia","South + Africa North","UK South","South India","Australia Southeast","France South","West US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia + Central","East US 2 EUAP","Central US EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Central US EUAP","East US 2 EUAP","South Africa West","UAE Central","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK + West","West US","East US","North Europe","West Europe","West Central US","South + Central US","Australia East","Australia Central","Australia Southeast","UK + South","East US 2","West US 2","North Central US","Canada Central","France + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West - US 3","Sweden Central","Japan East","UK West","West US","East US","North Europe","West - Europe","South Central US","Australia East","Australia Central","Australia - Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","West Central US","Central US","Israel Central","Spain Central","Mexico - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy + US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","South Central US","Australia East","Australia + Central","Australia Southeast","UK South","East US 2","West US 2","North Central + US","Canada Central","France Central","West Central US","Central US","Israel + Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Central + US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil - Southeast","West US 3","Sweden Central","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK + West","West US","East US","North Europe","West Europe","West Central US","South + Central US","Australia East","Australia Central","Australia Southeast","UK + South","East US 2","West US 2","North Central US","Canada Central","France + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy - North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Sweden - Central","UAE North","Australia Central 2","UAE Central","Germany North","Central - India","Korea South","Switzerland North","Switzerland West","Japan West","France - South","South Africa West","West India","Canada East","South India","Germany - West Central","Norway East","Norway West","South Africa North","East Asia","Southeast - Asia","Korea Central","Brazil South","Japan East","UK West","West US","East - US","North Europe","West Europe","West Central US","South Central US","Australia - East","Australia Central","Australia Southeast","UK South","East US 2","West - US 2","North Central US","Canada Central","France Central","Central US","Israel - Central","Spain Central","Mexico Central","New Zealand North","Indonesia Central","Chile - Central","Malaysia West","Austria East","Belgium Central","Denmark East","India - South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, + North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio + India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany + North","Central India","Korea South","Switzerland North","Switzerland West","Japan + West","France South","South Africa West","West India","Canada East","South + India","Germany West Central","Norway East","Norway West","South Africa North","East + Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West + US","East US","North Europe","West Europe","West Central US","South Central + US","Australia East","Australia Central","Australia Southeast","UK South","East + US 2","West US 2","North Central US","Canada Central","France Central","Central + US","Israel Central","Spain Central","Mexico Central","New Zealand North","Indonesia + Central","Jio India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2025-01-01-preview"],"defaultApiVersion":"2025-01-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2025-01-01-preview","2024-04-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West @@ -8971,72 +8433,52 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2024-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/moveIpConfigurations","locations":["West - US","East US","North Europe","West Europe","East Asia","India South Central","Southeast - Asia","North Central US","South Central US","Central US","East US 2","Japan - East","Japan West","Brazil South","Australia East","Australia Southeast","Central - India","South India","West India","Canada Central","Canada East","West Central - US","West US 2","UK West","UK South","Korea Central","Korea South","France - Central","Australia Central","South Africa North","UAE North","Switzerland - North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","New Zealand North","Indonesia Central","Chile Central","Malaysia - West","Austria East","Belgium Central","Denmark East"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","capabilities":"None"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"serviceGateways","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01"],"defaultApiVersion":"2024-07-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"natGateways","locations":["West US","East - US","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9044,30 +8486,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9075,40 +8516,40 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9116,10 +8557,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9127,10 +8569,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9138,10 +8581,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9149,20 +8593,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -9170,10 +8616,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9181,10 +8628,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9192,10 +8640,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9203,10 +8652,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9214,10 +8664,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9225,10 +8676,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9236,41 +8688,29 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Indonesia + Central","zones":["3","1","2"]},{"location":"Israel Central","zones":["3","1","2"]},{"location":"Italy + North","zones":["3","1","2"]},{"location":"Japan East","zones":["3","1","2"]},{"location":"Japan + West","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"Mexico + Central","zones":["3","1","2"]},{"location":"New Zealand North","zones":["3","1","2"]},{"location":"North + Europe","zones":["3","1","2"]},{"location":"Norway East","zones":["3","1","2"]},{"location":"Poland + Central","zones":["3","1","2"]},{"location":"Qatar Central","zones":["3","1","2"]},{"location":"South + Africa North","zones":["3","1","2"]},{"location":"South Central US","zones":["3","1","2"]},{"location":"Southeast + Asia","zones":["3","1","2"]},{"location":"Spain Central","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US 2","zones":["3","1","2"]},{"location":"West + US 3","zones":["3","1","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9278,21 +8718,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Indonesia - Central","New Zealand North","Chile Central","Malaysia West","Austria East","Belgium - Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01"],"defaultApiVersion":"2025-01-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9300,21 +8730,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01"],"defaultApiVersion":"2025-05-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9322,10 +8742,12 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","South Central US STG","Brazil Southeast","Jio India Central","Sweden + South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9333,261 +8755,287 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9595,10 +9043,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9606,20 +9055,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -9627,10 +9078,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","New Zealand North","Indonesia - Central","Chile Central","Malaysia West","Austria East","Belgium Central","Denmark - East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Central US EUAP","East US 2 EUAP","South + Africa West","UAE Central","Switzerland West","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9638,20 +9090,22 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -9659,178 +9113,112 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West - Central US","North Central US","West US","West Europe","UAE Central","Germany - North","East US","West India","East US 2","Australia Central","Australia Central - 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE - North","Germany West Central","Switzerland West","East Asia","South Africa - North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Chile Central","New - Zealand North","Indonesia Central","Malaysia West","Austria East","Denmark - East","Belgium Central","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-09-01-preview","2024-07-01","2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"locations/virtualNetworks","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"locations/publicIpAddresses","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Spain Central","Mexico Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01"],"capabilities":"None"},{"resourceType":"virtualNetworkAppliances","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01","2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"interconnectGroups","locations":["West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01","2025-07-01"],"defaultApiVersion":"2025-07-01","zoneMappings":[{"location":"Australia - East","zones":["1","2","3"]},{"location":"Austria East","zones":["1","2","3"]},{"location":"Belgium - Central","zones":["1","2","3"]},{"location":"Brazil South","zones":["1","2","3"]},{"location":"Canada - Central","zones":["1","2","3"]},{"location":"Central India","zones":["1","2","3"]},{"location":"Central - US","zones":["1","2","3"]},{"location":"Chile Central","zones":["1","2","3"]},{"location":"Denmark - East","zones":["1","2","3"]},{"location":"East Asia","zones":["1","2","3"]},{"location":"East - US","zones":["1","2","3"]},{"location":"East US 2","zones":["1","2","3"]},{"location":"France - Central","zones":["1","2","3"]},{"location":"Germany West Central","zones":["1","2","3"]},{"location":"India - South Central","zones":["1","2","3"]},{"location":"Indonesia Central","zones":["1","2","3"]},{"location":"Israel - Central","zones":["1","2","3"]},{"location":"Italy North","zones":["1","2","3"]},{"location":"Japan - East","zones":["1","2","3"]},{"location":"Japan West","zones":["1","2","3"]},{"location":"Korea - Central","zones":["1","2","3"]},{"location":"Malaysia West","zones":["1","2","3"]},{"location":"Mexico - Central","zones":["1","2","3"]},{"location":"New Zealand North","zones":["1","2","3"]},{"location":"North - Europe","zones":["1","2","3"]},{"location":"Norway East","zones":["1","2","3"]},{"location":"Poland - Central","zones":["1","2","3"]},{"location":"Qatar Central","zones":["1","2","3"]},{"location":"South - Africa North","zones":["1","2","3"]},{"location":"South Central US","zones":["1","2","3"]},{"location":"Southeast - Asia","zones":["1","2","3"]},{"location":"Spain Central","zones":["1","2","3"]},{"location":"Sweden - Central","zones":["1","2","3"]},{"location":"Switzerland North","zones":["1","2","3"]},{"location":"UAE - North","zones":["1","2","3"]},{"location":"UK South","zones":["1","2","3"]},{"location":"West - Europe","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"West - US 3","zones":["1","2","3"]}],"capabilities":"CrossResourceGroupResourceMove, - SupportsTags, SupportsLocation"},{"resourceType":"firstPartyServiceTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","New - Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria - East","Belgium Central","Denmark East","India South Central"],"apiVersions":["2026-03-01","2026-01-01","2025-09-01"],"defaultApiVersion":"2025-09-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privatetrafficmanagerprofiles/endpoints","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/healthPolicies","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/probingGateways","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/validateLink","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofiles/operations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"privatetrafficmanagerprofilesoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"topologymapsoperations","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"},{"resourceType":"topologymaps/sites","locations":["global"],"apiVersions":["2026-02-09-preview"],"defaultApiVersion":"2026-02-09-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Central US EUAP","East US + 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","North Europe","West Europe","East + Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East + US 2 EUAP","global","Central US","East US","East US 2","North Central US","South + Central US","West US","North Europe","West Europe","East Asia","Southeast + Asia","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast"],"apiVersions":["2025-01-01-preview","2024-02-01","2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central + US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North + Central US","South Central US","West US","West US 2","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central + US EUAP","East US 2 EUAP","South Africa West","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '247500' + - '217264' content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:38:28 GMT + - Fri, 25 Apr 2025 09:50:02 GMT expires: - '-1' pragma: @@ -9842,9 +9230,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '16499' x-msedge-ref: - - 'Ref A: 357B06DF677E4BAC9E777C5CD0C8BA76 Ref B: BN1AA2051012035 Ref C: 2026-09-14T23:38:28Z' + - 'Ref A: C04F98C8B5434EC981F532EC402C0BB3 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:00Z' status: code: 200 message: OK @@ -9854,7 +9242,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource delete Connection: @@ -9864,10 +9252,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2026-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2024-07-01 response: body: string: '' @@ -9875,17 +9262,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fcbadc44-93f2-4230-9528-28229219bd8d?api-version=2026-03-01&t=639250259108574525&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=b6i6Brm_f8VrUA-gV-flnEA7REiEcynFWBAmzahuJVNUsmVp-izP7ZapbkDUh1ufblIZYIPbMqjP7PPchMLhukGd60F2G8LtaMxmOPFay65lOnk6oxpUkDSd6sSFH5Nip8ZxIODEZvfX1loiTt7JM6I-VH1iOvYTlrxRaxq9ghQ3QfSzJys2Sp7hdQXWNXWZU2yzogYhRmKhVehUbkmfoQnR4MKjVUxJP7Q99-7x3zMYc6dmaGUzs0CJABupWCtNk3SS_XVLUJT8E2mRFZYxEiZIdEuoR4c86VwTNjBdIn6KzB2m0XoYqU-b_izkOSY1TNrSZ9oq8BNuve-Q7fBzqw&h=R3qGq9Qg5vvZhh2DKIgiyVpqgx_Hvx-QadGxWHvkWWQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E cache-control: - no-cache content-length: - '0' date: - - Mon, 14 Sep 2026 23:38:30 GMT + - Fri, 25 Apr 2025 09:50:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/fcbadc44-93f2-4230-9528-28229219bd8d?api-version=2026-03-01&t=639250259108730878&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=OJ0Ah0AD63U89hg45dybBINFtAwUlcqjolP26GH-3QmrRKJcy8w44l_SJMS_3foIzjeQYOAbD7n4S5XpVBybchZwpFihTANwtcGjJmwuo9mdW3YWHDVpV09M0B02ojtsXDefUIyyYMkPPVtsTzwEIr3CrlVQgKpnbUD3Pnlbmzh-4KSDZMZBiEy-fUkRWxBw-ihomJQcCsK8YCP-HnHiLt8zQn1Ah976iUbgcba62gxEQYj25eIviAufijvo_96iGxx1kgbKEQjMWRd3HrHtF3O1C5yr9_1LgrsrBdHkhPCHrH9g8kPdEqXadFrDXaPx4yO97cZZeh9eNxp6_-hzlQ&h=NfTkKAMzxGVzuOTR5kcIJuiSwgryXGHj47rzTt1mCvc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062372959&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=ryZ0HaYqajQCYVen-6FUFbXNpw3olloaqo4pixCIC8lMDbbprZxw73VbeHtcMctgdVtSE4Z6ly0BesuQ1gkblQJGiuqRtJlGS_lrKboosaAHF6adyQ4UH3WKQWDMTPLPKsX0-Yxy7UdBUJzObQJPDoGg5PuqvUtKt92k-I5fqU2u7GB1VAvz2rHPnwPW4_PVel6tqznKpsbY6TYUzrvTPIuWRMFUQ_87LmA44kqKjFS_ohwB_KijQMCOBkPkXF7v3aYDeexZxmRg18peXkVyvaBILn9N1-txnxzxx2aDHFWWnl1wpnlGZobLPTgbh62oUTC4fGXLOPo-uWDiUAXSew&h=yO8x9w5WPlTS0cgHJIJGChoGYwRxs8TEIIMGfueuBbY pragma: - no-cache strict-transport-security: @@ -9895,18 +9282,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53580eb3-8ab1-4174-956e-44360903785c + - b9f9f9c2-7b86-40c8-8fcf-bcf043d55843 x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/westus/c367b467-342a-4d8a-8d21-09bd082bc5d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/501b84f0-6c16-4fbb-9836-08d592a8a1ee x-ms-ratelimit-remaining-subscription-deletes: - - '199' + - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' - x-ms-throttle-levels: - - operationRatePct=0.1, operationConcurrencyPct=0.3, subscriptionWriteRatePct=0.3, - etc + - '11999' x-msedge-ref: - - 'Ref A: B282FAF9EECB4B689A221DB30D8C086A Ref B: BN1AA2051012039 Ref C: 2026-09-14T23:38:29Z' + - 'Ref A: 772976AE407940DC9ED54814F78A1B23 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:04Z' status: code: 202 message: Accepted @@ -9916,7 +9300,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, zstd + - gzip, deflate CommandName: - resource delete Connection: @@ -9924,10 +9308,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.14.2 (Linux-6.8.0-1065-azure-x86_64-with-glibc2.35) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fcbadc44-93f2-4230-9528-28229219bd8d?api-version=2026-03-01&t=639250259108574525&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=b6i6Brm_f8VrUA-gV-flnEA7REiEcynFWBAmzahuJVNUsmVp-izP7ZapbkDUh1ufblIZYIPbMqjP7PPchMLhukGd60F2G8LtaMxmOPFay65lOnk6oxpUkDSd6sSFH5Nip8ZxIODEZvfX1loiTt7JM6I-VH1iOvYTlrxRaxq9ghQ3QfSzJys2Sp7hdQXWNXWZU2yzogYhRmKhVehUbkmfoQnR4MKjVUxJP7Q99-7x3zMYc6dmaGUzs0CJABupWCtNk3SS_XVLUJT8E2mRFZYxEiZIdEuoR4c86VwTNjBdIn6KzB2m0XoYqU-b_izkOSY1TNrSZ9oq8BNuve-Q7fBzqw&h=R3qGq9Qg5vvZhh2DKIgiyVpqgx_Hvx-QadGxWHvkWWQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/463ed57a-1445-4daf-ae04-30bfaae26a3a?api-version=2024-07-01&t=638811714062214748&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=eqSkHFVvhItYOVSMMbytJjyKxuEBQ4RHWc9GHIx53RJwC0FcMIdvuiKI7Q7-4Cy4P9CooJmJmRkvAgSitzLz4Pb_soD7tWmqN9lQtnDIvGgaMdPLhIOnGzfJsrQmVQfajLGmMbnLsXhj4R81f6Ut0C4OYsadEaVNvHvl3-ySeHP3Xo9WsYwfkiF9u2QHp0x5XdT1I54hTyzpVDMtZkCz5vW7Q17YVl6a_vHPByWVirYQ9SG22iQp8RBZsWQWTz-V4f-ALx25ugDtkrGFLWwgMQFzFHcaO2AbZvBeWpz5pJEybQDjjyC9YVopd60A7cu-XhEt-50fe6i4u-UCQ9e9iA&h=qZxUYU1WGdnYoUFhoDcGS_QA_AzGs7PaWqBsfUvX93E response: body: string: '{"status":"Succeeded"}' @@ -9939,7 +9322,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 14 Sep 2026 23:38:31 GMT + - Fri, 25 Apr 2025 09:50:05 GMT expires: - '-1' pragma: @@ -9951,16 +9334,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fd38667-772e-4c60-a0d3-c6c8347db009 + - 9fb10464-98bd-4864-b76b-161ff5a3247d x-ms-operation-identifier: - - appId=ebaf1741-13bf-4ccb-9cf6-e74d3838634b,tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=56fc9cfd-1a57-41e3-8058-7fe7c550d95f/eastus/74482348-d8e6-4c5d-87cf-ecdcb7f2c61a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=0bd024d1-ea73-4957-80a4-51aefc36613b/koreacentral/788679c1-b1e4-4748-b17d-99d1ff51dfe9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-ms-throttle-levels: - - operationConcurrencyPct=0.5, subscriptionReadRatePct=0.1, etc + - '16499' x-msedge-ref: - - 'Ref A: 8477C8F747664B6485A555EB17293EDA Ref B: BN1AA2051015047 Ref C: 2026-09-14T23:38:31Z' + - 'Ref A: 4C7B77964DE94F729CC2A4B8BF54CE72 Ref B: SEL221051504031 Ref C: 2025-04-25T09:50:06Z' status: code: 200 - message: '' + message: OK version: 1 From c959034b6a69505aa624619d7834c3d0cf5328eb Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 11:33:55 +1000 Subject: [PATCH 14/19] update acr version in container apps --- .../latest/recordings/test_container_acr.yaml | 6 +++--- .../test_container_acr_env_var.yaml | 6 +++--- ...erapp_manualjob_private_registry_port.yaml | 16 +++++++-------- ...ljob_registry_acr_look_up_credentical.yaml | 20 +++++++++---------- ...st_containerapp_private_registry_port.yaml | 20 +++++++++---------- ...rapp_registry_acr_look_up_credentical.yaml | 16 +++++++-------- ...containerapp_registry_identity_system.yaml | 20 +++++++++---------- ...t_containerapp_registry_identity_user.yaml | 20 +++++++++---------- .../test_containerappjob_registry_crud.yaml | 6 +++--- 9 files changed, 65 insertions(+), 65 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml index 661c5b8d49a..11d3c22664d 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr.yaml @@ -414,7 +414,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -466,7 +466,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004","name":"containerapp000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T04:51:14.2387222+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T04:51:14.2387222+00:00"},"properties":{"loginServer":"containerapp000004.azurecr.io","creationDate":"2026-03-24T04:51:14.2387222Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T04:51:21.8343599+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T04:51:21.8344004+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -516,7 +516,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"containerapp000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml index f2d2df16cba..b9e04d94405 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_container_acr_env_var.yaml @@ -414,7 +414,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -466,7 +466,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002","name":"containerapp000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:55:14.094551+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:55:14.094551+00:00"},"properties":{"loginServer":"containerapp000002.azurecr.io","creationDate":"2026-03-24T05:55:14.094551Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:55:22.0537859+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:55:22.0538196+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -516,7 +516,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000002/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"containerapp000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml index 5994906ab1c..54f8b79a001 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_private_registry_port.yaml @@ -414,7 +414,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -513,7 +513,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -561,7 +561,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, @@ -619,7 +619,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -639,7 +639,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs pragma: - no-cache strict-transport-security: @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7945ecdd-3444-11f1-8e77-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113572199314577&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=o6iL1nKb4lXRLxDq1bfb3YsZH1uafJULgXzbMJrgDJbq_sEL3-CgLJ7FVq5-eujQd22pRQhH8xPwsxl-5W_lYL_jBd5Oplmk5ma-yGyJFfpTR0V3rxRTJx-7tJdB7uleAlAwpHhUujBa8MMCGBDCSlJ-AYv7iXyP44P8DLd1dURTRq4zrTROcwZS_Wa1AXraVNX7hCm3_OxCuC3ts618-YvENDgcTb7yvb9cEPtMBeOr75REok0AWkM8goIYWFNOQjGBaWmgaHlRHblPVFkFt7OS6IaZ8UjUDqYMKNjKK4kJOLhcvBa5D8lLwLTMA_E5D8lQkOjKKYwXmWbz6w_tiA&h=wynPQUBf_K6fKvYDG2mzZ5zhho8-wM2WlmaeI2uH9cs response: body: string: '{"status":"Succeeded"}' @@ -770,7 +770,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002","name":"acr000002","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.4373544+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.4373544+00:00"},"properties":{"loginServer":"acr000002.azurecr.io","creationDate":"2026-04-09T18:46:42.4373544Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.5525516+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.5526071+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -820,7 +820,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000002/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"acr000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml index 4ca8e0e1aaa..791bfbc80fd 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_manualjob_registry_acr_look_up_credentical.yaml @@ -414,7 +414,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -513,7 +513,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -561,7 +561,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, @@ -619,7 +619,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -639,7 +639,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs pragma: - no-cache strict-transport-security: @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113567802110966&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=hneCc7fUoBumIOelN8KjahrGCQ-KMBZ6ZFaPVUed-fK38sKMr5VXHXzMrQT9V12JboHBd-P2rZa2jXG-I3TOsJb4C75B3Eq-x-E_v-UElbf3xPNDgvtmqbmafSeAd0Kaa--nRC6uQs5jmsAUAoPiPhIGilfPmK8zkNm8kGFfQ74ClA-k3I2BNqHRv9NXGLzQnAeWnuUiUbuwXwfyhZHMGeowW26h_raHw-TpMeVK23f9DUnpL9eKqagHy7NTX85CuPqMvAkT90lW4Nj1fjfmEt5AuULmWeBWs2xbMUYl6ogOtroxtEcYKGNqxuHRZcxrSrh4twGqYfLhbqy59YcFgQ&h=JbewYn0IGx85jntIThHS_39kDJtqW4NPvLPHX8ufyjs response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -691,7 +691,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w pragma: - no-cache strict-transport-security: @@ -725,7 +725,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-74e6569f-3443-11f1-85bb-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113567815368062&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Bf67Hu-5tTVOK85vJ67OysaDPud7LMGpxIFFSx_CLZf98dW-ESzKjLILL6AfW5fUBk2iwKluBxKQLcnQzAP6v59eEFiyi9P-YP6DdpywVXwwZyfY_ybIZK6P0dIMiNH5jJpTgUoFy3ldcaSkadFsI6qnIiUbf9O8ZgJ-TE3rTUFclAd2DvS3j1QIGM2qDYIBrmrisMd1hT1D2y76qrTO8thzAC-NPfPcwm7IC_DT-PuMWj3qrtsIs_541pLdbe7cnf6-4n7HlF5PON6eDK_ZTAKx07CGO5A1LGGKK9linwfcvqQHbny4R8_wB9ohH02gDO-YW7BT-q3FhI8y3DWuCA&h=7k9BOmFQPf67_DBUr_5jOH4WmzlWeKy1VNwX4CEH13w response: body: string: '{"status":"Succeeded"}' @@ -1557,7 +1557,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:39:25.600557+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:39:25.600557+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:39:25.600557Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:39:32.8075787+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:39:32.8076207+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1608,7 +1608,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml index 73325194a10..16b8f6304dd 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_private_registry_port.yaml @@ -414,7 +414,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -513,7 +513,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -561,7 +561,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, @@ -619,7 +619,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -639,7 +639,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs pragma: - no-cache strict-transport-security: @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113563845085553&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=kLDDBnUkyCHGPmMw2vicXKSf5ULeczQz2ZzcvFyuCLNO-peQ-H2y5AJqve0PFBsJeBoRStNhQ6uIzYr_YLbNcwdPHeOdqrlibGynZN29XR4GEXICDSgqoReP19O7EZV65lKRWxCwq_Ulb8I8yd8WSdd0SlSx8DfDYRLhRSLPVQMUB8z4t6sDK9mVX-IvBoJBngyNTmtD6Dg3fd6V5HbzN1p4cCs68Htpr1n3pIgGLViL2LTpIdW53UFVkFD3teiPVLk0luSvPvesmh157qokrl8nOzE-n92Yx5R2iZbghnEu_RQrqOebgOanvQaLVSgGpVgf-VENQrKL12N8IhnLxA&h=cDPhm5CwtItW9LIR-v5aex_DoCUC5fmUgiLgXYyYuDs response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -691,7 +691,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 pragma: - no-cache strict-transport-security: @@ -725,7 +725,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-89715492-3442-11f1-ab10-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113563857502370&c=MIIHxDCCBqygAwIBAgIRAJbrgketDbWHLEx1EpPCeH4wDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwODAwMDQ1MloXDTI2MTAwMzA2MDQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDT3FOWry_6qK0dbuwtMK4T4HuDo_lxyL6jb91_Fr1VWY_VRVB7zp7HCgghkwofjjGAbbdIqDseNKJdMcooubZaRzrViDXEgbnaN8vC-4cZ4fjDUhtZh80l4sEyp_iBCPcY7I-xDOLiz7i1vlpvCL7tA0iKHuk6AAPDQk4fPmFWUwUWR3SajkDmuQjTPVWhQyEOJVGJNf6hvyBKFjGuXqSOk8prQb8yn6q8TftPg2b9zjlfxfHQEZqdePVaY7VeW2ljF2sUmWsNvQikg3g_Zh9I6j0tT0DW51c8CoF8PrVglMgLQVrYCdAeE30Fi0vIiXCT0XOP-0RYInckGEJqDB8JAgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQZbVl_wKnmyxn5O2JcAqCDdVaL3zAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS81NS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQCJKCm8sITuRyQTfwfcPh1P_Y_FIoUY5rZqcJP5tAOTOk1M7UmZj3IhXCBuZfq1T1jLPVgMAAzHcyE4XjPrHalXdgSI6SJ0gq8I0X_ncsTkhomAsA5RU_sucWZ9nWgbXX-QDJi_bM0mzxsaKErSi607X1BM3DqI2SNMMgk6r2Ez8s8_vw6HLIGw7rLHx2D1muwevYyZ0dVgJa-VHCrBoSBL_ytZIofR5WUtbICE_9YIipUuxbnIRg9Vo_fv4cLzx0uLFk32vRKMroJ_zkJageE_exU-hNqZc7DSsWkROInmq7mMmyBvpTZB-q5PrEYUJi9zJZserlQTQG1e7u-Z7UEl&s=R2gKYT_l8BnfqoM7P4PW77VCIAHvX103wa04CBmlaz_Zzi_1Nqrb8nadrOG0uKvsNx7WnHLlazRs2-I5cplGQDbwvNKMksHA9gXbBBHlfVt9zE3kI-ktE8NU9ws0Go9a93P3kyGrcFvZYk3Q0BPr5U2peIeqnsBf04dMYGbUkaM-LzTYitTVpPtQ4tualNuwYVrYW9-uUFP7bYMVgH5C14QPrIAvVAWWKUyhePs2o1QUfIGADp6zzDZtR8sQYDPNXInY7aNUWmFWxfA4jayGo3a9aR-4LZN5tLEuKc52vZiWnOpxXLJNxVB5muaDIb-aLAOkIIZSI--jCKkz_d0fnA&h=m15mgjSNUVptDclgJ6rQDLF8U_F9TbPVOn0Stg-eXH4 response: body: string: '{"status":"Succeeded"}' @@ -820,7 +820,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:32:49.6992011+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:32:49.6992011+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:32:49.6992011Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:32:57.6813773+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:32:57.6814119+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -870,7 +870,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml index 0d965d54a33..63dc7d555dd 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_acr_look_up_credentical.yaml @@ -414,7 +414,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -513,7 +513,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -561,7 +561,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, @@ -619,7 +619,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -639,7 +639,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E pragma: - no-cache strict-transport-security: @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-7937ec55-3444-11f1-b90c-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113572197607112&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=UXC8Swc-10BdWM_Tciz5d-sjVZe2pmLZxJ7zAgi_5Sa84HW59vMhh4NrXzF2bn0JOn5tKMcqYZb8cfGOyQ3bsTRx0uF0zk7FgfxZtcimfRBNUHzm7D-9D37mbLR07TCBh4AfqyuzQgvKndJNevuAo2SMvRWP2_QBDk9hRSr_xm3Dbyc5LqlZlvT4tyfAlnuoUJVtg_78Qp_2yjsvsR209g903xTcsYAtiD0VI4hu2QZr5fy-KYOIJsAuwcx2zR6LM1Okk5ReGCoLrQYlfsDAihZoGQQXohjsa7DUyUq8DiMfJmHhAKRCbfEpK6RTOvtP4Zdj2YBfWlKZxShLXRkWbA&h=DP55-Jl-3HTsgZ87aM8AenaIQXr7EXKYPXmI74NG73E response: body: string: '{"status":"Succeeded"}' @@ -1502,7 +1502,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:46:42.7948827+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:46:42.7948827+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:46:42.7948827Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828131+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:46:49.3828736+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1552,7 +1552,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_system.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_system.yaml index 2b6265008fc..c6fbe91129b 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_system.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_system.yaml @@ -414,7 +414,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:56.4794149+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:56.4794149+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:55:56.4794149Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536523+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -513,7 +513,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:56.4794149+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:56.4794149+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:55:56.4794149Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536523+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -561,7 +561,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, @@ -619,7 +619,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -639,7 +639,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577710154652&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=onJW2tYCgkcZ0yHVmNmY0eDjUTsVkwkmQkGKHqqXJTFTA6RACiFYfOybycEwNdrt2mkBFWFN7J0RAzXHIgAqSqKCSZSzRBY38zhOU8YSe-ElyNTtr-IE_KiNJma7fcGYKFt8HGd5iPcTbBUepDLDStEzfuDyrB5Yy7pLBC43SbPyKmDPs1dc9qp8DiL3TOUSHY4lslubn8_GR-II6nRXSMtP4AJSMhKVl4YBl3berkD69d7tly-V_FBtUCBtssXbJL3IZX1rH2fw_j6-10XqJlJVv7F9W3HfmACfXSls_1olbN0gNtfNZJcdwbZ4k1Ndhgwc0fiNIOQgwjGtZ7Lj4g&h=sMv_MwqtAqW4MzMQU-S6OPN7Ya2QJvXBnr8SFfKChQ8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577710154652&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=onJW2tYCgkcZ0yHVmNmY0eDjUTsVkwkmQkGKHqqXJTFTA6RACiFYfOybycEwNdrt2mkBFWFN7J0RAzXHIgAqSqKCSZSzRBY38zhOU8YSe-ElyNTtr-IE_KiNJma7fcGYKFt8HGd5iPcTbBUepDLDStEzfuDyrB5Yy7pLBC43SbPyKmDPs1dc9qp8DiL3TOUSHY4lslubn8_GR-II6nRXSMtP4AJSMhKVl4YBl3berkD69d7tly-V_FBtUCBtssXbJL3IZX1rH2fw_j6-10XqJlJVv7F9W3HfmACfXSls_1olbN0gNtfNZJcdwbZ4k1Ndhgwc0fiNIOQgwjGtZ7Lj4g&h=sMv_MwqtAqW4MzMQU-S6OPN7Ya2QJvXBnr8SFfKChQ8 pragma: - no-cache strict-transport-security: @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577710154652&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=onJW2tYCgkcZ0yHVmNmY0eDjUTsVkwkmQkGKHqqXJTFTA6RACiFYfOybycEwNdrt2mkBFWFN7J0RAzXHIgAqSqKCSZSzRBY38zhOU8YSe-ElyNTtr-IE_KiNJma7fcGYKFt8HGd5iPcTbBUepDLDStEzfuDyrB5Yy7pLBC43SbPyKmDPs1dc9qp8DiL3TOUSHY4lslubn8_GR-II6nRXSMtP4AJSMhKVl4YBl3berkD69d7tly-V_FBtUCBtssXbJL3IZX1rH2fw_j6-10XqJlJVv7F9W3HfmACfXSls_1olbN0gNtfNZJcdwbZ4k1Ndhgwc0fiNIOQgwjGtZ7Lj4g&h=sMv_MwqtAqW4MzMQU-S6OPN7Ya2QJvXBnr8SFfKChQ8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577710154652&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=onJW2tYCgkcZ0yHVmNmY0eDjUTsVkwkmQkGKHqqXJTFTA6RACiFYfOybycEwNdrt2mkBFWFN7J0RAzXHIgAqSqKCSZSzRBY38zhOU8YSe-ElyNTtr-IE_KiNJma7fcGYKFt8HGd5iPcTbBUepDLDStEzfuDyrB5Yy7pLBC43SbPyKmDPs1dc9qp8DiL3TOUSHY4lslubn8_GR-II6nRXSMtP4AJSMhKVl4YBl3berkD69d7tly-V_FBtUCBtssXbJL3IZX1rH2fw_j6-10XqJlJVv7F9W3HfmACfXSls_1olbN0gNtfNZJcdwbZ4k1Ndhgwc0fiNIOQgwjGtZ7Lj4g&h=sMv_MwqtAqW4MzMQU-S6OPN7Ya2QJvXBnr8SFfKChQ8 response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -691,7 +691,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577723937116&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Cy1SBH5o_VZR3KS8IaGSd1ySXH49O3bBGVSpnSQLSafTfX3woCMuPHRR-IPGd-Eh7OkpM15Vf3DukvVZhzpaW2_Ukr3koCTOyL38nZb0PFSke9cw2bR1s4UJNH1o4pywgsD3_fcp0z831WYyYbZVUKXslwjX7AE7fYvil8LYMo_mOVjpshcmCv8K8pdj0T94lctjRoxXYApX8rt_KOdQODaWONPeisLo1dE5LxvSfzOTxxz9ED9lSxgXZt34l0ammpzOdcrv11BafwWv0TaHuAbp2obIEwXSHR_D6yaZRYioHi5Xx2jiLzszxCNLyX1to8FMiqZvrxwSWeY_pNgrdw&h=UGquHK_LkZNs3BB7cB3JwDW8cJUSsATIuYaCFq27Ce0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577723937116&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Cy1SBH5o_VZR3KS8IaGSd1ySXH49O3bBGVSpnSQLSafTfX3woCMuPHRR-IPGd-Eh7OkpM15Vf3DukvVZhzpaW2_Ukr3koCTOyL38nZb0PFSke9cw2bR1s4UJNH1o4pywgsD3_fcp0z831WYyYbZVUKXslwjX7AE7fYvil8LYMo_mOVjpshcmCv8K8pdj0T94lctjRoxXYApX8rt_KOdQODaWONPeisLo1dE5LxvSfzOTxxz9ED9lSxgXZt34l0ammpzOdcrv11BafwWv0TaHuAbp2obIEwXSHR_D6yaZRYioHi5Xx2jiLzszxCNLyX1to8FMiqZvrxwSWeY_pNgrdw&h=UGquHK_LkZNs3BB7cB3JwDW8cJUSsATIuYaCFq27Ce0 pragma: - no-cache strict-transport-security: @@ -725,7 +725,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577723937116&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Cy1SBH5o_VZR3KS8IaGSd1ySXH49O3bBGVSpnSQLSafTfX3woCMuPHRR-IPGd-Eh7OkpM15Vf3DukvVZhzpaW2_Ukr3koCTOyL38nZb0PFSke9cw2bR1s4UJNH1o4pywgsD3_fcp0z831WYyYbZVUKXslwjX7AE7fYvil8LYMo_mOVjpshcmCv8K8pdj0T94lctjRoxXYApX8rt_KOdQODaWONPeisLo1dE5LxvSfzOTxxz9ED9lSxgXZt34l0ammpzOdcrv11BafwWv0TaHuAbp2obIEwXSHR_D6yaZRYioHi5Xx2jiLzszxCNLyX1to8FMiqZvrxwSWeY_pNgrdw&h=UGquHK_LkZNs3BB7cB3JwDW8cJUSsATIuYaCFq27Ce0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c3862610-3445-11f1-9a48-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577723937116&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=Cy1SBH5o_VZR3KS8IaGSd1ySXH49O3bBGVSpnSQLSafTfX3woCMuPHRR-IPGd-Eh7OkpM15Vf3DukvVZhzpaW2_Ukr3koCTOyL38nZb0PFSke9cw2bR1s4UJNH1o4pywgsD3_fcp0z831WYyYbZVUKXslwjX7AE7fYvil8LYMo_mOVjpshcmCv8K8pdj0T94lctjRoxXYApX8rt_KOdQODaWONPeisLo1dE5LxvSfzOTxxz9ED9lSxgXZt34l0ammpzOdcrv11BafwWv0TaHuAbp2obIEwXSHR_D6yaZRYioHi5Xx2jiLzszxCNLyX1to8FMiqZvrxwSWeY_pNgrdw&h=UGquHK_LkZNs3BB7cB3JwDW8cJUSsATIuYaCFq27Ce0 response: body: string: '{"status":"Succeeded"}' @@ -1909,7 +1909,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:56.4794149+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:56.4794149+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:55:56.4794149Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536523+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -4073,7 +4073,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:56.4794149+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:56.4794149+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-04-09T18:55:56.4794149Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536127+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:03.7536523+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_user.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_user.yaml index 3c40978c9b4..99ce3c65905 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_user.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerapp_registry_identity_user.yaml @@ -470,7 +470,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004","name":"acr000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:58.3916933+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:58.3916933+00:00"},"properties":{"loginServer":"acr000004.azurecr.io","creationDate":"2026-04-09T18:55:58.3916933Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809155+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809576+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -569,7 +569,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004","name":"acr000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:58.3916933+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:58.3916933+00:00"},"properties":{"loginServer":"acr000004.azurecr.io","creationDate":"2026-04-09T18:55:58.3916933Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809155+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809576+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -617,7 +617,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/registries?api-version=2026-09-01-preview response: body: string: '{"value":[{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","identity":{"principalId":"4154e2a9-5c25-4d90-af38-983a675a0394","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"systemAssigned, @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004/importImage?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004/importImage?api-version=2026-09-01-preview response: body: string: '' @@ -695,7 +695,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577722953580&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=N4cldRxjisZtxW0dxH4RXGVgc4Hibe0ayw0kimf4fAztI-foDLvrkGx_FjSa5mcROa4cf4N4rv3KuiuyKg3qPA_RXmwp4vkTM8Y1cxbieO2kXOu02nzbllm3ULL7hQoCsZkyIJKMVnEegjEnYL77aTH8BQiVicdrr1TvuYGe3x99y1jCPL2-MizRKIiYWu1rbpiHafq40qznrSeT6IFXZgwpDFgcFr2zMA-9wat8QrxgR00z7WALJeXNtTlnx1zzsU2deCgaxXavOT7e5PRSGStBgjyVXoQM8BoPN7IZf1blaEDfNK0uNhebufjm5lhS0f8lZIP1Q2gKMG_ujiHzHw&h=jhIRNZdXqTWbqIxahKk5FndqEoxMI_bcvV0WS1to8_4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577722953580&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=N4cldRxjisZtxW0dxH4RXGVgc4Hibe0ayw0kimf4fAztI-foDLvrkGx_FjSa5mcROa4cf4N4rv3KuiuyKg3qPA_RXmwp4vkTM8Y1cxbieO2kXOu02nzbllm3ULL7hQoCsZkyIJKMVnEegjEnYL77aTH8BQiVicdrr1TvuYGe3x99y1jCPL2-MizRKIiYWu1rbpiHafq40qznrSeT6IFXZgwpDFgcFr2zMA-9wat8QrxgR00z7WALJeXNtTlnx1zzsU2deCgaxXavOT7e5PRSGStBgjyVXoQM8BoPN7IZf1blaEDfNK0uNhebufjm5lhS0f8lZIP1Q2gKMG_ujiHzHw&h=jhIRNZdXqTWbqIxahKk5FndqEoxMI_bcvV0WS1to8_4 pragma: - no-cache strict-transport-security: @@ -731,7 +731,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577722953580&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=N4cldRxjisZtxW0dxH4RXGVgc4Hibe0ayw0kimf4fAztI-foDLvrkGx_FjSa5mcROa4cf4N4rv3KuiuyKg3qPA_RXmwp4vkTM8Y1cxbieO2kXOu02nzbllm3ULL7hQoCsZkyIJKMVnEegjEnYL77aTH8BQiVicdrr1TvuYGe3x99y1jCPL2-MizRKIiYWu1rbpiHafq40qznrSeT6IFXZgwpDFgcFr2zMA-9wat8QrxgR00z7WALJeXNtTlnx1zzsU2deCgaxXavOT7e5PRSGStBgjyVXoQM8BoPN7IZf1blaEDfNK0uNhebufjm5lhS0f8lZIP1Q2gKMG_ujiHzHw&h=jhIRNZdXqTWbqIxahKk5FndqEoxMI_bcvV0WS1to8_4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577722953580&c=MIIHlTCCBn2gAwIBAgIRANt2kNAlcWGPjk7fqvSKsKAwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgRVVTMiBDQSAwMTAeFw0yNjAyMTQxMzI5NTRaFw0yNjA4MDkxOTI5NTRaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunUpEsdzUsk2L51371A6RUKCrm9gJzFTGkIPPeRJZDPM8cLTc_5vpISUWY-_lBu89taiW-5Fp32TFXe7TvpU_tgZ1i0O1gyE_YE1UgIqQcyop0mlKOLONIG8w7omOMavdTwySGaEew73bR7nyW4Tdtzw7G0vsfZwp_C0N5xb_Kmg99emkZPl56IDjFswnwNUrY1mjlvUm9POgENmnld7pPXLTzMz3GeQsekf1g7DNUMbklm_8wNN9aPf81ilT6438_NQPtPc-8Tu8Rqs0Mc6qVG4Se2oToE-ArlEUJ9UHm2J519QuhyYmPFk2RFXJQVckQLSbr8yfi9MpW2xa8pZPQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUSmkBK_z-DCQwpqo7gFoXfJAL3o0wHwYDVR0jBBgwFoAU_Ow-26p8H4IeBbihBvlD5wKzCrkwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NybHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS83NC9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzc0L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZWVhc3R1czJwa2kuZWFzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVlYXN0dXMyaWNhMDEvNzQvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY2FjZXJ0cy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAcoJBIWpHXJ-BlYsJxpr8BKz4qz215RV21BGmUmHG1tVU1_X2LlQacjzZ8zKK8fcliwi07VfV1mlMRB-Vb60E-wfl5rMpKfpxoOBXNDPueTcKc0cluWwNAhzPslB2XuGIflbqww2RmtWI-VFVMRo1IZLVMgITOuMOZCuvP8USNr83gcW2M3YUn9Npb_VJs_7gQMoWahrEhA7oac389e_GC5K8AaTptHtKjGiEPefF2MkGPRxD4aNLgEJ26-5r9gCA7RWnHVKpYtl3ISW5oKiZtFNEaMWtIKcZE9VCf6sklZM4C0mo4PZlj7BIFf0py63DJBNVQxyXwPloYM8tvid-DA&s=N4cldRxjisZtxW0dxH4RXGVgc4Hibe0ayw0kimf4fAztI-foDLvrkGx_FjSa5mcROa4cf4N4rv3KuiuyKg3qPA_RXmwp4vkTM8Y1cxbieO2kXOu02nzbllm3ULL7hQoCsZkyIJKMVnEegjEnYL77aTH8BQiVicdrr1TvuYGe3x99y1jCPL2-MizRKIiYWu1rbpiHafq40qznrSeT6IFXZgwpDFgcFr2zMA-9wat8QrxgR00z7WALJeXNtTlnx1zzsU2deCgaxXavOT7e5PRSGStBgjyVXoQM8BoPN7IZf1blaEDfNK0uNhebufjm5lhS0f8lZIP1Q2gKMG_ujiHzHw&h=jhIRNZdXqTWbqIxahKk5FndqEoxMI_bcvV0WS1to8_4 response: body: string: '{"k8se/quickstart:latest":"Pending","status":"Accepted"}' @@ -747,7 +747,7 @@ interactions: expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577736731774&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=f0T1X6ydkUtfjogO9t0zY0aomn9PbEFVHlUWuNTTH7A1qtSnBYLsU7l1kOLRLSZrFVIa-e290jSzPOU8Ye0eBpQ2JUyj6kvp3XGtJSMALHrR1ZgO84p_SJ1aYSZj48d0mLgfktHafXe-6LmPfzvrGXPSXrJk0eqaL9OBvAfD2pjv3uJMIgJEOoLBgi0enSOaJxKgbbKBAusJhg-6PsVAWxL0yNL89GK6dy6GeDzcFk9Duegj3gokWcbKgvVMehT4woljpz2kolo9yxWbBG_ryAxcJg-ZZsfy1w7-H-1HwPcaG4DXAVTXYGlR0FHkoXItG0RkH_pRfVJuDb3SLraw0g&h=xSLnxDqq0MXrdWA5JxskD8HAmzh-a2g-7VPFZqTuueU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577736731774&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=f0T1X6ydkUtfjogO9t0zY0aomn9PbEFVHlUWuNTTH7A1qtSnBYLsU7l1kOLRLSZrFVIa-e290jSzPOU8Ye0eBpQ2JUyj6kvp3XGtJSMALHrR1ZgO84p_SJ1aYSZj48d0mLgfktHafXe-6LmPfzvrGXPSXrJk0eqaL9OBvAfD2pjv3uJMIgJEOoLBgi0enSOaJxKgbbKBAusJhg-6PsVAWxL0yNL89GK6dy6GeDzcFk9Duegj3gokWcbKgvVMehT4woljpz2kolo9yxWbBG_ryAxcJg-ZZsfy1w7-H-1HwPcaG4DXAVTXYGlR0FHkoXItG0RkH_pRfVJuDb3SLraw0g&h=xSLnxDqq0MXrdWA5JxskD8HAmzh-a2g-7VPFZqTuueU pragma: - no-cache strict-transport-security: @@ -781,7 +781,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-03-01-preview&t=639113577736731774&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=f0T1X6ydkUtfjogO9t0zY0aomn9PbEFVHlUWuNTTH7A1qtSnBYLsU7l1kOLRLSZrFVIa-e290jSzPOU8Ye0eBpQ2JUyj6kvp3XGtJSMALHrR1ZgO84p_SJ1aYSZj48d0mLgfktHafXe-6LmPfzvrGXPSXrJk0eqaL9OBvAfD2pjv3uJMIgJEOoLBgi0enSOaJxKgbbKBAusJhg-6PsVAWxL0yNL89GK6dy6GeDzcFk9Duegj3gokWcbKgvVMehT4woljpz2kolo9yxWbBG_ryAxcJg-ZZsfy1w7-H-1HwPcaG4DXAVTXYGlR0FHkoXItG0RkH_pRfVJuDb3SLraw0g&h=xSLnxDqq0MXrdWA5JxskD8HAmzh-a2g-7VPFZqTuueU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/registries-c4844def-3445-11f1-a7f2-44a3bbbaa7c4?api-version=2026-09-01-preview&t=639113577736731774&c=MIIHxDCCBqygAwIBAgIRAJVEBjgK1fo3sgU5fQhfuLEwDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDIxOTAxNTQ1MloXDTI2MDgxNDA3NTQ1MlowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDrBg4PC5_iwaDF2jdesjMFYDUEQArU1ZMOWKClK9v-zEzpLQWRkuLaTlb8lurdKZw0tKz7W5RLJzZENJjHh0OhhqpDT2ZThQyqtKC54UFZKNQG3GiSWCDRMpQ-3lrvWe-BjJPOWPW3KZQM60VNR2Rn00yITDdvZb_VJvNHswjZkL6_AYx34fi1yqn4PLdF_r_70KohAv0GbYeaDOiK0TB6lrbCpFuKyMxhrj-wYuELoxavVYoiJ0HCRwkshCDYtmtZyL3HS03HSQ21aM3XgRL59a3jBRCEsTeotMe7Cq_ZxbJnx6b9o1dIoYNEUEdH30-hhyPgr8Iz74zrlD8qaCc1AgMBAAGjggTCMIIEvjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBTkGx50YKynp1NdIGMYkgerB7q2yjAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcoGA1UdHwSCAcEwggG9MG-gbaBrhmlodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwcaBvoG2Ga2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzQxL2N1cnJlbnQuY3JsMGCgXqBchlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNDEvY3VycmVudC5jcmwwdaBzoHGGb2h0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS80MS9jdXJyZW50LmNybDCCAc8GCCsGAQUFBwEBBIIBwTCCAb0wcgYIKwYBBQUHMAKGZmh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjB0BggrBgEFBQcwAoZoaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NhY2VydHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvY2VydC5jZXIwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBsBggrBgEFBQcwAoZgaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBvLgW8TEYHqGbCuDyHhkYK1OKWuuU-hapduG-PB1saopKb2-3u4xS05HJWiktEtOs0r6T5LzFdUhBJ8UU44D4W_T3Klq11PFRfv2ODDWq8FX5HwydKsyc0MGHZHtz1h-25G7Ezns0HORN0VDZWkAHvwo6uncxlizCvilcKcLZN9hVZS0KGTU5emzjSB9TPjn9grassWmzhVKdiNTPPKrYsGZ-vmXnBtJed4O5aaQ3vqKRbNiq6EtQexCdqS7c3Y0UVsUkXkEK22TsTmQvHcyawH9BkLWYtNKQi85OT-g85ayYrtkjo5fakBErjJ0c-w3OQ9sa54Sxm3HniZyubzpe5&s=f0T1X6ydkUtfjogO9t0zY0aomn9PbEFVHlUWuNTTH7A1qtSnBYLsU7l1kOLRLSZrFVIa-e290jSzPOU8Ye0eBpQ2JUyj6kvp3XGtJSMALHrR1ZgO84p_SJ1aYSZj48d0mLgfktHafXe-6LmPfzvrGXPSXrJk0eqaL9OBvAfD2pjv3uJMIgJEOoLBgi0enSOaJxKgbbKBAusJhg-6PsVAWxL0yNL89GK6dy6GeDzcFk9Duegj3gokWcbKgvVMehT4woljpz2kolo9yxWbBG_ryAxcJg-ZZsfy1w7-H-1HwPcaG4DXAVTXYGlR0FHkoXItG0RkH_pRfVJuDb3SLraw0g&h=xSLnxDqq0MXrdWA5JxskD8HAmzh-a2g-7VPFZqTuueU response: body: string: '{"status":"Succeeded"}' @@ -1260,7 +1260,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004","name":"acr000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:58.3916933+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:58.3916933+00:00"},"properties":{"loginServer":"acr000004.azurecr.io","creationDate":"2026-04-09T18:55:58.3916933Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809155+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809576+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -3107,7 +3107,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000004","name":"acr000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-09T18:55:58.3916933+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-09T18:55:58.3916933+00:00"},"properties":{"loginServer":"acr000004.azurecr.io","creationDate":"2026-04-09T18:55:58.3916933Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809155+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-09T18:56:05.3809576+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml index bc75eefaf54..bbd52993e8b 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/containerapp/tests/latest/recordings/test_containerappjob_registry_crud.yaml @@ -1448,7 +1448,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1999,7 +1999,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003","name":"acr000003","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T05:58:17.6780134+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T05:58:17.6780134+00:00"},"properties":{"loginServer":"acr000003.azurecr.io","creationDate":"2026-03-24T05:58:17.6780134Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T05:58:25.1942935+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T05:58:25.1943362+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -2049,7 +2049,7 @@ interactions: User-Agent: - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000003/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"acr000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' From 8136fa21da466325cc1b5cb52c1f1626683c39c2 Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 11:48:53 +1000 Subject: [PATCH 15/19] update acr api version in appservice --- .../recordings/test_acr_create_function_app.yaml | 6 +++--- .../recordings/test_acr_deployment_function_app.yaml | 10 +++++----- .../tests/latest/recordings/test_acr_integration.yaml | 10 +++++----- .../recordings/test_acr_integration_function_app.yaml | 10 +++++----- .../test_linux_slot_container_settings_override.yaml | 10 +++++----- .../recordings/test_staticapp_linked_backends.yaml | 2 +- ...ebapp_sitecontainers_convert_to_sitecontainers.yaml | 6 +++--- 7 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml index 8fb36db1546..689754743e0 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml @@ -66,7 +66,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"brazilsouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-20T15:59:11.4269318+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-20T15:59:11.4269318+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-20T15:59:11.4269318Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-20T15:59:20.8021544+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-20T15:59:20.8022141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -118,7 +118,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"brazilsouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-20T15:59:11.4269318+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-20T15:59:11.4269318+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-20T15:59:11.4269318Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-20T15:59:20.8021544+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-20T15:59:20.8022141+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -168,7 +168,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml index e4e2f40c875..c90bd5b20f7 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml @@ -66,7 +66,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"brazilsouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:35:55.1532787+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:35:55.1532787+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-08T15:35:55.1532787Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:36:08.80885+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:36:08.8088992+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1619,7 +1619,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"brazilsouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:35:55.1532787+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:35:55.1532787+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-08T15:35:55.1532787Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:36:08.80885+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:36:08.8088992+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1669,7 +1669,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' @@ -2467,7 +2467,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"brazilsouth","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:35:55.1532787+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:35:55.1532787+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-08T15:35:55.1532787Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:36:08.80885+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:36:08.8088992+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -2517,7 +2517,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml index 43de19f5a4b..7005e4cc083 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml @@ -66,7 +66,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T22:55:38.9842918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T22:55:38.9842918+00:00"},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2026-05-08T22:55:38.9842918Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T22:55:45.6064056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T22:55:45.6064513+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -931,7 +931,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T22:55:38.9842918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T22:55:38.9842918+00:00"},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2026-05-08T22:55:38.9842918Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T22:55:45.6064056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T22:55:45.6064513+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -981,7 +981,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' @@ -1079,7 +1079,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T22:55:38.9842918+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T22:55:38.9842918+00:00"},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2026-05-08T22:55:38.9842918Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T22:55:45.6064056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T22:55:45.6064513+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1129,7 +1129,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml index 0e52cb69cb0..d1f206741c6 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml @@ -66,7 +66,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:36:38.1437555+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:36:38.1437555+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-08T15:36:38.1437555Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:36:49.8913258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:36:49.8913666+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1618,7 +1618,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:36:38.1437555+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:36:38.1437555+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-08T15:36:38.1437555Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:36:49.8913258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:36:49.8913666+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1668,7 +1668,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' @@ -2466,7 +2466,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:36:38.1437555+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:36:38.1437555+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2026-05-08T15:36:38.1437555Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:36:49.8913258+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:36:49.8913666+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -2516,7 +2516,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_slot_container_settings_override.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_slot_container_settings_override.yaml index 5b9e4eff5c0..ae545932367 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_slot_container_settings_override.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_slot_container_settings_override.yaml @@ -66,7 +66,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004","name":"000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:49:28.347999+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:49:28.347999+00:00"},"properties":{"loginServer":"000004.azurecr.io","creationDate":"2026-05-08T15:49:28.347999Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:49:40.1443478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:49:40.1443945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004","name":"000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:49:28.347999+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:49:28.347999+00:00"},"properties":{"loginServer":"000004.azurecr.io","creationDate":"2026-05-08T15:49:28.347999Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:49:40.1443478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:49:40.1443945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' @@ -2712,7 +2712,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004","name":"000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:49:28.347999+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:49:28.347999+00:00"},"properties":{"loginServer":"000004.azurecr.io","creationDate":"2026-05-08T15:49:28.347999Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:49:40.1443478+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:49:40.1443945+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -2762,7 +2762,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_staticapp_linked_backends.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_staticapp_linked_backends.yaml index 92dcc7c375c..8ff6ff3b438 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_staticapp_linked_backends.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_staticapp_linked_backends.yaml @@ -233,7 +233,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/swabackends000005?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/swabackends000005?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/swabackends000005","name":"swabackends000005","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-15T18:21:49.4328716+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-15T18:21:49.4328716+00:00"},"properties":{"loginServer":"swabackends000005.azurecr.io","creationDate":"2026-05-15T18:21:49.4328716Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-15T18:22:00.9671118+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-15T18:22:00.9671526+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_sitecontainers_convert_to_sitecontainers.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_sitecontainers_convert_to_sitecontainers.yaml index ae5fe85589e..9b8e10c9f0f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_sitecontainers_convert_to_sitecontainers.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_sitecontainers_convert_to_sitecontainers.yaml @@ -66,7 +66,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004","name":"webappsitecontainersacr000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:59:08.9365648+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:59:08.9365648+00:00"},"properties":{"loginServer":"webappsitecontainersacr000004.azurecr.io","creationDate":"2026-05-08T15:59:08.9365648Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:59:15.4357245+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:59:15.4357678+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004","name":"webappsitecontainersacr000004","location":"eastus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-05-08T15:59:08.9365648+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-05-08T15:59:08.9365648+00:00"},"properties":{"loginServer":"webappsitecontainersacr000004.azurecr.io","creationDate":"2026-05-08T15:59:08.9365648Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-05-08T15:59:15.4357245+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-05-08T15:59:15.4357678+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.86.0 azsdk-python-core/1.39.0 Python/3.14.2 (Windows-11-10.0.26100-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004/listCredentials?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_sitecontainers000001/providers/Microsoft.ContainerRegistry/registries/webappsitecontainersacr000004/listCredentials?api-version=2026-09-01-preview response: body: string: '{"username":"webappsitecontainersacr000004","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' From f008f47ac2dd2ecac61b57ecbee0d1af86c66ccf Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 11:54:48 +1000 Subject: [PATCH 16/19] update acr api version in network tests --- .../test_private_endpoint_connection_acr.yaml | 4 ++-- .../recordings/test_private_link_resource_acr.yaml | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml index d653c110a77..661407c0576 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml @@ -539,7 +539,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:58:32.7963077+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:58:32.7963077+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-24T02:58:32.7963077Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-24T02:58:39.8421426+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' @@ -645,7 +645,7 @@ interactions: User-Agent: - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"centralus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-24T02:58:32.7963077+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-24T02:58:32.7963077+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2026-04-24T02:58:32.7963077Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-24T02:58:39.8421426+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml index 0b92f51e9fa..600ccd4e010 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml @@ -66,7 +66,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T04:49:10.6391991+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T04:49:10.6391991+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T04:49:10.6391991Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T04:49:18.2384796+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T04:49:18.2385379+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -74,7 +74,7 @@ interactions: api-supported-versions: - 2025-03-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-09-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI cache-control: - no-cache content-length: @@ -120,7 +120,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-09-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI response: body: string: '{"status":"Creating"}' @@ -128,7 +128,7 @@ interactions: api-supported-versions: - 2025-03-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677596144404&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=GP9gCW6zVMnIlV7K0aiubvjSgRphj7iHNfyoCsis1_sPQgApnNKpm-7BwgBkgHMQoAxBOjD5nxDnBoDbbhoNm7bVTUNtu3RtGJ8UHE5NWK1LjJpnqJENyuBn8RF9FRJTM0oWp9Nyck0vyj82EBK5BWKOveYVpfI0kigUA2_H3AXzFO-2lfB9YQsGAbsl4N7Z6_c6YRG1XQHmBbD0uKUzNs0W3TjLY6O2JikcgyChnrnWDbt4CvhHNcvIV0_rMBzVwnsOLsgR071V1zmIjG7lM4XnUQHFqg_MpGoNtj7nk39Qg-iv_hMzUH7Pmos5DoMOrxv2zWbqaKJ3deOfxVDMjA&h=W1vW_RmncebmhD7HoBid0gJT5IBrfuC2O4ZEyy5JEq0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-09-01-preview&t=638829677596144404&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=GP9gCW6zVMnIlV7K0aiubvjSgRphj7iHNfyoCsis1_sPQgApnNKpm-7BwgBkgHMQoAxBOjD5nxDnBoDbbhoNm7bVTUNtu3RtGJ8UHE5NWK1LjJpnqJENyuBn8RF9FRJTM0oWp9Nyck0vyj82EBK5BWKOveYVpfI0kigUA2_H3AXzFO-2lfB9YQsGAbsl4N7Z6_c6YRG1XQHmBbD0uKUzNs0W3TjLY6O2JikcgyChnrnWDbt4CvhHNcvIV0_rMBzVwnsOLsgR071V1zmIjG7lM4XnUQHFqg_MpGoNtj7nk39Qg-iv_hMzUH7Pmos5DoMOrxv2zWbqaKJ3deOfxVDMjA&h=W1vW_RmncebmhD7HoBid0gJT5IBrfuC2O4ZEyy5JEq0 cache-control: - no-cache content-length: @@ -172,7 +172,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-09-01-preview&t=638829677585612835&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=TFSYdMb1gBk5GizOohGjLlSxOqC3bQa6PfdEj6tQvomSeTbiagCkct9aQhrcFbbYodyluGb2AoAiQlZvHSc3EenZfZ4wXkPyzIC0PPAtWZx6Pj6oQotKbOx9AUNUomURWjcliiJ84SG93dhJwuDXNkYeEOdWaIwD7a9OLlAltwLYhPKjPLJ51j7izjrehkGLiqGabXuhqvSIb-jVDatzkNnmRArVTxafGgqPcHMY_p4tgtDNhQZ89q9bv_fLfVu25-p96FchdSmyTpdNqsxja6zizq7kHHPLGXoT2U9eiCmUdw-l92EDd0ljUu0GFYqKMfw1sN4ZeS48WlJ7kOpXXA&h=WPGTgQS198jvXxDf2OG9SnOrVIDhM8MCTYA3ChcjYjI response: body: string: '{"status":"Succeeded"}' @@ -180,7 +180,7 @@ interactions: api-supported-versions: - 2025-03-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-03-01-preview&t=638829677710099664&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=SN_xadJ8s4N-x00DmcIyx5m_80tvpBr_bsjoeqCiZZ12g2Ziz0FVT0FJB9tou_Q8oD_Vhkyv7kJjmR0IHePPmtkB0-954e98NJB0C3vVg2h-yoVWBed89NZziH5rp8E-JjSanKMRo9CGKLC2l8BuTbNkbb_oQmfsV2b4MOXTKopV8gVF33UUrLkZUHggXU6Sar-jtn_u5vT2l7S_Qy34Up6zLc2e-7tzlYxXyuK9BoccMq_2bLLzeEFhevpeBD7PM5wc3S-9mFwkkfv9KCwMtnSQrbsOBokgZHEZIwYo3oVkLDOJaD2rD3EE4pMTZl6XO4JjLEcuHUP1Eiue38fjCQ&h=bqBFIb2jy_eE88_7PwX7HP1JuLx5NzSt6n5lGBGuPHE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-193f96c2-3211-11f0-9f97-644ed7a2823f?api-version=2026-09-01-preview&t=638829677710099664&c=MIIHpTCCBo2gAwIBAgITOgWXBJzHWActAOyA9gAEBZcEnDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDE4MDkxNjUyWhcNMjUxMDE1MDkxNjUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4tFzYjQAGXlMN4RVSj_Zp98bnnigeY99sbhZrAOQOjxR_04cAp0TrBwLXaA2b6MkNp3EWrqmwj8LAHlmiUmx_C5YeMG8WQUVkZMbfJNmAjSKJvmH2VO_H9OVOiiWemCFWlBXZMT6O1LsK-KI4EQtlTwXEv4-zXiqUQqjqHZQX6IJGxxcuw3R6KS00hFc9B4Ve9K9uvRk3OzuC_2evEuKFQfmIkhFu9gMtFnEBgp0E5Srek5Sh6WRO2V6wjcdtrFJ2dMStIbypiaJysxjNaLwTxBjKAJiyxkrxbuS0IPj2v4oOwkFSl9khCWu-ivje49N19yGiq_5BL-QYySfUPF0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBQpIRfJ6SPCR16Dy9sN1AQtQKjWNDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACBpx57mqT5wt5VuFMhMv-QcXTs5QrWkz021CcXp44eWUSJBLP35O0JDRyA13V3zowD9Dkl6HKRosiwIhfUwb1VWxMZt1K97bfrlhekU_IFyRNImksBTl4Hg5mL7M4PQvDu_hNxb1NW9JnL8B4LEl-FVcKtOFC8R2wp_2vglSGujfVsEzQMXxCECc_j-T0saauGgdaItgRGQ-1JrKdhZ1FvHWU2eeab0zXatBPn7nyaNmU7DK2icP38PQp3g8yPPlpv1joUzz1GMBJXhtHRWCv93tVfT5q9DZQ-_S2H_1Y2raeucg8kUfGEvVuQ27w1bGi2QRDLtEtuNHgzpR3RB7os&s=SN_xadJ8s4N-x00DmcIyx5m_80tvpBr_bsjoeqCiZZ12g2Ziz0FVT0FJB9tou_Q8oD_Vhkyv7kJjmR0IHePPmtkB0-954e98NJB0C3vVg2h-yoVWBed89NZziH5rp8E-JjSanKMRo9CGKLC2l8BuTbNkbb_oQmfsV2b4MOXTKopV8gVF33UUrLkZUHggXU6Sar-jtn_u5vT2l7S_Qy34Up6zLc2e-7tzlYxXyuK9BoccMq_2bLLzeEFhevpeBD7PM5wc3S-9mFwkkfv9KCwMtnSQrbsOBokgZHEZIwYo3oVkLDOJaD2rD3EE4pMTZl6XO4JjLEcuHUP1Eiue38fjCQ&h=bqBFIb2jy_eE88_7PwX7HP1JuLx5NzSt6n5lGBGuPHE cache-control: - no-cache content-length: @@ -224,7 +224,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-05-16T04:49:10.6391991+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-05-16T04:49:10.6391991+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2025-05-16T04:49:10.6391991Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-05-16T04:49:18.2384796+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-05-16T04:49:18.2385379+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' From 7addf2ce01b605f6c4ad8c4875f911bc3e24af4e Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 12:43:24 +1000 Subject: [PATCH 17/19] acr api version resource update --- .../recordings/test_tag_update_by_patch.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml index 112678c4913..124e3bec2a6 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml @@ -1104,7 +1104,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1112,7 +1112,7 @@ interactions: api-supported-versions: - 2025-03-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-09-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk cache-control: - no-cache content-length: @@ -1158,7 +1158,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-09-01-preview&t=638811712950682221&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=YGl7b6MAfrCTix1BI0GYO5RoSUiBsh4fq8TZTn4ovmxU4xePFJX0mIja_YZN1QGAwDzATbaRytihoT9FkA4D5d_m4pG7lxgUkcZflWMxNycf3RWGxrteRePcCsWmF8UhNz9lw0V606xIE2aMgCs7a9GcyMl8gDMfCylWhNRq98L1pgxsdi3OmToRsfKCGPTrGQ84RKOjak6HVSkR0v9Exh3DC8Fwt5P_vZOGVX57-RRsGqLUXZN9fEc-DPni4c29Jkx0dXQzBfDvM6DVN22IYLq3-iPufLVO87DHva7iD2E61u2B3G9QgI6_sNHEtdIbRYZUdq3KbGxkrhzTZaioIQ&h=144RO7idX6hfxNT_ffJ9MoIcBOEgGHXFEDlrSsBG0Xk response: body: string: '{"status":"Succeeded"}' @@ -1166,7 +1166,7 @@ interactions: api-supported-versions: - 2025-03-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-03-01-preview&t=638811712960276721&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=3zeGk9stkwpg3-ppqYbu6bel9pbacXlOCJg96HPmtutzmgoCKelGq61Pcb1PDMGKJd21_FUyjkbrcoxyoc0tuuxx8QXcHKrJ7KYFIIyoAgRg6T-XGswAUJg4uSyFLBUbJrRkreHiQjhf0iCCvxaYZwrCAj6EMohm6RUjy3-u3DTPux0Egh-k2PmKzIuR2M9QjBmyvxBu8h3eA3MxY79JJD7FRb7m1NxZhLD4zCktaKtxb2xvTOGQBM3LzDKt5Q2NPXNiXVkPLtWmf8PZBLoklw4qSvUH2TvES-K3uslNHVFTFyx1B9LmasD_Lfu3IvZQ_93UxqtAy8FhBu7LIc57Ng&h=A8h3BkyhdqBQJDgyQo0Ku2W95H8ZkbtU_iG0rvI4ao0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-5ebe28ec-21ba-11f0-a66b-00155da86e37?api-version=2026-09-01-preview&t=638811712960276721&c=MIIHpTCCBo2gAwIBAgITOgWb3H4Nzb-7yQG2EQAEBZvcfjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjUwNDIwMTYwOTMwWhcNMjUxMDE3MTYwOTMwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQIgzzH-VcKVet59WCOBXckh79xW1hbkHMURYkchOyLYB5B081v4XF81Tau0MswD-I5EC5wDpX2hlTE5Ew5ued_Nc0Yqm_KULsTmhe7wDQfYu3aJCVRN_lb6_I4PX-bqRGi_f81tm2sc8izwz4kUtcG-o0nFr5X4z77uPBIs0hdE1mnqDEDdhDIel7WL6yPGKcmPObNOEMgK_MWj-4X-GuiXR6CP70eaR9kw0p6b7NT1RyIgOHvGGnlhNdKR5Xj5otDRKWM9BKplQqfhGCyCp2jAFOTtjVtNLxETdf160AkQFO78ujVQ6W4Anq-cq47e4O9djqiEtBvdEwTk_SAjUUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBS69DNKCdMMQyMfLqr2jXm9_K9rVzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABQKPAm-rjP1TtYpav8wx6zSJf_0AzETZajof3mtVJpljGw7i35Op8ReOqQfnQM9s4z_M9wmKyzUZmcX1CcGLq7S7ug6m5sHg3VBhmRdbQXDSisP9OEUju4eK7VT7zXjx2wwVyE6ut3mxBUGOOrhzSVZT8U-UwzuSz7XEZUhndc5VazPQGz66aWaBd1YS3F0PladM957_WYKTI86v_MhKM8huvyoMbTJlzj0IuWDGtPAh11239Eu-XMaxl7GkemR25Yp-cTc654T_9udTTHD17FuAx-nCO5-naIEMwl7Jn9rD_mjyP-kZLs_SKdVCfKEfLOJ7AodgwunqMxqeavsYOQ&s=3zeGk9stkwpg3-ppqYbu6bel9pbacXlOCJg96HPmtutzmgoCKelGq61Pcb1PDMGKJd21_FUyjkbrcoxyoc0tuuxx8QXcHKrJ7KYFIIyoAgRg6T-XGswAUJg4uSyFLBUbJrRkreHiQjhf0iCCvxaYZwrCAj6EMohm6RUjy3-u3DTPux0Egh-k2PmKzIuR2M9QjBmyvxBu8h3eA3MxY79JJD7FRb7m1NxZhLD4zCktaKtxb2xvTOGQBM3LzDKt5Q2NPXNiXVkPLtWmf8PZBLoklw4qSvUH2TvES-K3uslNHVFTFyx1B9LmasD_Lfu3IvZQ_93UxqtAy8FhBu7LIc57Ng&h=A8h3BkyhdqBQJDgyQo0Ku2W95H8ZkbtU_iG0rvI4ao0 cache-control: - no-cache content-length: @@ -1210,7 +1210,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1313,7 +1313,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2026-09-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:01.8181168+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:01.8181168+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2025-04-25T09:48:01.8181168Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2025-04-25T09:48:14.6733603+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2025-04-25T09:48:14.6734271+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' @@ -1366,7 +1366,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.11.2 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-03-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2026-09-01-preview response: body: string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-04-25T09:48:22.030609+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-04-25T09:48:22.030609+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' From 5007d042898dbbe4d57dab0daf95340749da5154 Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 12:54:46 +1000 Subject: [PATCH 18/19] revert acr create abac to fb8160f25a + update api version --- .../recordings/test_acr_create_abac.yaml | 380 +++++++++++++++--- 1 file changed, 322 insertions(+), 58 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml index 626082c05f1..213a71ca1e4 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_abac.yaml @@ -18,23 +18,23 @@ interactions: ParameterSetName: - -g -n --sku --location --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1633' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:41 GMT + - Wed, 25 Mar 2026 03:45:15 GMT expires: - '-1' pragma: @@ -46,13 +46,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/9bf6e8d0-c4e4-4b5a-8bd3-eee843657790 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/49944ae7-9bb8-4340-99d5-4524be6bb887 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 99314DE97E844DC694DBF5A8AD402823 Ref B: SYD281080705040 Ref C: 2026-09-10T06:42:32Z' + - 'Ref A: E461EAC396F947C2822E6FFB67421C95 Ref B: BY1AA1072315029 Ref C: 2026-03-25T03:45:07Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1633' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:42 GMT + - Wed, 25 Mar 2026 03:45:17 GMT expires: - '-1' pragma: @@ -100,7 +100,271 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4317657C2D7440E080357F06030D2673 Ref B: SYD281080707042 Ref C: 2026-09-10T06:42:42Z' + - 'Ref A: C0B54184C0FE41E7A2C76B50D241DC18 Ref B: BY1AA1072319036 Ref C: 2026-03-25T03:45:16Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr check-health + Connection: + - keep-alive + ParameterSetName: + - -n --repository -y + User-Agent: + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2024-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '552' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 25 Mar 2026 03:45:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3AF4F80B7E6F40D997D24B75E6D48939 Ref B: BY1AA1072317034 Ref C: 2026-03-25T03:45:18Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr check-health + Connection: + - keep-alive + ParameterSetName: + - -n --repository -y + User-Agent: + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' + headers: + api-supported-versions: + - 2026-01-01-preview + cache-control: + - no-cache + content-length: + - '1633' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 25 Mar 2026 03:45:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0A19AB2AAAB346C48B1F8CF5A8D8181F Ref B: SJC211051203033 Ref C: 2026-03-25T03:45:18Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.4 + method: GET + uri: https://clitestabac000002.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 25 Mar 2026 03:45:19 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - AzureContainerRegistry + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://clitestabaci2ozj.azurecr.io/oauth2/token",service="clitestabaci2ozj.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.4 + method: GET + uri: https://clitestabac000002.azurecr.io/v2/ + response: + body: + string: '{"errors":[{"code":"UNAUTHORIZED","message":"authentication required, + visit https://aka.ms/acr/authorization for more information.","detail":null}]} + + ' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 25 Mar 2026 03:45:20 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - AzureContainerRegistry + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://clitestabaci2ozj.azurecr.io/oauth2/token",service="clitestabaci2ozj.azurecr.io" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: grant_type=access_token&service=clitestabaci2ozj.azurecr.io&tenant=72f988bf-86f1-41af-91ab-2d7cd011db47&access_token=*** + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '2680' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://clitestabac000002.azurecr.io/oauth2/exchange + response: + body: + string: '{"refresh_token":"abc123"}' + headers: + connection: + - keep-alive + content-type: + - application/json; charset=utf-8 + date: + - Wed, 25 Mar 2026 03:45:21 GMT + server: + - AzureContainerRegistry + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-ms-ratelimit-remaining-calls-per-second: + - '166.65' + status: + code: 200 + message: OK +- request: + body: grant_type=refresh_token&service=clitestabaci2ozj.azurecr.io&scope=repository%3Ahello-world%3Apull%2Cpush%2Cmetadata_write%2Cmetadata_read%2Cdelete&refresh_token=*** + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1599' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://clitestabac000002.azurecr.io/oauth2/token + response: + body: + string: '{"access_token":"***"}' + headers: + connection: + - keep-alive + content-type: + - application/json; charset=utf-8 + date: + - Wed, 25 Mar 2026 03:45:22 GMT + server: + - AzureContainerRegistry + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-ms-ratelimit-remaining-calls-per-second: + - '166.65' status: code: 200 message: OK @@ -118,23 +382,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:34.167675+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:08.0929928+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1633' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:44 GMT + - Wed, 25 Mar 2026 03:45:23 GMT expires: - '-1' pragma: @@ -148,7 +412,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 93402403C119442C953FAC0E4F1A9AC7 Ref B: SYD281080707034 Ref C: 2026-09-10T06:42:44Z' + - 'Ref A: 919DA1CE4A3A4CCAB9094D868B1C2FBE Ref B: BY1AA1072315054 Ref C: 2026-03-25T03:45:22Z' status: code: 200 message: OK @@ -170,23 +434,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:24.3180328+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1664' + - '1633' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:46 GMT + - Wed, 25 Mar 2026 03:45:23 GMT expires: - '-1' pragma: @@ -198,13 +462,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/86bcd0d2-dab5-479e-94d0-da1d05ebf496 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/b8da086b-50ca-4d94-9442-ad3074465e24 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: DC28DC71EE674D7C97D0CE3E86B41483 Ref B: SYD281080712025 Ref C: 2026-09-10T06:42:45Z' + - 'Ref A: 8017ED66FD564DA4AC312B945C0D654B Ref B: SJC211051201047 Ref C: 2026-03-25T03:45:23Z' status: code: 200 message: OK @@ -222,23 +486,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:47.4746651+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:24.3180328+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"LegacyRegistryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1664' + - '1633' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:48 GMT + - Wed, 25 Mar 2026 03:45:25 GMT expires: - '-1' pragma: @@ -252,7 +516,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4E0AC5FC79C24ED09BCFF1CF34AD5D51 Ref B: SYD281080710031 Ref C: 2026-09-10T06:42:48Z' + - 'Ref A: EEFA0FE539964F9C9315634D0AECF916 Ref B: SJC211051201035 Ref C: 2026-03-25T03:45:24Z' status: code: 200 message: OK @@ -274,23 +538,23 @@ interactions: ParameterSetName: - -g -n --role-assignment-mode User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:26.2054093+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1664' + - '1633' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:49 GMT + - Wed, 25 Mar 2026 03:45:25 GMT expires: - '-1' pragma: @@ -302,13 +566,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/20cb4955-1656-4347-9d96-0de05f6046a5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/bb1569b2-5165-4d60-9a35-0b85aaf6f035 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CD363FFE7CD446DF888402C25A00EFBC Ref B: SYD281080709062 Ref C: 2026-09-10T06:42:49Z' + - 'Ref A: 229729D2781C43699434BE4970AA3BFF Ref B: SJC211051204037 Ref C: 2026-03-25T03:45:25Z' status: code: 200 message: OK @@ -328,27 +592,27 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002?api-version=2026-09-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-09-10T06:42:34.167675+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-09-10T06:42:49.9844877+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-09-10T06:42:34.167675Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009222+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-09-10T06:42:41.9009817+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure","writableCacheRepos":"Disabled"}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_acrabac_000001/providers/Microsoft.ContainerRegistry/registries/clitestabac000002","name":"clitestabac000002","location":"southeastasia","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-25T03:45:08.0929928+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-25T03:45:26.2054093+00:00"},"properties":{"loginServer":"clitestabac000002.azurecr.io","creationDate":"2026-03-25T03:45:08.0929928Z","provisioningState":"Deleting","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-25T03:45:16.1157056+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-25T03:45:16.115745+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"regionalEndpoints":"Disabled","dataEndpointHostNames":[],"regionalEndpointHostNames":[],"endpointProtocol":"IPv4","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","networkRuleBypassAllowedForTasks":false,"zoneRedundancy":"Disabled","anonymousPullEnabled":false,"metadataSearch":"Disabled","roleAssignmentMode":"AbacRepositoryPermissions","autoGeneratedDomainNameLabelScope":"Unsecure"}}' headers: api-supported-versions: - - 2026-09-01-preview + - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1632' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Sep 2026 06:42:51 GMT + - Wed, 25 Mar 2026 03:45:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-09-01-preview&t=639100071276370275&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MRjKjFAo1UbLYuYxJl2dSJ_7T3uQdwVlpomXvqi9SsiOE8RB4ayO8gS-YE2Ga_vL6C_XVwAuX4RjHkha1WxOX0bvaJUBBwh5mN6NANK2NJWUcN_Zl_BxITsAoFUm_8WfL9y8GTirF05U8No7p4QDGHENlSwUHs5A_pcoJlFZYFbGVaGLMPXLWpinV6ipQqoBcGYyqcrluBfAHXyBB4-39cuwBlDsRYw53sMiuxU_Tw7flR4sjt688ueY2FxwU0y_6ndzWQapsK8EGT5ny-gOjzykk0FdXUUzp9b0OvpXwrX9ATMKdGMSzYcZbi1u4Gud3svNNRcJKvf0-y2F8xLSSQ&h=77A41BxnvH-J8jQ7ynbTC0oNqpxKiG4MQzADiCf5SNk pragma: - no-cache strict-transport-security: @@ -358,13 +622,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/westus/58a4dbf1-63cd-4e4f-8844-2e14b95300a9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/ebecd660-1342-4d8f-9f0b-7b13ef98fbdc x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 646AE4D19B144B639A34E8CDE1C3A6BD Ref B: SYD281080710042 Ref C: 2026-09-10T06:42:51Z' + - 'Ref A: 3A6578A047684DB8A770BFD44238B04A Ref B: SJC211051204051 Ref C: 2026-03-25T03:45:26Z' status: code: 202 message: Accepted @@ -382,9 +646,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193719731026&c=MIIIJjCCBw6gAwIBAgIQKYrI_-G8focilGMVljTIzTANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDgxMTE2NTU0MVoXDTI3MDIwNjIyNTU0MVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHXOnBSi89EFmYFHHz8YjTfsSi_rA52hWsPEfIKxyhGOIhG2O761Sp01X84Pl7Qh66Tjalm7gbOxt50vBo25s3yXMvvM-XHEIuIkpB_lLEPKLeU7cELvlXb2fddJRTEIrehzmmX3y9bZBXZ7sPfC3dVh-BZqoy4DhFruSEgypgs5ccLvFmZo_QMNjMEAy9HnEGP4pN1zz_owJcAMfxrb77LRgNioRD6DAgomJng45__m1bx6DuY7BwTn-1rcAk6IA3EKFMWnFJrUrcfxGqCtQyOu4H3IeyIJvAveQKIWNXlLW1j2rj9_FBXSjAf2x8Z2W_Uf6MSEwfwHY6OSj2OzgBAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQiVNiNFh29BGVv1rpUwKmj3ix-gDAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzUyL2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTIvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBACfL6ko2AI0X13NZIZ2IxRjP7slNZDlbiuLO5LrBhOgkqnJSG-Pw5KIk-UvFKLF68OMEap_FaihLps8lIqQ6kvqVwWDWVcWPIupCgb3dLBR_f2PfQQScJnTdbHfxgBaRtwJqnu0GZ-DkMcpb6yHcs5IocvlkFxyduqND0Rt0A0YPO02hzx6DJcHUxQfi3msdmfRAkv9MTTHSwQR3alqI2XOlKbjFG6zYusnGGB6tCrUCu9wmI8fIrGBGRE_o_rlSUU2q4kc9lRy3qNbIDi1TToijN2UANJTgK_VQ7T7XTkebugJrsOUXarvc0w9IqNUvO1ojxIFEHo9rJXpNKryiy34&s=cUT5A6oG29sC4R6FfHPnL41jw9s_57yYvRzIifCULf8B5vvbYllb2IBJH6FHag6-QK08UKY5Q53JWEdXrmnMRj4YXd2szSeTsGYTMZ211zjv-UpNtIxVCTebt2Uhozp3q1FHK6yir-oX5suZVBmkV9otmjZla8LweJqiOHBPMCdj50As2HBrvo4YG8gNGGBK2J6VrHoAAfFcHPlPeszK9vQVdKSt4nFjTFusV_CKWLMkAd1-Ab98ufI05g1nXtyHSowPm3XpIukrC_7ZvzUVjwrgLG_9GF5fiJNykXPiiiVl_d0ZKbMtrx4aJhzU9yYcB2BQakChY-AzPW2Q-buxVQ&h=mlDptOBsH8ujzkB7GyYz1tvleTOWm-VuDES3x55y4Ew + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-09-01-preview&t=639100071276370275&c=MIIIJjCCBw6gAwIBAgIQXAg_KQfqNmXWsnKmcWm-CjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDMwMzE4NDAwNFoXDTI2MDgzMDAwNDAwNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCq2QsnpddKa8kR8gt-vA9VEusmZorO2S-vbINESl_vgl_PJICxJntGEX47Fd1DDc76k_3GujB58pb9CVQcLZ3-ca4xBv6hEqbf7VGNJdlUmL6V31uaLBLUMfEySd5hdTIpu4K8C1BsXVfomETR-eBTaEKo7U6rad09i8wEBquSFVf5S7J71JehWC4rsigucyf3uMHNqTzZudQy7Dr4g3o1z8GDPMMNrN8NB6XUfnHR60daMf2EzZU2v746EHu58MN3kAveFfbqRrcWd5-tDS7K-u-_1JBNmgg_vgVE_HIXLJ-H3nSUSgujW4YOVJzkyLbU8xAJiSJ_NeLBYjJyJhCNAgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRvNYqFx4fDp-iV_6CV_JvtWzks-DAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzI1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvMjUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAHyESoM-hJA8co5aYFKQj6Yb2naSt-_hW50RjbHBbcf7c32Ujn8L-srkiIyVxkEpzXn0sgWpC8m9Wmwi-IXcD8wG3oPqMrn5ZYvIwrFdrlRwKg23jUltqn23uy8oAzIxCBsBblPSNyWSbEL5Vi52YbLITPHu4uEC7Exy9jJvn6cttL4bste7Sfve85Dd-RbogDrr8HBad8-CN8sHHSyii8mKaK7rq75VE6arRrM28SQgrKJDPrv40C9I6Z5pK40CEUfpYyWTzS6FkLMf7SIjhz0Ilua9xqzb0IO32oVtuv4c-GmmjyJy8FRZzgEYbW_CUh19Gx-9L_Sd5ZzebW5exxE&s=MRjKjFAo1UbLYuYxJl2dSJ_7T3uQdwVlpomXvqi9SsiOE8RB4ayO8gS-YE2Ga_vL6C_XVwAuX4RjHkha1WxOX0bvaJUBBwh5mN6NANK2NJWUcN_Zl_BxITsAoFUm_8WfL9y8GTirF05U8No7p4QDGHENlSwUHs5A_pcoJlFZYFbGVaGLMPXLWpinV6ipQqoBcGYyqcrluBfAHXyBB4-39cuwBlDsRYw53sMiuxU_Tw7flR4sjt688ueY2FxwU0y_6ndzWQapsK8EGT5ny-gOjzykk0FdXUUzp9b0OvpXwrX9ATMKdGMSzYcZbi1u4Gud3svNNRcJKvf0-y2F8xLSSQ&h=77A41BxnvH-J8jQ7ynbTC0oNqpxKiG4MQzADiCf5SNk response: body: string: '' @@ -394,11 +658,11 @@ interactions: content-length: - '0' date: - - Thu, 10 Sep 2026 06:42:52 GMT + - Wed, 25 Mar 2026 03:45:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-09-01-preview&t=639100071285596562&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=f01jT8gXRoO9L-MHy_vLwyFfilcteExMnngKB9NiM_KcnnxKqJa_U7p0noUjw40vphBwoQpFbnfS6wjuZ-v6Xau52Bzqz7-RIHWM5-Sz331QPEqSvDKVvofbBh4dKVdhiGYmxi7lKm_CBj8qsGVmVd4gtvlBvwPL5NTbkdhHZ17dML2i4oFQMSgUQLoTxlxAt8e8MT5V_py7HM71GNpFR7u08fagQZnt1hi9KAQAriXyOwZAJ2DTJpRyAw7r_ys-kq7jZ1nULeIvJaj7o3pCBmCxU6gdG92PsttyqN113MS5XyYDuxeJoO76QkiwI-xsWhwxu-itz_p8r5V3LpXe9g&h=xeFvfHO4izlVczy843Db-186uIHR_uVM2yHJCW9ONRU pragma: - no-cache strict-transport-security: @@ -408,11 +672,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiasoutheast/81089ec9-6e21-49a1-bb23-e3e375bbe350 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/7faf39c4-c6ec-43c6-bf3a-4835fdd8a08f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 38220075980544C9A21CF26D4999C6AD Ref B: SYD281080705052 Ref C: 2026-09-10T06:42:52Z' + - 'Ref A: BC73F4ECD7714E84988BB98335777B49 Ref B: BY1AA1072319052 Ref C: 2026-03-25T03:45:27Z' status: code: 202 message: Accepted @@ -430,9 +694,9 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.13.15 (Windows-11-10.0.26100-SP0) + - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/delete-clitestabac000002-d867181a-ace2-11f1-9cca-3cefa50a58cc?api-version=2026-09-01-preview&t=639246193737299192&c=MIIHlDCCBnygAwIBAgIQaRKdYLzyOJ6yQJxqYpeMlDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDgxNzA1MTMzNFoXDTI3MDIxMjExMTMzNFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDi05BXcIisUJwlW0YP5QVQiCGOeICpjLxpEJYaazC0c1hj8esHv4GgySG4kSsjqOHP2i1TrwGUiiUoL8pl6TLlQ5E9sRwWRR-xod12a4PsUkiZgY-Yb17osBo4M2odjrQ2rla6UEa-3obZwgNJkEfqKBs-Ay614IfLiYKfFTxeZutgpHEniOHC4o2ebnw79QVmCAvxoHceAuzVnPNfJBoZ9LzQTtu3QR5_dJucW_31aAChRpE2SZ6h3TjHsjeoIACXOogfcjCc8oqHcOrlJq23Pk7CKv1Ch_yZlQgBVYSrbFacpGuopNM1eRmfzaSuBwR6Ehkf0DuwdZbzzpH7ITrJAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQEwd6V_3hX2-n_RPYJhtQYPx8omDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzE4L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMTgvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8xOC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAQu9gs1oO8Mt6wZRRPLAvNUpQnMrxu4HzIToaQXr2dkhBl-t22c-P7eY_IMLMDelbQohCr4z1wH7ZyIiz8RJatY6Zm_tcNrnCa-fbL8KndRAFXQnAA9RTx5d7rx34c25Ovbcs94ajxtiUWdFwEGQvNHJKlsSE74TVA-_sj1PP9LvVgZhBlFnZQ_4lELV7OEuySUJmGZdD0KtdkwaKMqvFQY0pLTMXOo0kmZ37lB1AeMuXLn3_WI57ZluZMlWbJsJOqG9dND_ZukAacfaP4kpeCLSmtiippw6jGRXXovY1lBvYGcJFSq1AhnaFwS_BMrCpe0udZQqnHDS8JKj2Zk9M8&s=bMLGaoPzv1f_8TxQrehZ8ZCRNuVzg0LuGPb40Mx1VuuSPEPzOjymPByD-QUCa-9TWoXQOCA0DQqPP8ZYZs6m-yV9dD39wokIWvPqheoFzuzPc_aC8ovjw6iaTAy5kQCbT0KUUdupvqEmCr-rX81dYSRJC1GddyV65Gu0Tdn7xdGX8DTYcvWySiwSFwTaV8LmIenw2TSDhseanTHWfGz0VTEsvc9tK44tWbW2pwTqdKBTfammOq_cVhBbHDNsLVZzfTuNg2MWXi0x4Y0cBvLzJeRKizvONOfog02qjiWdtEslfGlS4o21RHClw_T_H7sGSeekPEFMNZYfzch1zu6bWw&h=W_-TiVtfzVE7TMD9fWHlY5uw0CUiq78iWiAcJrWlmdk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/southeastasia/operationResults/registries-0f88fea9-27fd-11f1-a048-70a8a51b6037?api-version=2026-09-01-preview&t=639100071285596562&c=MIIHlDCCBnygAwIBAgIQbRZBCnyTTrdKyx3sn6-cIjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIyNDE4NDcwN1oXDTI2MDgyMDAwNDcwN1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLYIfsKK3BxfjRY95DQ7nTiHuQIybDAR8CX9yInjq_0E3Mb9YwMAQGJklR1lZJqg9M7got1ThcwNEpPovodQrXAzXRPqJ0JyNpNf1UNLgRs-3_mYbXxvSrBdgdZL4WUq9XCQ9WaH2aM3MAuLy8FL835sRe_Zx46G3TsI9Grsv5U-8gTr440L6nsopLTJJzQCpxou4KEuTMiG2GpVzxExJwvUDuutVCxXnsUwksDnhFUbqcJ7mVhhK5If25oHTNYUQwYylqvq_5eVdfEXEzpbP3XfDdKxljTnSMHaniaYcYW3OmhIMmdnHNFiPA9LQ2DtYs_7T68xnPVpbVO0EZ2Em5AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQixmODlrY3K7hS01rA8V_TZUhMsjAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY1L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjUvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NS9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQBKY8uIen-4v_aGTptgf_04u1F6978whzIp4ZiTbOSXPwNnweOy6hCQUcuaqDgVZEiozCZ3DTEQooEcQdtH6WhiCDn5FLdHIVfLyo35uSdRGa9igGbbQ22s_ZI2_Sp17bV5_a-akDuAb6xVSZB_RbHXoicbUykmyHQ2aRb7wLI-YJ4X_aS00yjgBXHLbbbD1PGhTMYVk-5Qy8AYGA2_CTJ0ZS5toZF1EKxkz6ka6D_ROn4Sg7PthZX7Y3YpuVwnCelnvJvOgla_MQjpNDBcgmnVyU-ChBBd3TykrRxVWNXjEm54XPippvvwuKEdc4BCa38ZFVNgvDuK-tY_JpycugPZ&s=f01jT8gXRoO9L-MHy_vLwyFfilcteExMnngKB9NiM_KcnnxKqJa_U7p0noUjw40vphBwoQpFbnfS6wjuZ-v6Xau52Bzqz7-RIHWM5-Sz331QPEqSvDKVvofbBh4dKVdhiGYmxi7lKm_CBj8qsGVmVd4gtvlBvwPL5NTbkdhHZ17dML2i4oFQMSgUQLoTxlxAt8e8MT5V_py7HM71GNpFR7u08fagQZnt1hi9KAQAriXyOwZAJ2DTJpRyAw7r_ys-kq7jZ1nULeIvJaj7o3pCBmCxU6gdG92PsttyqN113MS5XyYDuxeJoO76QkiwI-xsWhwxu-itz_p8r5V3LpXe9g&h=xeFvfHO4izlVczy843Db-186uIHR_uVM2yHJCW9ONRU response: body: string: '' @@ -442,7 +706,7 @@ interactions: content-length: - '0' date: - - Thu, 10 Sep 2026 06:43:04 GMT + - Wed, 25 Mar 2026 03:45:39 GMT expires: - '-1' pragma: @@ -454,11 +718,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=4b5b0cef-cf82-4cf5-9ab1-ff84c9f11f35/australiaeast/af1d2677-f13f-440b-93e5-5c5f25946215 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a4d1fa29-501c-4e7d-a370-3dd56fc393c6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 25BF3405F9E6488E8616BC304A4420A8 Ref B: SYD281080706023 Ref C: 2026-09-10T06:43:04Z' + - 'Ref A: DC0AF48196AE47969F36CB10AFA226F8 Ref B: SJC211051205037 Ref C: 2026-03-25T03:45:38Z' status: code: 200 message: OK From 52e5e177bc7a9f6f3e3318433f9e44e52d3d6018 Mon Sep 17 00:00:00 2001 From: Nihal Varadachari Date: Tue, 15 Sep 2026 14:14:02 +1000 Subject: [PATCH 19/19] remove secrets --- .../latest/recordings/test_acr_connectedregistry.yaml | 2 +- ..._create_with_domain_name_label_scope_tenant_reuse.yaml | 2 +- .../recordings/test_acr_create_with_managed_registry.yaml | 2 +- .../test_acr_create_with_metadata_search_disabled.yaml | 2 +- .../test_acr_create_with_metadata_search_enabled.yaml | 2 +- ...create_with_writable_cache_repos_default_disabled.yaml | 2 +- ...test_acr_create_with_writable_cache_repos_enabled.yaml | 2 +- .../latest/recordings/test_repository_token_create.yaml | 8 ++++---- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml index 3d2323b7c43..4657f8d7976 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml @@ -5539,7 +5539,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"syncToken","passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2","value":"EVQpu2PYvw3jmCjwYEdlGlq1OC4o2bGqSfNk0CX7yTE7nrMcXNXFJQQJ99CIACYeBjFEqg7NAAABAZCRzxDi"}]}' + string: '{"username":"syncToken","passwords":[{"creationTime":"2026-09-10T06:51:28.2750791+00:00","name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml index 08cd5fdb534..577d1c753b8 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_domain_name_label_scope_tenant_reuse.yaml @@ -1221,7 +1221,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"C9PlRnNKmB0fWUJNSAxkAJH6yTnhAFElsoXMwV4OXSySOHhfqn1lJQQJ99CIAC4f1cMEqg7NAAACAZCRkr0B"},{"name":"password2","value":"czT1O5Wvz5yrQ7LRowy2MkeMOlVsHBUzZeAkVodhxdVeapnLuS4KJQQJ99CIAC4f1cMEqg7NAAACAZCRQLLg"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"************************************************************************************"},{"name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2026-09-01-preview diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml index cad8a41c853..c60024b5f86 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_managed_registry.yaml @@ -1221,7 +1221,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"CD66v98u19EuYQ2CbEXz8maelGlsHQ80CoHg5djsbZnGOEUzueyaJQQJ99CIAC4f1cMEqg7NAAACAZCRRI4x"},{"name":"password2","value":"5HY47J72BaDA7LxeKEHgNd64m1tSBxlz7QIuDN7omyULz5hCqvVrJQQJ99CIAC4f1cMEqg7NAAACAZCRbHqz"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"************************************************************************************"},{"name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2026-09-01-preview diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml index 6222be59524..4cf5ed0c4a5 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_disabled.yaml @@ -1325,7 +1325,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"RDZH8GD7LRboEXwWBEWuUs4EVasfPoygdfLfXdUtY5mMSgS1ldOBJQQJ99CIAC4f1cMEqg7NAAACAZCR62EX"},{"name":"password2","value":"2nb4uLVX6IWEJ7ap2tLsMftopqLGqLYx1PJQtJUjOSLsxvEyeyzOJQQJ99CIAC4f1cMEqg7NAAACAZCRMQRF"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"************************************************************************************"},{"name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2026-09-01-preview diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml index 95cba9d438e..8bb20e40662 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_metadata_search_enabled.yaml @@ -1429,7 +1429,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"EVd7SBDVMGVQt1BdqyAecHyItzDz04hrV0dFfYAKdzKMvltlA7ltJQQJ99CIAC4f1cMEqg7NAAACAZCRgO1Y"},{"name":"password2","value":"5ZLVbNRy7finmDDAmn5MWRSzNGyM4ZZdIHVhp6aeWezGu2bpqLLpJQQJ99CIAC4f1cMEqg7NAAACAZCRK9wj"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"************************************************************************************"},{"name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2026-09-01-preview diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml index 5e8a6bb78b0..a35c2981674 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_default_disabled.yaml @@ -1637,7 +1637,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"FZoj8fAQm3WYcFq7cwUGf0skb3GJLaOJ5lbSBjh21gQqkplJOMqiJQQJ99CIAC4f1cMEqg7NAAACAZCR23Ee"},{"name":"password2","value":"7Wm3y0LckBOlPFoJ9N3swv8OUt5DR7FfiF9fZlK2ApZ38KpizoBOJQQJ99CIAC4f1cMEqg7NAAACAZCRcO4W"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"************************************************************************************"},{"name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2026-09-01-preview diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml index 2bfb2144d4c..cfa71a3b8be 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_with_writable_cache_repos_enabled.yaml @@ -1325,7 +1325,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/listCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"BXv38jDuyYPQ0TEA601J4m1X57CfEFm5TBDWL5lhbLYpuJi5Qe4yJQQJ99CIAC4f1cMEqg7NAAACAZCRitau"},{"name":"password2","value":"5yAuqbs3pD99X5Q6dHPr33kry25hSmtx28Jp5z7DIn6Z8Uv334jAJQQJ99CIAC4f1cMEqg7NAAACAZCRGosN"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"************************************************************************************"},{"name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2026-09-01-preview diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml index 4ab7ac45f4d..00587713af1 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_repository_token_create.yaml @@ -506,7 +506,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"acr-token","passwords":[{"creationTime":"2026-09-10T06:59:51.9623297+00:00","name":"password1","value":"84IL9ImGiDj1JPjNgaBlD3y2QEwKlQDoOqzxzBCeLCI2PQAZbqE3JQQJ99CIAC4f1cMEqg7NAAABAZCR3PKo"},{"creationTime":"2026-09-10T06:59:51.9623882+00:00","name":"password2","value":"890yrYISDWg5sQiDbUJBjczfBBTJJgwUw4logUBgIaeCe00FyE3xJQQJ99CIAC4f1cMEqg7NAAABAZCRy1Re"}]}' + string: '{"username":"acr-token","passwords":[{"creationTime":"2026-09-10T06:59:51.9623297+00:00","name":"password1","value":"************************************************************************************"},{"creationTime":"2026-09-10T06:59:51.9623882+00:00","name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, @@ -1233,7 +1233,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"token-2","passwords":[{"creationTime":"2026-09-10T07:00:12.5211327+00:00","name":"password1","value":"CALrr5gPbCaNfybCzMcfGe0HZ8Foz5UjUDYGIwB5cWc03G4diIbLJQQJ99CIAC4f1cMEqg7NAAABAZCRzCzi"},{"creationTime":"2026-09-10T07:00:12.5212+00:00","name":"password2","value":"EhE7S2FKizfrqts5GKcYjIPMTxqBpBEnaJp4Oceoy5p3KkEBfa2zJQQJ99CIAC4f1cMEqg7NAAABAZCRstuD"}]}' + string: '{"username":"token-2","passwords":[{"creationTime":"2026-09-10T07:00:12.5211327+00:00","name":"password1","value":"************************************************************************************"},{"creationTime":"2026-09-10T07:00:12.5212+00:00","name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, @@ -1675,7 +1675,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"token-3","passwords":[{"creationTime":"2026-09-10T07:00:18.3793277+00:00","expiry":"2026-09-11T07:00:19.17354+00:00","name":"password1","value":"AjvIcTbJqEUhUlmgJK8DKf7YfHzwaTjiLkmkLvusTjGbFRTakS0qJQQJ99CIAC4f1cMEqg7NAAABAZCRqzfd"},{"creationTime":"2026-09-10T07:00:18.3794381+00:00","expiry":"2026-09-11T07:00:19.17354+00:00","name":"password2","value":"1s9XcFlFc561hwPs3nwm8p9oYWsdnox85M4AZ3F1wSkPdAhUgimPJQQJ99CIAC4f1cMEqg7NAAABAZCR7Lcl"}]}' + string: '{"username":"token-3","passwords":[{"creationTime":"2026-09-10T07:00:18.3793277+00:00","expiry":"2026-09-11T07:00:19.17354+00:00","name":"password1","value":"************************************************************************************"},{"creationTime":"2026-09-10T07:00:18.3794381+00:00","expiry":"2026-09-11T07:00:19.17354+00:00","name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, @@ -2165,7 +2165,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2026-09-01-preview response: body: - string: '{"username":"token-4","passwords":[{"creationTime":"2026-09-10T07:00:24.6387796+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password1","value":"2PPbdKe9WpsKiN7fDgaJtGZhtVkUvDkVyVSySOFteqRPxO4PmAmnJQQJ99CIAC4f1cMEqg7NAAABAZCRXQEl"},{"creationTime":"2026-09-10T07:00:24.6388538+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password2","value":"3srCenAQH9xEgkJ94xrKoNUU8JjYEnrzkMyPLib6vxBMaYfyHc4ZJQQJ99CIAC4f1cMEqg7NAAABAZCRAxy4"}]}' + string: '{"username":"token-4","passwords":[{"creationTime":"2026-09-10T07:00:24.6387796+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password1","value":"************************************************************************************"},{"creationTime":"2026-09-10T07:00:24.6388538+00:00","expiry":"2100-12-31T12:59:59+00:00","name":"password2","value":"************************************************************************************"}]}' headers: api-supported-versions: - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview,